/* =====================================================================
   Veloni Site — Main Stylesheet
   Stack: Bootstrap 5.3 + Custom CSS
   Font: Inter
   ===================================================================== */

/* ─── 1. CSS Design Tokens ─────────────────────────────────────────── */
:root {
    --v-primary:       #2563EB;
    --v-primary-hover: #1D4ED8;
    --v-accent:        #3B82F6;
    --v-dark:          #1B2032;
    --v-darker:        #0D1117;
    --v-light-bg:      #F8FAFF;
    --v-white:         #FFFFFF;
    --v-text-primary:  #0F172A;
    --v-text-muted:    #64748B;
    --v-border:        #E2E8F0;
    --v-success:       #22C55E;
    --v-danger:        #EF4444;
    --v-glow-blue:     rgba(37, 99, 235, 0.40);
    --v-glow-purple:   rgba(139, 92, 246, 0.28);

    --v-radius-sm:   8px;
    --v-radius-md:   14px;
    --v-radius-lg:   20px;
    --v-radius-xl:   28px;

    --v-shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --v-shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --v-shadow-lg:  0 12px 40px rgba(0,0,0,.14);

    --v-section-py: 100px;
    --v-section-py-sm: 60px;
}

/* ─── 2. Base & Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--v-text-primary);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; transition: color .2s; }

/* ─── 3. Typography ───────────────────────────────────────────────── */
.v-display {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.v-h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.8px;
}

.v-h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.v-section-subtitle {
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.7;
    color: var(--v-text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Koyu katmanlarda yüksek kontrast metin */
.v-how-section .v-h2,
.v-why-section .v-h2,
.v-faq-section .v-h2 {
    color: #fff;
}

.v-how-section .v-section-subtitle,
.v-why-section .v-section-subtitle,
.v-faq-section .v-section-subtitle {
    color: rgba(255,255,255,.68);
}

.v-lead {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    color: var(--v-text-muted);
    line-height: 1.7;
}

.v-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ─── 4. Section Layout Utilities ─────────────────────────────────── */
.v-section {
    padding-top: var(--v-section-py);
    padding-bottom: var(--v-section-py);
}

.v-section-sm {
    padding-top: var(--v-section-py-sm);
    padding-bottom: var(--v-section-py-sm);
}

.v-section-dark {
    background: var(--v-darker);
    color: #fff;
}

.v-section-navy {
    background: var(--v-dark);
    color: #fff;
}

.v-section-light {
    background: var(--v-light-bg);
}

.v-container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* ─── 5. Section Badge (pill) ─────────────────────────────────────── */
.v-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--v-border);
    background: #fff;
    color: var(--v-text-primary);
    margin-bottom: 20px;
}

.v-badge-dark {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.85);
}

/* ─── 6. Buttons ──────────────────────────────────────────────────── */
.btn-veloni-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--v-primary);
    color: #fff;
    border: 2px solid var(--v-primary);
    border-radius: var(--v-radius-sm);
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    transition: background .2s, transform .15s, box-shadow .2s;
    cursor: pointer;
}

.btn-veloni-primary:hover {
    background: var(--v-primary-hover);
    border-color: var(--v-primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(37,99,235,.35);
}

.btn-veloni-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: var(--v-radius-sm);
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    transition: background .2s, border-color .2s, transform .15s;
    cursor: pointer;
}

.btn-veloni-outline:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.6);
    color: #fff;
    transform: translateY(-1px);
}

.btn-veloni-outline-dark {
    color: var(--v-text-primary);
    border-color: var(--v-border);
}

.btn-veloni-outline-dark:hover {
    background: var(--v-light-bg);
    color: var(--v-primary);
    border-color: var(--v-primary);
}

/* ─── 7. Navbar ───────────────────────────────────────────────────── */
#site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 18px 0;
    transition: background .3s, padding .3s, box-shadow .3s;
    background: transparent;
}

#site-navbar.scrolled {
    background: rgba(13, 17, 23, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.v-nav-logo img { height: 34px; width: auto; }

.v-nav-links { display: flex; align-items: center; gap: 4px; }

.v-nav-links a {
    color: rgba(255,255,255,.82);
    font-size: 14.5px;
    font-weight: 500;
    padding: 6px 13px;
    border-radius: 7px;
    transition: color .2s, background .2s;
}

.v-nav-links a:hover,
.v-nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,.1);
}

/* ── Nav Dropdown ─────────────────────────────────────────────── */
.v-nav-dropdown {
    position: relative;
}

.v-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.82);
    font-size: 14.5px;
    font-weight: 500;
    padding: 6px 13px;
    border-radius: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color .2s, background .2s;
    outline: none;
    white-space: nowrap;
}

.v-nav-dropdown-chevron {
    font-size: 10px;
    transition: transform .25s ease;
    opacity: .7;
}

.v-nav-dropdown:hover .v-nav-dropdown-toggle,
.v-nav-dropdown:focus-within .v-nav-dropdown-toggle {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.v-nav-dropdown:hover .v-nav-dropdown-chevron,
.v-nav-dropdown:focus-within .v-nav-dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.v-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 1035;
    pointer-events: none;
    padding-top: 12px;
}

.v-nav-dropdown:hover .v-nav-dropdown-menu,
.v-nav-dropdown:focus-within .v-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Caret/arrow */
.v-nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(18, 24, 38, .97);
    border-left: 1px solid rgba(255,255,255,.1);
    border-top: 1px solid rgba(255,255,255,.1);
    border-radius: 2px;
}

.v-nav-dropdown-inner {
    background: rgba(18, 24, 38, .97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 8px;
    min-width: 230px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 .5px rgba(255,255,255,.05) inset;
}

.v-nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    border-radius: 10px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.v-nav-dropdown-item:hover,
.v-nav-dropdown-item.active {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.v-nav-dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.v-nav-dropdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.v-nav-dropdown-soon {
    font-size: 10px;
    font-weight: 700;
    color: #FBBF24;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    padding: 1px 7px;
    border-radius: 100px;
    letter-spacing: .04em;
}

/* ── Mobile Corporate Accordion ──────────────────────────────── */
.v-mob-corporate {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 6px;
    margin-top: 2px;
}

.v-mob-corporate-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: background .15s, color .15s;
}

.v-mob-corporate-toggle:not(.collapsed) {
    color: #fff;
    background: rgba(255,255,255,.07);
}

.v-mob-corporate-toggle .bi-chevron-down {
    font-size: 12px;
    transition: transform .25s ease;
    opacity: .6;
}

.v-mob-corporate-toggle:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

.v-mob-corporate-items {
    padding: 4px 0 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v-mob-corporate-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    color: rgba(255,255,255,.7);
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.v-mob-corporate-item:hover {
    background: rgba(255,255,255,.07);
    color: #fff;
}

.v-mob-corporate-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.v-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.v-btn-login {
    color: rgba(255,255,255,.82);
    font-size: 14.5px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.2);
    transition: color .2s, border-color .2s, background .2s;
    background: transparent;
    cursor: pointer;
    display: inline-block;
}

.v-btn-login:hover {
    color: #fff;
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.07);
}

.v-btn-cta {
    background: var(--v-primary);
    color: #fff;
    font-size: 14.5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 7px;
    border: 1px solid var(--v-primary);
    cursor: pointer;
    display: inline-block;
    transition: background .2s, transform .15s;
}

.v-btn-cta:hover {
    background: var(--v-primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* Dil seçici */
.v-lang-btn {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s, border-color .2s;
}

.v-lang-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,.4);
}

/* Hamburger */
.v-hamburger {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 7px;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

/* Offcanvas mobile menu */
#mobileMenu .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,.1); }
#mobileMenu .offcanvas-body a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
#mobileMenu .offcanvas-body a:hover { color: #fff; }
#mobileMenu { background: var(--v-darker); }
#mobileMenu .offcanvas-title { color: #fff; }

/* ─── 8. Hero Section ─────────────────────────────────────────────── */
.v-hero {
    position: relative;
    background: var(--v-darker);
    overflow: hidden;
    /* navbar yüksekliğini telafi et */
    padding-top: 90px;
}

/* Arkaplan doku */
.v-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/section/bg-overlay.jpg');
    background-size: cover;
    background-position: center center;
    pointer-events: none;
    z-index: 0;
}

/* Radial glow — CTA butonu altında toplanıyor */
.v-hero-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 80%;
    background:
        radial-gradient(ellipse 40% 60% at 28% 100%, rgba(139,92,246,.38) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 72% 100%, rgba(37,99,235,.30) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* İç sarmalayıcı — navbar gap + içerik merkezi */
.v-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Metin bloğu ── */
.v-hero-text {
    text-align: center;
    padding: 56px 0 52px;
}

.v-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    margin-bottom: 22px;
    letter-spacing: .01em;
}
.v-hero-pill-star { font-size: 13px; }

.v-hero-title {
    font-size: clamp(36px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.5px;
    color: #fff;
    margin: 0 0 24px;
}

.v-hero-title span.highlight {
    color: var(--v-primary);
}

.v-hero-sub {
    font-size: clamp(15px, 1.7vw, 17.5px);
    color: rgba(255,255,255,.52);
    max-width: 520px;
    margin: 0 auto 38px;
    line-height: 1.75;
}

/* ── CTA butonları ── */
.v-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Primary: koyu cam efekti, BrightHub tarzı */
.v-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50px;
    padding: 13px 30px;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: background .2s, border-color .2s, box-shadow .2s, transform .15s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 4px 24px rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.v-hero-btn-primary:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.4);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 32px rgba(0,0,0,.4);
}

/* Ghost: sadece ikon + yazı */
.v-hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: 15.5px;
    font-weight: 600;
    padding: 13px 10px;
    border: none;
    border-radius: 50px;
    transition: color .2s;
    cursor: pointer;
}
.v-hero-btn-ghost:hover { color: #fff; }
.v-hero-btn-ghost i { font-size: 18px; }

/* ── App ekran görüntüsü ── */
.v-hero-screen {
    position: relative;
    margin-top: 0;
    /* Altta taşarak footer'la birleşiyor */
    padding-bottom: 0;
}

/* Glow halkası — frame'in hemen arkasında */
.v-hero-screen::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 200px;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(37,99,235,.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.v-screen-frame {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 14px 14px 0 0;
    border: 1px solid rgba(255,255,255,.1);
    border-bottom: none;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.05),
        0 -8px 60px rgba(37,99,235,.15),
        0 30px 80px rgba(0,0,0,.5);
    overflow: hidden;
    background: #0d1117;
}

.v-screen-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* Alt iç gölge — fotoğrafın hero ile kaynaşması */
.v-screen-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 14, 23, 0.55) 55%,
        rgba(10, 14, 23, 0.92) 85%,
        var(--v-darker) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* ─── 9. Trust Bar ────────────────────────────────────────────────── */
.v-trust-bar {
    background: var(--v-darker);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 32px 0;
    overflow: hidden;
}

.v-trust-bar-text {
    color: rgba(255,255,255,.4);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
    white-space: nowrap;
    text-align: center;
    margin-bottom: 20px;
}

/* Marquee sarmalayıcı */
.v-trust-marquee-wrap {
    position: relative;
    overflow: hidden;
}

/* Kenarları yumuşatan beyaz gradyanlar */
.v-trust-marquee-wrap::before,
.v-trust-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.v-trust-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--v-darker) 0%, transparent 100%);
}
.v-trust-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--v-darker) 0%, transparent 100%);
}

.v-trust-marquee {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}

/* Fare üzerindeyken dur */
.v-trust-marquee:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.v-trust-logo-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.32);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.2px;
    white-space: nowrap;
    padding: 0 48px;
    transition: color .2s;
}

.v-trust-logo-item:hover { color: rgba(255,255,255,.65); }

.v-trust-logo-item i { font-size: 22px; color: rgba(255,255,255,.22); transition: color .2s; }
.v-trust-logo-item:hover i { color: rgba(255,255,255,.5); }

/* ─── 10. Feature Cards ───────────────────────────────────────────── */
.v-features-section { background: var(--v-light-bg); }

.v-features-sticky {
    position: sticky;
    top: 120px;
}

.v-feature-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: var(--v-radius-md);
    background: #fff;
    border: 1px solid var(--v-border);
    transition: box-shadow .25s, border-color .25s, transform .2s;
    margin-bottom: 16px;
}

.v-feature-item:hover {
    box-shadow: var(--v-shadow-md);
    border-color: rgba(37,99,235,.25);
    transform: translateY(-2px);
}

.v-feature-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--v-primary);
    line-height: 1;
    min-width: 38px;
    opacity: .85;
}

.v-feature-visual {
    position: sticky;
    top: 130px;
}

.v-feature-visual-box {
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    border: 1px solid var(--v-border);
    box-shadow: var(--v-shadow-lg);
    background: var(--v-darker);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-feature-visual-box .v-feature-mockup-icon {
    font-size: 80px;
    color: rgba(255,255,255,.12);
}

/* ─── 11. How It Works ────────────────────────────────────────────── */
.v-how-section {
    background: var(--v-darker);
    position: relative;
    overflow: hidden;
}

/* Arkaplanda ince nokta ızgarası */
.v-how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.v-how-section .v-container { position: relative; z-index: 1; }

/* ─ Adım listesi ─ */
.v-step-list { position: relative; }

.v-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 18px 0;
    position: relative;
    transition: opacity .25s;
}

.v-step-item.inactive { opacity: .5; }

/* Bağlayıcı dikey çizgi */
.v-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 60px;
    bottom: 0;
    width: 1.5px;
    background: linear-gradient(
        to bottom,
        rgba(37,99,235,.55) 0%,
        rgba(37,99,235,.1) 100%
    );
    z-index: 0;
}

/* Aktif adım numarası */
.v-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(37,99,235,.18), 0 4px 18px rgba(37,99,235,.35);
    position: relative;
    z-index: 1;
    letter-spacing: -.5px;
}

.v-step-num.inactive {
    background: rgba(255,255,255,.1);
    box-shadow: 0 0 0 4px rgba(255,255,255,.05);
    color: rgba(255,255,255,.4);
}

.v-step-body { padding-top: 8px; }

.v-step-body h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.25px;
}

.v-step-item.inactive .v-step-body h4 { color: rgba(255,255,255,.45); }

.v-step-body p {
    color: rgba(255,255,255,.52);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* ─ Sağ: Mockup ─ */
.v-how-mockup-wrap {
    position: relative;
}

/* Arkadaki renkli glow */
.v-how-mockup-wrap::before {
    content: '';
    position: absolute;
    inset: -50px;
    background:
        radial-gradient(ellipse 70% 55% at 45% 45%, rgba(124,58,237,.22) 0%, transparent 60%),
        radial-gradient(ellipse 55% 50% at 65% 60%, rgba(37,99,235,.18) 0%, transparent 58%);
    pointer-events: none;
    z-index: 0;
}

.v-how-mockup {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.06),
        0 32px 80px rgba(0,0,0,.6),
        0 0 60px rgba(124,58,237,.15);
    background: #0d1117;
}

.v-how-mockup img {
    display: block;
    width: 100%;
    height: auto;
}

/* ─── 12. Why Cards ───────────────────────────────────────────────── */
.v-why-section { background: var(--v-darker); }

.v-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--v-radius-lg);
    overflow: hidden;
}

.v-why-card {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .25s;
}

.v-why-card:nth-child(3n) { border-right: 0; }
.v-why-card:nth-last-child(-n+3) { border-bottom: 0; }

.v-why-card:hover {
    background: rgba(37,99,235,.08);
}

.v-why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--v-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.v-why-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.v-why-card p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ─── 13. Testimonials ────────────────────────────────────────────── */
.v-testimonials-section { background: #fff; }

.v-testimonial-card {
    display: flex;
    gap: 0;
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    border: 1px solid var(--v-border);
    box-shadow: var(--v-shadow-sm);
}

.v-testimonial-photo {
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.v-testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-testimonial-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-testimonial-quote {
    font-size: 36px;
    color: var(--v-primary);
    line-height: 1;
    margin-bottom: 14px;
    font-family: Georgia, serif;
}

.v-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--v-text-primary);
    margin-bottom: 20px;
}

.v-testimonial-author strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--v-text-primary);
}

.v-testimonial-author span {
    font-size: 13px;
    color: var(--v-text-muted);
}

/* ─── 14. Pricing Cards ───────────────────────────────────────────── */
.v-pricing-section { background: #fff; }

/* Home pricing panel (BrightHub referans) */
.v-pricing-home {
    background: #EEF2F6;
    position: relative;
    overflow: hidden;
}

.v-pricing-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            to right,
            rgba(15,23,42,.06) 0,
            rgba(15,23,42,.06) 1px,
            transparent 1px,
            transparent 220px
        );
    opacity: .45;
    pointer-events: none;
}

.v-pricing-home .v-section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.v-pricing-billing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.v-billing-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--v-text-muted);
    transition: color .2s;
}

.v-billing-label.active {
    color: var(--v-text-primary);
}

.v-billing-advantage {
    font-size: 11px;
    font-weight: 700;
    color: #0f5132;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    padding: 4px 10px;
    opacity: .35;
    transform: translateY(0);
    transition: opacity .2s, transform .2s;
}

#pricing.is-yearly .v-billing-advantage {
    opacity: 1;
    transform: translateY(-1px);
}

.v-billing-switch {
    position: relative;
    display: inline-flex;
    width: 48px;
    height: 28px;
}

.v-billing-switch input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.v-billing-slider {
    width: 100%;
    height: 100%;
    background: #E2E8F0;
    border-radius: 999px;
    position: relative;
    transition: background .2s;
}

.v-billing-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(15,23,42,.2);
    transition: transform .2s;
}

.v-billing-switch input:checked + .v-billing-slider {
    background: var(--v-primary);
}

.v-billing-switch input:checked + .v-billing-slider::before {
    transform: translateX(20px);
}

.v-pricing-panel {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(17,24,39,.08);
    padding: 14px;
    overflow-x: auto;
}

.v-pricing-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.v-pricing-stack {
    background: #f8fbff;
    border: 1px solid rgba(15,23,42,.1);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

.v-pricing-stack.is-popular {
    background: linear-gradient(180deg, #edf8ff 0%, #f4fbff 100%);
}

.v-pricing-head-card {
    border: 1px solid rgba(15,23,42,.14);
    border-radius: 18px;
    padding: 24px 22px 20px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(15,23,42,.06);
}

.v-pricing-stack.is-popular .v-pricing-head-card {
    background: linear-gradient(180deg, #f7fcff 0%, #eaf7ff 100%);
}

.v-pricing-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.v-pricing-head-row h3 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -1px;
    font-weight: 800;
    color: #0f172a;
}

.v-pricing-popular-badge {
    font-size: 11px;
    font-weight: 700;
    color: #0f766e;
    background: #d1fae5;
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}

.v-pricing-price-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 6px;
}

.v-pricing-amount {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -2px;
}

.v-pricing-per {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
}

.v-pricing-plan-desc {
    margin: 0 0 18px;
    color: #475569;
    font-size: 16px;
}

.v-pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(15,23,42,.2);
    border-radius: 999px;
    padding: 12px 16px;
    color: #0f172a;
    font-weight: 700;
    background: #fff;
    transition: border-color .2s, color .2s, transform .2s;
}

.v-pricing-cta:hover {
    border-color: #0f172a;
    color: #0f172a;
    transform: translateY(-1px);
}

.v-pricing-cta.is-primary {
    background: linear-gradient(180deg, #202532 0%, #0f1118 100%);
    color: #fff;
    border-color: #111827;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 18px rgba(15,23,42,.25);
}

.v-pricing-cta.is-primary:hover {
    color: #fff;
    border-color: #0b0f17;
}

.v-pricing-feature-card {
    padding: 18px 8px 8px;
}

.v-pricing-feature-card h4 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -.5px;
    color: #0f172a;
}

.v-pricing-feature-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.v-pricing-feature-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #475569;
    line-height: 1.45;
}

.v-pricing-feature-card li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.v-pricing-compare {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.v-pricing-compare th,
.v-pricing-compare td {
    text-align: center;
    vertical-align: middle;
}

.v-pricing-compare thead th {
    padding: 0 8px 16px;
    border: 0;
}

.v-pr-col-feature {
    width: 38%;
}

.v-pr-plan-card {
    border: 1px solid var(--v-border);
    border-radius: 16px;
    padding: 26px 20px 22px;
    background: #fff;
}

.v-pr-plan-card.is-featured {
    background: var(--v-primary);
    border-color: var(--v-primary);
    box-shadow: 0 14px 28px rgba(37,99,235,.35);
    transform: translateY(-8px);
}

.v-pr-plan-name {
    color: var(--v-text-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.v-pr-plan-price {
    color: var(--v-text-primary);
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.8px;
    margin-bottom: 6px;
}

.v-pr-plan-period {
    color: var(--v-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.v-pr-plan-subperiod {
    color: var(--v-text-muted);
    font-size: 12.5px;
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 16px;
}

.v-pr-plan-card.is-featured .v-pr-plan-name,
.v-pr-plan-card.is-featured .v-pr-plan-price,
.v-pr-plan-card.is-featured .v-pr-plan-period {
    color: #fff;
}

.v-pr-plan-btn {
    display: block;
    border: 1px solid var(--v-border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--v-text-primary);
    background: #fff;
    transition: border-color .2s, color .2s;
}

.v-pr-plan-btn:hover {
    border-color: var(--v-primary);
    color: var(--v-primary);
}

.v-pr-plan-btn.is-featured-btn {
    border-color: #fff;
    background: #fff;
    color: var(--v-primary);
}

.v-pricing-compare tbody td {
    border: 0;
    padding: 14px 18px;
    color: #1F2937;
    font-size: 17px;
    font-weight: 500;
}

.v-pricing-compare tbody td:first-child {
    text-align: left;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.6px;
    color: #0F172A;
}

.v-pricing-compare tbody tr td {
    background: #F2F4F8;
}

.v-pricing-compare tbody tr td:first-child {
    border-radius: 12px 0 0 12px;
}

.v-pricing-compare tbody tr td:last-child {
    border-radius: 0 12px 12px 0;
}

.v-pr-icon-check {
    color: #2F80ED;
    font-size: 22px;
    line-height: 1;
}

.v-pr-icon-dash {
    color: #94A3B8;
    font-size: 20px;
    line-height: 1;
}

.v-pricing-wrap {
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.v-pricing-col {
    padding: 40px 36px;
    border-right: 1px solid var(--v-border);
    position: relative;
}

.v-pricing-col:last-child { border-right: 0; }

.v-pricing-col.featured {
    background: var(--v-primary);
    border-color: var(--v-primary);
    color: #fff;
}

.v-plan-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--v-text-muted);
    margin-bottom: 12px;
}

.v-pricing-col.featured .v-plan-name { color: rgba(255,255,255,.75); }

.v-plan-price {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--v-text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.v-pricing-col.featured .v-plan-price { color: #fff; }

.v-plan-period {
    font-size: 13px;
    color: var(--v-text-muted);
    margin-bottom: 24px;
}

.v-pricing-col.featured .v-plan-period { color: rgba(255,255,255,.65); }

.v-plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    border: 1.5px solid var(--v-border);
    color: var(--v-text-primary);
    margin-bottom: 28px;
    transition: background .2s, border-color .2s, color .2s;
    background: transparent;
    cursor: pointer;
}

.v-plan-btn:hover {
    background: var(--v-light-bg);
    border-color: var(--v-primary);
    color: var(--v-primary);
}

.v-pricing-col.featured .v-plan-btn {
    background: #fff;
    color: var(--v-primary);
    border-color: #fff;
}

.v-pricing-col.featured .v-plan-btn:hover {
    background: rgba(255,255,255,.9);
}

.v-pricing-divider { border-top: 1px solid var(--v-border); margin-bottom: 24px; }
.v-pricing-col.featured .v-pricing-divider { border-color: rgba(255,255,255,.2); }

.v-pricing-features { list-style: none; padding: 0; margin: 0; }

.v-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 6px 0;
    color: var(--v-text-primary);
}

.v-pricing-col.featured .v-pricing-features li { color: rgba(255,255,255,.9); }

.v-pricing-features li .check { color: var(--v-success); font-size: 15px; }
.v-pricing-features li .dash  { color: var(--v-text-muted); font-size: 15px; }
.v-pricing-col.featured .v-pricing-features li .check { color: #fff; }

.v-pricing-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* Pricing comparison table */
.v-pricing-table-wrap {
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-lg);
    overflow: hidden;
}

.v-pricing-table th {
    background: var(--v-light-bg);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--v-text-muted);
    padding: 14px 18px;
    border-bottom: 1px solid var(--v-border);
    text-align: center;
}

.v-pricing-table th:first-child { text-align: left; }

.v-pricing-table td {
    padding: 13px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--v-border);
    text-align: center;
    color: var(--v-text-primary);
}

.v-pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.v-pricing-table tr:last-child td { border-bottom: 0; }
.v-pricing-table tr:nth-child(even) td { background: var(--v-light-bg); }

/* ─── 15. FAQ ─────────────────────────────────────────────────────── */
.v-faq-section { background: var(--v-darker); }

.v-faq-left h2 { color: #fff; }
.v-faq-left p  { color: rgba(255,255,255,.55); }

.v-accordion-item {
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    background: transparent !important;
}

.v-accordion-btn {
    background: transparent !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 20px 0 !important;
    box-shadow: none !important;
}

.v-accordion-btn:not(.collapsed) { color: #fff !important; }
.v-accordion-btn::after { filter: invert(1) brightness(0.7); }

.v-accordion-body {
    background: transparent;
    color: rgba(255,255,255,.55);
    font-size: 14.5px;
    line-height: 1.7;
    padding: 0 0 20px 0 !important;
}

/* ─── 16. CTA Banner ──────────────────────────────────────────────── */
.v-cta-section {
    background: var(--v-darker);
    padding: var(--v-section-py) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Nokta ızgara arkaplan */
.v-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Mavi-mor radial parlama */
.v-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 140%;
    background:
        radial-gradient(ellipse 45% 55% at 28% 50%, rgba(37, 99, 235, .35) 0%, transparent 70%),
        radial-gradient(ellipse 45% 55% at 72% 50%, rgba(139, 92, 246, .28) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

/* Cam efektli merkez kart */
.v-cta-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--v-radius-xl);
    padding: 64px 48px 52px;
    max-width: 720px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .07),
        0 32px 80px rgba(0, 0, 0, .4);
}

/* Üst kenar gradyan çizgisi */
.v-cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37, 99, 235, .7) 35%,
        rgba(139, 92, 246, .6) 65%,
        transparent 100%);
    border-radius: 1px;
}

/* Rozet pill */
.v-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(37, 99, 235, .15);
    border: 1px solid rgba(37, 99, 235, .35);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 22px;
    letter-spacing: .02em;
}

/* Başlık */
.v-cta-section .v-h2 {
    color: #fff;
    margin-bottom: 16px;
}

/* Başlıktaki gradient vurgu span */
.v-cta-section .v-h2 span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Alt yazı */
.v-cta-section p {
    color: rgba(255, 255, 255, .6);
    max-width: 460px;
    margin: 0 auto 32px;
    font-size: 16.5px;
    line-height: 1.75;
}

/* Buton satırı */
.v-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Ana buton — mavi-mor gradyan */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--v-primary) 0%, #7C3AED 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 34px;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(37, 99, 235, .45);
    cursor: pointer;
}
.btn-cta-primary:hover {
    opacity: .88;
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(37, 99, 235, .55);
    color: #fff;
}

/* İkincil ghost buton */
.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50px;
    transition: background .2s, color .2s, border-color .2s;
    cursor: pointer;
}
.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
}
.btn-cta-ghost i { font-size: 16px; }

/* Güven notu */
.v-cta-trust {
    margin: 22px auto 0 !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, .38) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: none !important;
}
.v-cta-trust i { font-size: 14px; color: rgba(34, 197, 94, .7); }

/* ─── 17. Footer ──────────────────────────────────────────────────── */
.v-footer {
    background: var(--v-darker);
    color: rgba(255,255,255,.7);
    padding-top: 64px;
    padding-bottom: 0;
}

.v-footer-logo img { height: 32px; }

.v-footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 220px;
}

.v-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.v-footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: 16px;
    transition: color .2s, border-color .2s, background .2s;
    background: transparent;
}

.v-footer-social-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.06);
}

.v-footer-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.35);
    margin-bottom: 18px;
}

.v-footer-links { list-style: none; padding: 0; margin: 0; }

.v-footer-links li { margin-bottom: 10px; }

.v-footer-links a {
    color: rgba(255,255,255,.58);
    font-size: 14px;
    transition: color .2s;
}

.v-footer-links a:hover { color: #fff; }

.v-footer-links a.highlight { color: #818CF8; font-weight: 600; }
.v-footer-links a.highlight:hover { color: #A5B4FC; }

.v-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.58);
}

.v-footer-contact-item i {
    color: var(--v-primary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.v-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.v-footer-bottom-left {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

.v-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v-footer-bottom-right a {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    transition: color .2s;
}

.v-footer-bottom-right a:hover { color: rgba(255,255,255,.7); }

/* Dil seçici (footer) */
.v-footer-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 7px;
    padding: 5px 12px;
    background: transparent;
    cursor: pointer;
    transition: color .2s, border-color .2s;
}

.v-footer-lang:hover { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }

/* ─── 18. Scroll Top Button ───────────────────────────────────────── */
.v-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--v-primary);
    color: #fff;
    border: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37,99,235,.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
    z-index: 999;
}

.v-scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.v-scroll-top:hover { background: var(--v-primary-hover); }

/* ─── 19. About Page ──────────────────────────────────────────────── */
.v-about-photo {
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    box-shadow: var(--v-shadow-lg);
}

.v-about-photo img { width: 100%; display: block; }

.v-stat-box {
    text-align: center;
    padding: 28px;
    border-radius: var(--v-radius-md);
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
}

.v-stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--v-primary);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 6px;
}

.v-stat-label { font-size: 14px; color: var(--v-text-muted); font-weight: 500; }

/* ─── 20. Contact Page ────────────────────────────────────────────── */
.v-contact-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-lg);
    padding: 40px;
    box-shadow: var(--v-shadow-sm);
}

.v-contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--v-border);
}

.v-contact-info-item:last-child { border-bottom: 0; }

.v-contact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(37,99,235,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--v-primary);
    flex-shrink: 0;
}

/* ─── 21. Form Styles ─────────────────────────────────────────────── */
.v-form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--v-text-primary);
    margin-bottom: 6px;
}

.v-form-control {
    border: 1.5px solid var(--v-border);
    border-radius: var(--v-radius-sm);
    padding: 11px 14px;
    font-size: 14.5px;
    color: var(--v-text-primary);
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    width: 100%;
}

.v-form-control:focus {
    outline: none;
    border-color: var(--v-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* ─── 22. Inner Page Hero ─────────────────────────────────────────── */
.v-page-hero {
    background: var(--v-darker);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 110%, var(--v-glow-blue) 0%, transparent 60%);
    pointer-events: none;
}

.v-page-hero h1 { color: #fff; position: relative; }
.v-page-hero p  { color: rgba(255,255,255,.55); position: relative; }

/* ─── 23. AOS custom ──────────────────────────────────────────────── */
[data-aos] { transition-timing-function: cubic-bezier(.25,.46,.45,.94); }

/* ─── 24. Responsive ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    :root {
        --v-section-py: 72px;
        --v-section-py-sm: 48px;
    }

    .v-why-grid { grid-template-columns: repeat(2, 1fr); }
    .v-why-card:nth-child(2n) { border-right: 0; }
    .v-why-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.08); }
    .v-why-card:nth-child(2n):nth-last-child(-n+2),
    .v-why-card:nth-last-child(-n+2) { border-bottom: 0; }

    .v-pricing-wrap { grid-template-columns: 1fr; }
    .v-pricing-col { border-right: 0; border-bottom: 1px solid var(--v-border); }
    .v-pricing-col:last-child { border-bottom: 0; }

    .v-pricing-compare tbody td:first-child {
        font-size: 20px;
    }

    .v-pricing-showcase {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .v-pricing-head-row h3 {
        font-size: 26px;
    }

    .v-pricing-amount {
        font-size: 48px;
    }

    .v-testimonial-card { flex-direction: column; }
    .v-testimonial-photo { width: 100%; height: 220px; }
}

@media (max-width: 767.98px) {
    :root {
        --v-section-py: 56px;
        --v-section-py-sm: 36px;
    }

    .v-display { letter-spacing: -.8px; }
    .v-hero-title { letter-spacing: -1.2px; }
    .v-hero-text { padding: 36px 0 36px; }
    .v-hero-btns { flex-direction: column; align-items: center; gap: 6px; }
    .v-hero-btn-ghost { padding: 8px 10px; }
    .v-why-grid { grid-template-columns: 1fr; }
    .v-why-card { border-right: 0 !important; }

    .v-pricing-panel {
        margin-left: -8px;
        margin-right: -8px;
        border-radius: 18px;
        padding: 10px;
    }

    .v-pricing-compare {
        min-width: 680px;
    }

    .v-pr-plan-card {
        padding: 20px 14px 16px;
    }

    .v-pr-plan-price {
        font-size: 40px;
    }

    .v-pricing-compare tbody td:first-child {
        font-size: 18px;
    }

    .v-pricing-billing {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 18px;
    }

    .v-pricing-stack {
        border-radius: 18px;
    }

    .v-pricing-head-card {
        padding: 20px 16px 16px;
        border-radius: 14px;
    }

    .v-pricing-feature-card h4 {
        font-size: 21px;
    }

    .v-pricing-feature-card li {
        font-size: 15px;
    }

    .v-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

    .v-contact-card { padding: 24px; }

    .v-nav-links, .v-nav-actions { display: none !important; }
}

@media (min-width: 768px) {
    .v-hamburger { display: none !important; }
}

/* ─── 25. Features Page ──────────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────────── */
.v-feat-hero {
    background: var(--v-darker);
    padding: 120px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v-feat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-feat-hero > .v-container { position: relative; z-index: 1; }
.v-feat-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 160%;
    background:
        radial-gradient(ellipse 45% 50% at 25% 55%, rgba(37,99,235,.36) 0%, transparent 70%),
        radial-gradient(ellipse 45% 50% at 75% 55%, rgba(139,92,246,.28) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none; z-index: 0;
}
.v-feat-hero-title {
    font-size: clamp(36px, 5.5vw, 70px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
    margin: 0 0 24px;
    position: relative;
}
.v-feat-hero-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-feat-hero-sub {
    font-size: clamp(15px, 1.65vw, 17.5px);
    color: rgba(255,255,255,.55);
    max-width: 600px;
    margin: 0 auto 38px;
    line-height: 1.75;
    position: relative;
}
.v-feat-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

/* ── Trust Strip ──────────────────────────────────────────────── */
.v-feat-trust-strip {
    background: #fff;
    border-top: 1px solid var(--v-border);
    border-bottom: 1px solid var(--v-border);
    padding: 28px 0;
}
.v-feat-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 8px 16px;
}
.v-feat-trust-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(37,99,235,.07);
    border: 1px solid rgba(37,99,235,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 19px;
    color: var(--v-primary);
    flex-shrink: 0;
}
.v-feat-trust-text strong {
    display: block;
    font-size: 14px; font-weight: 700;
    color: var(--v-text-primary);
    line-height: 1.3;
}
.v-feat-trust-text span {
    font-size: 12.5px;
    color: var(--v-text-muted);
    line-height: 1.4;
}

/* ── Module Sections ──────────────────────────────────────────── */
.v-feat-module-section {
    padding: var(--v-section-py) 0;
    background: #fff;
}
.v-feat-module-section.is-dark {
    background: var(--v-darker);
    position: relative;
    overflow: hidden;
}
.v-feat-module-section.is-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.v-feat-module-section.is-dark .v-container { position: relative; z-index: 1; }
.v-feat-module-section.is-dark .v-h2         { color: #fff; }
.v-feat-module-section.is-dark .v-section-subtitle { color: rgba(255,255,255,.6); }

/* Module Badge */
.v-feat-module-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    border: 1px solid;
}
.v-feat-module-badge.is-blue   { color: #2563EB; background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.22); }
.v-feat-module-badge.is-green  { color: #16a34a; background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.22); }
.v-feat-module-badge.is-amber  { color: #b45309; background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.25); }
.v-feat-module-badge.is-purple { color: #7C3AED; background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.22); }
.v-feat-module-badge.is-gradient { color: #60a5fa; background: rgba(37,99,235,.12); border-color: rgba(37,99,235,.3); }

/* Feature Bullets */
.v-feat-bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.v-feat-bullets li {
    display: flex; align-items: center; gap: 8px;
    font-size: 14.5px; font-weight: 500;
    color: var(--v-text-primary);
}
.v-feat-bullets li .bi { color: var(--v-primary); font-size: 15px; flex-shrink: 0; }
.v-feat-bullets.is-dark li { color: rgba(255,255,255,.8); }
.v-feat-bullets.is-dark li .bi { color: #60a5fa; }

/* Module CTA link */
.v-feat-cta-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--v-primary); font-size: 15px; font-weight: 600;
    transition: gap .2s, color .2s;
}
.v-feat-cta-link:hover        { gap: 12px; color: var(--v-primary-hover); }
.v-feat-cta-link.is-dark      { color: #93c5fd; }
.v-feat-cta-link.is-dark:hover{ color: #bfdbfe; }

/* ── Feature Mock Cards (v-fmc) ──────────────────────────────── */
.v-fmc {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    box-shadow: var(--v-shadow-lg);
}
.v-fmc.is-dark {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 24px 64px rgba(0,0,0,.45);
}

/* Header */
.v-fmc-header {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 18px;
    background: rgba(0,0,0,.03);
    border-bottom: 1px solid var(--v-border);
}
.v-fmc.is-dark .v-fmc-header {
    background: rgba(255,255,255,.04);
    border-bottom-color: rgba(255,255,255,.08);
}
.v-fmc-dots { display: flex; gap: 6px; }
.v-fmc-dots span { width: 10px; height: 10px; border-radius: 50%; }
.v-fmc-dots span:nth-child(1) { background: #EF4444; }
.v-fmc-dots span:nth-child(2) { background: #F59E0B; }
.v-fmc-dots span:nth-child(3) { background: #22C55E; }
.v-fmc-title-text {
    flex: 1; text-align: center;
    font-size: 12.5px; font-weight: 600;
    color: var(--v-text-muted);
}
.v-fmc.is-dark .v-fmc-title-text { color: rgba(255,255,255,.45); }
.v-fmc-count {
    font-size: 11.5px; font-weight: 700;
    color: var(--v-primary);
    background: rgba(37,99,235,.1);
    border-radius: 20px; padding: 3px 10px;
}
.v-fmc-badge-pdf {
    font-size: 11px; font-weight: 700;
    color: #7C3AED; background: rgba(124,58,237,.1);
    border-radius: 4px; padding: 3px 8px;
}

/* Row */
.v-fmc-row {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .15s;
}
.v-fmc-row:last-child { border-bottom: 0; }
.v-fmc.is-dark .v-fmc-row { border-bottom-color: rgba(255,255,255,.06); }
.v-fmc-row:hover { background: rgba(37,99,235,.03); }
.v-fmc.is-dark .v-fmc-row:hover { background: rgba(255,255,255,.04); }

/* Avatar */
.v-fmc-avatar {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}

/* Info */
.v-fmc-info { flex: 1; min-width: 0; }
.v-fmc-name {
    display: block; font-size: 13.5px; font-weight: 600;
    color: var(--v-text-primary);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v-fmc.is-dark .v-fmc-name { color: rgba(255,255,255,.8); }
.v-fmc-sub { display: block; font-size: 12px; color: var(--v-text-muted); }
.v-fmc.is-dark .v-fmc-sub { color: rgba(255,255,255,.38); }

/* Amount */
.v-fmc-amount { font-size: 13.5px; font-weight: 700; flex-shrink: 0; }
.v-fmc-amount.is-green { color: #16a34a; }
.v-fmc-amount.is-red   { color: #dc2626; }
.v-fmc-amount.is-blue  { color: var(--v-primary); }

/* Footer */
.v-fmc-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 18px;
    background: rgba(0,0,0,.025);
    font-size: 12.5px; color: var(--v-text-muted);
}
.v-fmc.is-dark .v-fmc-footer {
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.4);
}
.v-fmc-footer strong { color: var(--v-text-primary); }
.v-fmc.is-dark .v-fmc-footer strong { color: #fff; }
.v-fmc-alert { color: #F59E0B; font-weight: 600; display: flex; align-items: center; gap: 4px; font-size: 12px; }

/* Stok icon */
.v-fmc-stok-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.v-fmc-stok-icon.is-green { background: rgba(34,197,94,.12); color: #16a34a; }
.v-fmc-stok-icon.is-amber { background: rgba(245,158,11,.12); color: #b45309; }

/* Kasa summary */
.v-fmc-kasa-summary {
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: var(--v-border);
    gap: 1px;
    border-top: 1px solid var(--v-border);
    border-bottom: 1px solid var(--v-border);
}
.v-fmc-kasa-item {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 14px; background: #fff;
}
.v-fmc-kasa-item i { font-size: 20px; }
.v-fmc-kasa-item.is-green i { color: #16a34a; }
.v-fmc-kasa-item.is-red   i { color: #dc2626; }
.v-fmc-kasa-item.is-blue  i { color: var(--v-primary); }
.v-fmc-kasa-item > div { display: flex; flex-direction: column; }
.v-fmc-kasa-item span   { font-size: 11.5px; color: var(--v-text-muted); }
.v-fmc-kasa-item strong { font-size: 14px; font-weight: 700; color: var(--v-text-primary); }

/* Status dots */
.v-fmc-dot-green,
.v-fmc-dot-red {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.v-fmc-dot-green { background: #22C55E; }
.v-fmc-dot-red   { background: #EF4444; }

/* Invoice mock */
.v-fmc-inv-meta {
    display: flex; gap: 24px; flex-wrap: wrap;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.v-fmc-inv-label {
    display: block; font-size: 10.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .05em;
    color: rgba(255,255,255,.35); margin-bottom: 3px;
}
.v-fmc-inv-val { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.82); }
.v-fmc-inv-rows { }
.v-fmc-inv-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.v-fmc-inv-item  { font-size: 13px; color: rgba(255,255,255,.65); }
.v-fmc-inv-price { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.88); }
.v-fmc-inv-total {
    display: flex; justify-content: space-between;
    padding: 10px 18px; font-size: 13px;
    color: rgba(255,255,255,.5);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.v-fmc-inv-total.is-grand {
    padding: 14px 18px; font-size: 15px;
    font-weight: 700; color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.03);
}
.v-fmc-inv-total .is-accent { color: #60a5fa; }

/* ── e-Fatura Section ────────────────────────────────────────── */
.v-efatura-section {
    background: var(--v-darker);
    padding: var(--v-section-py) 0;
    position: relative; overflow: hidden;
}
.v-efatura-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.v-efatura-section .v-container  { position: relative; z-index: 1; }
.v-efatura-section .v-h2          { color: #fff; }
.v-efatura-section .v-section-subtitle { color: rgba(255,255,255,.6); }
.v-efatura-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 160%;
    background:
        radial-gradient(ellipse 50% 55% at 18% 50%, rgba(37,99,235,.38) 0%, transparent 70%),
        radial-gradient(ellipse 50% 55% at 82% 50%, rgba(139,92,246,.30) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none; z-index: 0;
}
.v-efatura-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: #a78bfa; margin-bottom: 6px;
}
.v-efatura-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.v-efatura-card-header {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 18px;
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.v-efatura-card-header > span:nth-child(2) {
    flex: 1; text-align: center;
    font-size: 12.5px; font-weight: 600;
    color: rgba(255,255,255,.5);
}
.v-efatura-gib-badge {
    font-size: 11px; font-weight: 700; color: #22C55E;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 20px; padding: 3px 10px;
}
.v-efatura-stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.v-efatura-stat {
    display: flex; flex-direction: column; align-items: center;
    padding: 18px 10px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.v-efatura-stat:last-child { border-right: 0; }
.v-efatura-stat-num {
    font-size: 26px; font-weight: 800; color: #fff;
    line-height: 1; margin-bottom: 5px;
}
.v-efatura-stat-num.is-green { color: #22C55E; }
.v-efatura-stat-lbl {
    font-size: 11px; color: rgba(255,255,255,.4);
    font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
}
.v-efatura-compliance-badge {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 18px;
    background: rgba(34,197,94,.06);
    border-top: 1px solid rgba(34,197,94,.15);
    font-size: 12.5px; font-weight: 600;
    color: rgba(34,197,94,.85);
}

/* ── Business Type Cards ─────────────────────────────────────── */
.v-biz-section { background: var(--v-light-bg); }
.v-biz-card {
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 14px;
    padding: 30px 16px;
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-md);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.v-biz-card:hover {
    border-color: var(--v-primary);
    box-shadow: 0 8px 24px rgba(37,99,235,.12);
    transform: translateY(-4px);
}
.v-biz-icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--v-primary);
}
.v-biz-card span {
    font-size: 13.5px; font-weight: 600;
    color: var(--v-text-primary); line-height: 1.3;
}

/* ── Responsive: Features Page ───────────────────────────────── */
@media (max-width: 767.98px) {
    .v-feat-bullets { grid-template-columns: 1fr; }
    .v-feat-trust-item { padding: 8px 8px; gap: 10px; }
    .v-feat-trust-icon { width: 38px; height: 38px; font-size: 16px; }
    .v-fmc-inv-meta { gap: 12px; }
    .v-fmc-kasa-item { padding: 10px 10px; }
    .v-efatura-stat-num { font-size: 20px; }
}

/* ─── 26. Pricing Page ───────────────────────────────────────────── */

/* Utility */
.v-section-narrow { max-width: 760px; }

/* ── Hero ─────────────────────────────────────────────────────── */
.v-pg-hero {
    background: var(--v-darker);
    padding: 120px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v-pg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-pg-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 160%;
    background:
        radial-gradient(ellipse 45% 55% at 30% 55%, rgba(37,99,235,.38) 0%, transparent 70%),
        radial-gradient(ellipse 45% 55% at 70% 55%, rgba(124,58,237,.28) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.v-pg-hero-title {
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
    margin: 0 0 22px;
    position: relative;
}
.v-pg-hero-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-pg-hero-sub {
    font-size: clamp(14.5px, 1.6vw, 17px);
    color: rgba(255,255,255,.55);
    max-width: 580px;
    margin: 0 auto 38px;
    line-height: 1.75;
    position: relative;
}

/* Trust pills in hero */
.v-pg-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    position: relative;
}
.v-pg-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    backdrop-filter: blur(8px);
}
.v-pg-trust-pill .bi { color: #4ade80; font-size: 13px; }

/* ── Billing / Cards section ──────────────────────────────────── */
.v-pg-cards-section { background: #f8fafc; }

.v-pg-yearly-save {
    display: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #16a34a;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.22);
    border-radius: 999px;
    padding: 5px 16px;
    display: inline-block;
}
.v-pg-yearly-save.is-hidden { display: none !important; }
.v-pg-yearly-save.is-visible { display: inline-block; }

/* ── 3-Column Card Grid ───────────────────────────────────────── */
.v-pc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 18px;
    align-items: start;
}

/* Base card */
.v-pc-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(15,23,42,.07);
    position: relative;
    transition: box-shadow .25s, transform .25s;
}
.v-pc-card:hover {
    box-shadow: 0 16px 44px rgba(15,23,42,.1);
    transform: translateY(-3px);
}

/* Pro featured card */
.v-pc-card.is-pro {
    border-color: var(--v-primary);
    box-shadow:
        0 0 0 2px rgba(37,99,235,.35),
        0 24px 56px rgba(37,99,235,.18);
    z-index: 2;
}
.v-pc-card.is-pro:hover {
    box-shadow:
        0 0 0 2px rgba(37,99,235,.5),
        0 28px 60px rgba(37,99,235,.25);
    transform: translateY(-3px);
}

/* Popular badge ribbon */
.v-pc-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--v-primary), #7C3AED);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37,99,235,.4);
}

/* Card inner (padding) */
.v-pc-card-inner {
    padding: 28px 24px 24px;
}

/* Plan name */
.v-pc-card-name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.5px;
    margin-bottom: 4px;
}
.v-pc-card.is-pro .v-pc-card-name { color: var(--v-primary); }

/* Target audience */
.v-pc-card-target {
    font-size: 13px;
    color: var(--v-text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Price row */
.v-pc-price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 14px;
}
.v-pc-amount {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -2px;
}
.v-pc-amount-custom {
    font-size: 36px;
    letter-spacing: -1.5px;
}
.v-pc-card.is-pro .v-pc-amount { color: var(--v-primary); }
.v-pc-period-wrap { display: flex; flex-direction: column; margin-bottom: 4px; }
.v-pc-period {
    font-size: 12.5px;
    color: var(--v-text-muted);
    font-weight: 500;
    line-height: 1.4;
    max-width: 80px;
}

/* Short description */
.v-pc-desc {
    font-size: 14.5px;
    color: var(--v-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CTA button */
.v-pc-btn {
    display: block;
    width: 100%;
    text-align: center;
    border: 1.5px solid rgba(15,23,42,.18);
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    transition: border-color .2s, background .2s, color .2s, box-shadow .2s, transform .2s;
    text-decoration: none;
}
.v-pc-btn:hover {
    border-color: var(--v-primary);
    color: var(--v-primary);
    transform: translateY(-1px);
    text-decoration: none;
}
.v-pc-btn.is-primary {
    background: linear-gradient(180deg, var(--v-primary) 0%, #1d4ed8 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.v-pc-btn.is-primary:hover {
    color: #fff;
    background: linear-gradient(180deg, #3b82f6 0%, var(--v-primary) 100%);
    box-shadow: 0 8px 24px rgba(37,99,235,.45);
}

/* Micro-note (no credit card) */
.v-pc-micronote {
    text-align: center;
    font-size: 11.5px;
    color: var(--v-text-muted);
    margin-top: 8px;
}

/* Divider */
.v-pc-divider {
    height: 1px;
    background: var(--v-border);
    margin: 20px 0;
}

/* Feature list */
.v-pc-features-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--v-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.v-pc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}
.v-pc-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--v-text-secondary);
    line-height: 1.45;
}
.v-pc-feature-list li .bi-check2 {
    color: #16a34a;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}
.v-pc-feature-list li .bi-check2-circle {
    color: var(--v-primary);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Comparison Table ─────────────────────────────────────────── */
.v-pg-compare-section { background: #fff; }

.v-pg-compare-wrap {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15,23,42,.06);
    overflow: hidden;
}

.v-pg-compare-tbl {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}
.v-pg-compare-tbl th,
.v-pg-compare-tbl td {
    padding: 14px 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--v-border);
}
.v-pg-compare-tbl thead th {
    padding: 20px 20px;
    background: #f8fafc;
    border-bottom: 2px solid var(--v-border);
}
.v-pg-compare-tbl tbody tr:last-child td { border-bottom: 0; }
.v-pg-compare-tbl tbody tr:hover td { background: #f8fafc; }

.v-pgc-feature-col { width: 38%; text-align: left; font-weight: 600; color: #0f172a; font-size: 14px; }
.v-pgc-pro-col { background: rgba(37,99,235,.04); }
.v-pg-compare-tbl thead .v-pgc-pro-col { background: rgba(37,99,235,.07); }

.v-pgc-plan-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid var(--v-border);
}
.v-pgc-plan-label.is-pro {
    background: linear-gradient(135deg, var(--v-primary), #7C3AED);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
}

.v-pgc-yes  { color: #16a34a; font-size: 18px; }
.v-pgc-no   { color: #94a3b8; font-size: 18px; }
.v-pgc-text { font-size: 13.5px; font-weight: 600; color: #475569; }

/* ── e-Fatura Highlight Section ──────────────────────────────── */
.v-pg-efatura-section {
    background: var(--v-darker);
    padding: var(--v-section-py) 0;
    position: relative;
    overflow: hidden;
}
.v-pg-efatura-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.v-pg-efatura-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 160%;
    background:
        radial-gradient(ellipse 50% 60% at 20% 50%, rgba(37,99,235,.32) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 50%, rgba(124,58,237,.24) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.v-pg-efatura-desc {
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    margin: 18px 0 28px;
}
.v-pg-efatura-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 11px;
}
.v-pg-efatura-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
}
.v-pg-efatura-list li .bi { color: #4ade80; font-size: 16px; flex-shrink: 0; }

.v-pg-efatura-plan-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 6px 16px;
}

/* e-Fatura Mock Card */
.v-pg-efatura-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
    backdrop-filter: blur(16px);
}
.v-pg-efatura-card-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.v-pg-gib-badge {
    background: linear-gradient(135deg, var(--v-primary), #7C3AED);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 6px;
}
.v-pg-ef-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}
.v-pg-ef-date {
    font-size: 12px;
    color: rgba(255,255,255,.4);
}
.v-pg-efatura-card-body {
    padding: 20px 22px;
    display: grid;
    gap: 10px;
}
.v-pg-ef-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.v-pg-ef-row span:first-child { color: rgba(255,255,255,.5); }
.v-pg-ef-row span:last-child  { color: rgba(255,255,255,.85); font-weight: 500; }
.v-pg-ef-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 4px 0;
}
.v-pg-ef-total span:first-child { color: rgba(255,255,255,.7); font-weight: 600; }
.v-pg-ef-total span:last-child  { color: #fff; font-size: 16px; font-weight: 800; }
.v-pg-ef-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
    margin-top: 4px;
    padding: 10px 14px;
    background: rgba(74,222,128,.08);
    border: 1px solid rgba(74,222,128,.2);
    border-radius: 10px;
}

/* ── FAQ section ──────────────────────────────────────────────── */
.v-pg-faq-section { background: #f8fafc; }

/* ── Responsive: Pricing Page ─────────────────────────────────── */
@media (max-width: 991.98px) {
    .v-pc-grid { grid-template-columns: 1fr; gap: 20px; }
    .v-pc-card.is-pro { transform: none; }
    .v-pc-card.is-pro:hover { transform: translateY(-3px); }
}
@media (max-width: 767.98px) {
    .v-pg-hero { padding: 80px 0 60px; }
    .v-pg-trust-pills { gap: 8px; }
    .v-pg-trust-pill { font-size: 12px; padding: 5px 11px; }
    .v-pc-amount { font-size: 36px; }
    .v-pg-compare-tbl th, .v-pg-compare-tbl td { padding: 12px 12px; font-size: 13px; }
    .v-pgc-plan-label { padding: 4px 12px; font-size: 12px; }
    .v-pg-efatura-card { margin-top: 32px; }
}

/* ─── 27. FAQ Page ──────────────────────────────────────────────── */

/* Hero */
.v-faqx-hero {
    background: var(--v-darker);
    padding: 112px 0 86px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v-faqx-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-faqx-hero > .v-container { position: relative; z-index: 1; }

.v-faqx-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 160%;
    background:
        radial-gradient(ellipse 46% 56% at 30% 52%, rgba(37,99,235,.35) 0%, transparent 70%),
        radial-gradient(ellipse 44% 54% at 70% 52%, rgba(124,58,237,.28) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.v-faqx-hero-title {
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
    margin: 18px 0 20px;
}
.v-faqx-hero-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-faqx-hero-sub {
    font-size: clamp(15px, 1.65vw, 17px);
    color: rgba(255,255,255,.58);
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.75;
}

/* Search */
.v-faqx-search-wrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.v-faqx-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.45);
    font-size: 16px;
    pointer-events: none;
}
.v-faqx-search-input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 14px 16px 14px 46px;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.v-faqx-search-input::placeholder { color: rgba(255,255,255,.45); }
.v-faqx-search-input:focus {
    outline: none;
    border-color: rgba(96,165,250,.75);
    background: rgba(255,255,255,.1);
    box-shadow: 0 0 0 4px rgba(59,130,246,.15);
}

.v-faqx-search-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.v-faqx-chip {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.75);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    transition: border-color .2s, color .2s, transform .2s;
}
.v-faqx-chip:hover {
    border-color: rgba(96,165,250,.85);
    color: #bfdbfe;
    transform: translateY(-1px);
}

.v-faqx-seo-keywords {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.v-faqx-seo-keywords span {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11.5px;
    border-radius: 999px;
    border: 1px dashed rgba(255,255,255,.2);
    color: rgba(255,255,255,.5);
}

/* Main area */
.v-faqx-main {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Sticky side menu */
.v-faqx-side {
    position: sticky;
    top: 104px;
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(15,23,42,.06);
}
.v-faqx-side h3 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #0f172a;
    font-weight: 800;
}
.v-faqx-side ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}
.v-faqx-side a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 10px;
    padding: 8px 10px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    transition: background .2s, color .2s;
}
.v-faqx-side a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* Popular block */
.v-faqx-popular-block {
    border: 1px solid var(--v-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15,23,42,.06);
    padding: 28px;
    margin-bottom: 24px;
}
.v-faqx-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.v-faqx-popular-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--v-border);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.v-faqx-popular-card i {
    color: var(--v-primary);
    flex-shrink: 0;
    margin-top: 1px;
}
.v-faqx-popular-card:hover {
    border-color: rgba(37,99,235,.4);
    box-shadow: 0 8px 22px rgba(37,99,235,.12);
    transform: translateY(-2px);
}

/* Category blocks */
.v-faqx-cat-block {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15,23,42,.05);
    padding: 8px 22px;
    margin-bottom: 18px;
    scroll-margin-top: 110px;
}
.v-faqx-cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0 6px;
}
.v-faqx-cat-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.4px;
}
.v-faqx-cat-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #1d4ed8;
    background: rgba(37,99,235,.12);
}

/* Accordion override for light panels */
.v-faqx-accordion .v-accordion-item {
    border-color: rgba(15,23,42,.09) !important;
}
.v-faqx-accordion .v-accordion-btn {
    color: #0f172a !important;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 0 !important;
}
.v-faqx-accordion .v-accordion-btn:not(.collapsed) {
    color: var(--v-primary) !important;
}
.v-faqx-accordion .v-accordion-btn::after {
    filter: none;
    opacity: .65;
}
.v-faqx-accordion .v-accordion-body {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

/* No result state */
.v-faqx-no-results {
    border: 1px dashed rgba(148,163,184,.6);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin: 10px 0 20px;
    background: #fff;
}
.v-faqx-no-results h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #0f172a;
}
.v-faqx-no-results p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Still question section */
.v-faqx-still {
    background: #fff;
    padding-top: 20px;
}
.v-faqx-still-card {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    padding: 48px 30px;
    box-shadow: 0 26px 70px rgba(15,23,42,.25);
}
.v-faqx-still-card h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -1px;
}
.v-faqx-still-card p {
    margin: 0 auto;
    color: rgba(255,255,255,.62);
    max-width: 520px;
    font-size: 16px;
}
.v-faqx-still-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}
.v-faqx-tertiary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.88);
    font-weight: 600;
    font-size: 14px;
    transition: border-color .2s, color .2s, transform .2s;
}
.v-faqx-tertiary-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .v-faqx-popular-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .v-faqx-hero { padding: 84px 0 60px; }
    .v-faqx-side {
        position: static;
        top: auto;
        overflow-x: auto;
        padding: 12px;
    }
    .v-faqx-side ul {
        display: flex;
        gap: 8px;
        min-width: max-content;
    }
    .v-faqx-side a {
        border: 1px solid var(--v-border);
        background: #f8fafc;
        white-space: nowrap;
    }
    .v-faqx-popular-block,
    .v-faqx-cat-block {
        padding-left: 16px;
        padding-right: 16px;
    }
    .v-faqx-cat-head h3 { font-size: 18px; }
    .v-faqx-accordion .v-accordion-btn { font-size: 15px; }
    .v-faqx-accordion .v-accordion-body { font-size: 14.5px; }
    .v-faqx-still-card { padding: 38px 18px; }
}

/* ─── 28. About / Hakkımızda Page ───────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────────── */
.v-about-hero {
    background: var(--v-darker);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v-about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-about-hero > .v-container { position: relative; z-index: 1; }
.v-about-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 160%;
    background:
        radial-gradient(ellipse 45% 50% at 25% 55%, rgba(37,99,235,.36) 0%, transparent 70%),
        radial-gradient(ellipse 45% 50% at 75% 55%, rgba(124,58,237,.28) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.v-about-hero-title {
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
    margin: 0 0 24px;
    position: relative;
}
.v-about-hero-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-about-hero-sub {
    font-size: clamp(15px, 1.65vw, 17.5px);
    color: rgba(255,255,255,.55);
    max-width: 620px;
    margin: 0 auto 38px;
    line-height: 1.75;
    position: relative;
}
.v-about-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

/* ── Shared typography helpers ───────────────────────────────── */
.v-about-section-title {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--v-text-primary);
    margin-bottom: 20px;
}
.v-about-section-title span {
    background: linear-gradient(135deg, var(--v-primary) 0%, var(--v-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-about-section-text {
    font-size: 15.5px;
    color: var(--v-text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ── Section 2: What ─────────────────────────────────────────── */
.v-about-what-section { background: #fff; }
.v-about-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.v-about-what-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-md);
    transition: border-color .2s, box-shadow .2s;
}
.v-about-what-item:hover {
    border-color: var(--v-primary);
    box-shadow: 0 4px 16px rgba(37,99,235,.09);
}
.v-about-what-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--v-primary);
}
.v-about-what-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--v-text-primary);
    line-height: 1.4;
    align-self: center;
}

/* ── Section 3: Why (dark) ───────────────────────────────────── */
.v-about-why-section {
    background: var(--v-darker);
    position: relative;
    overflow: hidden;
}
.v-about-why-section-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-about-why-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: border-color .2s;
}
.v-about-why-card.is-problem { border-color: rgba(239,68,68,.2); }
.v-about-why-card.is-solution { border-color: rgba(34,197,94,.2); }
.v-about-why-card.is-problem:hover { border-color: rgba(239,68,68,.4); }
.v-about-why-card.is-solution:hover { border-color: rgba(34,197,94,.4); }
.v-about-why-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.v-about-why-card-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.v-about-why-card-icon.is-red {
    background: rgba(239,68,68,.12);
    color: #f87171;
}
.v-about-why-card-icon.is-green {
    background: rgba(34,197,94,.12);
    color: #4ade80;
}
.v-about-why-card-head h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.v-about-why-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v-about-why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255,255,255,.75);
}
.v-about-why-list li i { font-size: 16px; flex-shrink: 0; }

/* ── Section 4: Mission & Vision ────────────────────────────── */
.v-about-mv-section { background: var(--v-light-bg); }
.v-about-mv-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    text-align: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.v-about-mv-card:hover {
    border-color: var(--v-primary);
    box-shadow: 0 12px 32px rgba(37,99,235,.1);
    transform: translateY(-4px);
}
.v-about-mv-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin: 0 auto 24px;
}
.v-about-mv-icon.is-primary {
    background: rgba(37,99,235,.1);
    border: 1px solid rgba(37,99,235,.2);
    color: var(--v-primary);
}
.v-about-mv-icon.is-accent {
    background: rgba(124,58,237,.1);
    border: 1px solid rgba(124,58,237,.2);
    color: var(--v-accent);
}
.v-about-mv-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--v-text-primary);
    margin-bottom: 12px;
}
.v-about-mv-card p {
    font-size: 15px;
    color: var(--v-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ── Section 5: Values ───────────────────────────────────────── */
.v-about-values-section { background: #fff; }
.v-about-value-card {
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
    border-radius: 18px;
    padding: 32px 24px;
    height: 100%;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.v-about-value-card:hover {
    border-color: var(--v-primary);
    box-shadow: 0 8px 24px rgba(37,99,235,.09);
    transform: translateY(-3px);
}
.v-about-value-icon {
    width: 50px; height: 50px;
    border-radius: 13px;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--v-primary);
    margin-bottom: 18px;
}
.v-about-value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--v-text-primary);
    margin-bottom: 8px;
}
.v-about-value-card p {
    font-size: 14px;
    color: var(--v-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ── Section 6: For Whom ─────────────────────────────────────── */
.v-about-for-section { background: var(--v-light-bg); }

/* ── Section 7: Technology (dark) ───────────────────────────── */
.v-about-tech-section {
    background: var(--v-darker);
    position: relative;
    overflow: hidden;
}
.v-about-tech-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-about-tech-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 140%;
    background:
        radial-gradient(ellipse 40% 50% at 20% 50%, rgba(37,99,235,.28) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 50%, rgba(124,58,237,.22) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.v-about-tech-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    height: 100%;
    transition: border-color .2s, background .2s;
}
.v-about-tech-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(96,165,250,.3);
}
.v-about-tech-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(96,165,250,.12);
    border: 1px solid rgba(96,165,250,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #93c5fd;
}
.v-about-tech-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
}
.v-about-tech-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.55;
    margin: 0;
}

/* ── Section 8: Trust ────────────────────────────────────────── */
.v-about-trust-section { background: #fff; }
.v-about-trust-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.v-about-trust-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
    border-radius: 12px;
    transition: border-color .2s, box-shadow .2s;
}
.v-about-trust-list li:hover {
    border-color: var(--v-primary);
    box-shadow: 0 4px 14px rgba(37,99,235,.08);
}
.v-about-trust-check {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--v-primary);
    flex-shrink: 0;
}
.v-about-trust-list li span {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--v-text-primary);
}

/* ── Section 9: Stats (dark) ─────────────────────────────────── */
.v-about-stats-section {
    background: var(--v-dark);
    position: relative;
    overflow: hidden;
}
.v-about-stats-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-about-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 36px 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}
.v-about-stat-card:hover {
    border-color: rgba(96,165,250,.3);
    transform: translateY(-3px);
}
.v-about-stat-value {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.v-about-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Section 10: Culture ─────────────────────────────────────── */
.v-about-culture-section { background: var(--v-light-bg); }
.v-about-culture-bullets {
    list-style: none;
    padding: 0; margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v-about-culture-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--v-text-primary);
    font-weight: 500;
}
.v-about-culture-bullets li i {
    color: var(--v-primary);
    font-size: 18px;
    flex-shrink: 0;
}
.v-about-culture-quote {
    background: linear-gradient(160deg, #0f172a 0%, #1B2032 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.v-about-culture-quote::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
    pointer-events: none;
}
.v-about-culture-quote-icon {
    font-size: 56px;
    line-height: 1;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 18px;
}
.v-about-culture-quote blockquote {
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 700;
    color: #fff;
    line-height: 1.55;
    margin: 0 0 28px;
    padding: 0;
    border: none;
    font-style: italic;
}
.v-about-culture-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.v-about-culture-brand-name {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-about-culture-brand-tag {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}

/* ── Responsive: About Page ──────────────────────────────────── */
@media (max-width: 991.98px) {
    .v-about-what-grid { grid-template-columns: 1fr; }
    .v-about-culture-quote { padding: 36px 24px; }
}
@media (max-width: 767.98px) {
    .v-about-hero { padding: 84px 0 64px; }
    .v-about-what-grid { grid-template-columns: 1fr 1fr; }
    .v-about-why-card { padding: 24px 20px; }
    .v-about-mv-card { padding: 28px 20px; }
    .v-about-culture-quote { padding: 28px 20px; }
    .v-about-culture-quote-icon { font-size: 40px; }
    .v-about-culture-quote blockquote { font-size: 16px; }
    .v-about-stat-card { padding: 26px 12px; }
}

/* ─── 29. Contact / İletişim Page ───────────────────────────────── */

/* ── Hero (dark) ─────────────────────────────────────────────── */
.v-ct-hero {
    background: var(--v-darker);
    padding: 110px 0 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v-ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-ct-hero > .v-container { position: relative; z-index: 1; }
.v-ct-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%; height: 160%;
    background:
        radial-gradient(ellipse 45% 50% at 25% 55%, rgba(37,99,235,.36) 0%, transparent 70%),
        radial-gradient(ellipse 45% 50% at 75% 55%, rgba(124,58,237,.28) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

/* Trust pills row */
.v-ct-trust-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.v-ct-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.82);
}
.v-ct-trust-pill i { color: #4ade80; font-size: 13px; }

/* ── Info Strip ──────────────────────────────────────────────── */
.v-ct-info-strip {
    background: #fff;
    border-top: 1px solid var(--v-border);
    border-bottom: 1px solid var(--v-border);
    padding: 32px 0;
}
.v-ct-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    height: 100%;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    text-decoration: none;
    color: inherit;
    background: #fff;
}
.v-ct-info-card:hover {
    border-color: var(--v-primary);
    box-shadow: 0 6px 20px rgba(37,99,235,.1);
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
}
.v-ct-info-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    border: 1px solid transparent;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.v-ct-info-card > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v-ct-info-card strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--v-text-primary);
}
.v-ct-info-card span {
    font-size: 12.5px;
    color: var(--v-text-secondary);
}
.v-ct-info-card em {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: var(--v-primary);
    margin-top: 4px;
}

/* ── Main Form Section ───────────────────────────────────────── */
.v-ct-main-section { background: var(--v-light-bg); }

/* Channels */
.v-ct-channels-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--v-text-secondary);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 18px;
}
.v-ct-channel-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: border-color .2s, box-shadow .2s;
}
.v-ct-channel-card:hover {
    border-color: var(--v-primary);
    box-shadow: 0 4px 14px rgba(37,99,235,.08);
}
.v-ct-channel-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--v-primary);
}
.v-ct-channel-card strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--v-text-primary);
    display: block;
    margin-bottom: 3px;
}
.v-ct-channel-card p {
    font-size: 13px;
    color: var(--v-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Status badge */
.v-ct-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    margin-top: 16px;
}
.v-ct-status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,.25);
    animation: v-ct-pulse 2s ease-in-out infinite;
}
@keyframes v-ct-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.25); }
    50%       { box-shadow: 0 0 0 6px rgba(16,185,129,.1); }
}

/* Form Card */
.v-ct-form-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(15,23,42,.07);
}

/* Success alert */
.v-ct-success-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.25);
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 28px;
}
.v-ct-success-alert i { font-size: 18px; flex-shrink: 0; }

/* Labels & Inputs */
.v-ct-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--v-text-primary);
    margin-bottom: 8px;
}
.v-ct-required { color: #ef4444; margin-left: 2px; }
.v-ct-input,
.v-ct-select,
.v-ct-textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 14.5px;
    color: var(--v-text-primary);
    background: var(--v-light-bg);
    border: 1.5px solid var(--v-border);
    border-radius: 12px;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.v-ct-input::placeholder,
.v-ct-textarea::placeholder { color: rgba(100,116,139,.6); }
.v-ct-input:focus,
.v-ct-select:focus,
.v-ct-textarea:focus {
    border-color: var(--v-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}
.v-ct-input.is-invalid,
.v-ct-select.is-invalid,
.v-ct-textarea.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,.1);
}
.v-ct-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.v-ct-textarea { resize: vertical; min-height: 140px; }
.v-ct-field-error {
    font-size: 12.5px;
    color: #ef4444;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.v-ct-field-error::before { content: '⚠'; }

/* Form Footer */
.v-ct-form-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.v-ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--v-primary) 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s;
    font-family: inherit;
}
.v-ct-submit-btn:hover {
    box-shadow: 0 8px 24px rgba(37,99,235,.35);
    transform: translateY(-2px);
}
.v-ct-submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}
.v-ct-privacy-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--v-text-secondary);
}
.v-ct-privacy-note i { color: #10b981; }

/* ── Demo CTA (dark) ─────────────────────────────────────────── */
.v-ct-demo-section {
    background: var(--v-darker);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v-ct-demo-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.v-ct-demo-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160%; height: 140%;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(37,99,235,.3) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* ── Mini FAQ ────────────────────────────────────────────────── */
.v-ct-faq-section { background: #fff; }
.v-ct-faq-accordion { border-radius: 16px; overflow: hidden; border: 1px solid var(--v-border); }
.v-ct-faq-accordion .v-accordion-item {
    border-color: rgba(15,23,42,.09) !important;
}
.v-ct-faq-accordion .v-accordion-item:last-child { border-bottom: none; }
.v-ct-faq-accordion .v-accordion-btn {
    color: #0f172a !important;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 0 !important;
}
.v-ct-faq-accordion .v-accordion-btn:not(.collapsed) {
    color: var(--v-primary) !important;
}
.v-ct-faq-accordion .v-accordion-btn::after {
    filter: none;
    opacity: .65;
}
.v-ct-faq-accordion .v-accordion-body {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    padding: 0 0 20px 0 !important;
}
.v-ct-faq-footer {
    font-size: 14px;
    color: var(--v-text-secondary);
}
.v-ct-faq-footer a {
    color: var(--v-primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 6px;
}
.v-ct-faq-footer a:hover { text-decoration: underline; }

/* ── Trust Section ───────────────────────────────────────────── */
.v-ct-trust-section { background: var(--v-light-bg); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .v-ct-form-card { padding: 36px 28px; }
    .v-ct-form-footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767.98px) {
    .v-ct-hero { padding: 80px 0 60px; }
    .v-ct-trust-pills { gap: 8px; }
    .v-ct-trust-pill { font-size: 12px; padding: 6px 12px; }
    .v-ct-info-strip { padding: 24px 0; }
    .v-ct-info-card { padding: 14px; gap: 12px; }
    .v-ct-form-card { padding: 24px 18px; border-radius: 18px; }
    .v-ct-demo-section { padding: 64px 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 30 — PRIVACY PAGE
═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.v-prv-hero {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1B2032 60%, #0D1117 100%);
    padding: 100px 0 72px;
    overflow: hidden;
}
.v-prv-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .18;
    pointer-events: none;
}
.v-prv-hero-glow--blue  { width: 480px; height: 480px; background: #2563EB; top: -120px; left: -80px; }
.v-prv-hero-glow--purple { width: 360px; height: 360px; background: #7C3AED; bottom: -80px; right: -60px; }
.v-prv-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}
.v-prv-hero-title span {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-prv-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.v-prv-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}
.v-prv-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
}
.v-prv-last-updated {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

/* ── Trust Banner ─────────────────────────────────────────────── */
.v-prv-trust-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 14px;
    padding: 20px 24px;
}
.v-prv-trust-icon {
    color: #2563EB;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.v-prv-trust-text {
    margin: 0;
    color: #1e3a5f;
    font-size: 15px;
    line-height: 1.7;
}

/* ── Layout ───────────────────────────────────────────────────── */
.v-prv-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Sidebar ──────────────────────────────────────────────────── */
.v-prv-sidebar {
    position: sticky;
    top: 90px;
}
.v-prv-sidebar-inner {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    padding: 24px 20px;
}
.v-prv-sidebar-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--v-text-secondary);
    margin-bottom: 14px;
}
.v-prv-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v-prv-nav-link {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.v-prv-nav-link:hover,
.v-prv-nav-link.is-active {
    background: #EFF6FF;
    color: var(--v-primary);
}

/* ── Content Blocks ───────────────────────────────────────────── */
.v-prv-block {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 24px;
    scroll-margin-top: 90px;
}
.v-prv-block--light {
    background: var(--v-light-bg);
}
.v-prv-block-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.v-prv-block-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 22px;
}

/* ── Data Cards ───────────────────────────────────────────────── */
.v-prv-data-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.v-prv-data-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
    border-radius: 14px;
    padding: 18px 20px;
}
.v-prv-data-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--v-primary);
}
.v-prv-data-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.v-prv-data-desc {
    margin: 0;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
}

/* ── List ─────────────────────────────────────────────────────── */
.v-prv-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v-prv-list li {
    font-size: 15px;
    color: #334155;
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.v-prv-list li i { flex-shrink: 0; margin-top: 3px; }

/* ── Cookie Grid ──────────────────────────────────────────────── */
.v-prv-cookie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.v-prv-cookie-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 12px;
    padding: 16px 18px;
}
.v-prv-cookie-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.v-prv-cookie-desc {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ── Security Badges ──────────────────────────────────────────── */
.v-prv-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.v-prv-sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #166534;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
}

/* ── Note ─────────────────────────────────────────────────────── */
.v-prv-note {
    background: #F8FAFC;
    border: 1px solid var(--v-border);
    border-left: 3px solid var(--v-primary);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

/* ── Rights Grid ──────────────────────────────────────────────── */
.v-prv-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.v-prv-right-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-top: 3px solid var(--v-primary);
    border-radius: 12px;
    padding: 18px 20px;
}
.v-prv-right-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.v-prv-right-desc {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ── Update Date ──────────────────────────────────────────────── */
.v-prv-update-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1e40af;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 100px;
    margin-top: 10px;
}

/* ── Contact Grid ─────────────────────────────────────────────── */
.v-prv-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.v-prv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
    border-radius: 14px;
    padding: 18px 20px;
}
.v-prv-contact-item > i {
    font-size: 1.25rem;
    color: var(--v-primary);
    flex-shrink: 0;
    margin-top: 3px;
}
.v-prv-contact-item > div strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.v-prv-contact-item > div a {
    font-size: 14px;
    color: var(--v-primary);
    font-weight: 500;
    text-decoration: none;
}
.v-prv-contact-item > div a:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .v-prv-layout { grid-template-columns: 210px 1fr; gap: 32px; }
    .v-prv-block { padding: 28px 30px; }
}
@media (max-width: 991.98px) {
    .v-prv-layout { grid-template-columns: 1fr; }
    .v-prv-sidebar { position: static; }
    .v-prv-sidebar-inner {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 16px;
        scrollbar-width: none;
        border-radius: 12px;
    }
    .v-prv-sidebar-label { display: none; }
    .v-prv-nav { flex-direction: row; gap: 6px; flex-wrap: nowrap; }
    .v-prv-nav-link { white-space: nowrap; font-size: 13px; }
    .v-prv-cookie-grid,
    .v-prv-rights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .v-prv-hero { padding: 80px 0 56px; }
    .v-prv-trust-pills { gap: 8px; }
    .v-prv-trust-pill { font-size: 12px; padding: 6px 12px; }
    .v-prv-block { padding: 22px 20px; border-radius: 16px; }
    .v-prv-security-badges { gap: 8px; }
    .v-prv-data-card { flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 31 — TERMS OF USE PAGE
═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.v-trm-hero {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #141B2D 60%, #0D1117 100%);
    padding: 100px 0 72px;
    overflow: hidden;
}
.v-trm-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .16;
    pointer-events: none;
}
.v-trm-hero-glow--blue { width: 440px; height: 440px; background: #2563EB; top: -100px; left: -60px; }
.v-trm-hero-glow--cyan { width: 280px; height: 280px; background: #0EA5E9; bottom: -60px; right: -40px; }
.v-trm-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}
.v-trm-hero-title span {
    background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-trm-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.v-trm-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}
.v-trm-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
}
.v-trm-last-updated { font-size: 13px; color: rgba(255,255,255,.5); }

/* ── Info Banner ──────────────────────────────────────────────── */
.v-trm-trust-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 14px;
    padding: 20px 24px;
}
.v-trm-trust-icon { color: #2563EB; font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.v-trm-trust-text { margin: 0; color: #1e3a5f; font-size: 15px; line-height: 1.7; }

/* ── Layout ───────────────────────────────────────────────────── */
.v-trm-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }

/* ── Sidebar ──────────────────────────────────────────────────── */
.v-trm-sidebar { position: sticky; top: 90px; }
.v-trm-sidebar-inner {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    padding: 24px 20px;
}
.v-trm-sidebar-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--v-text-secondary);
    margin-bottom: 14px;
}
.v-trm-nav { display: flex; flex-direction: column; gap: 2px; }
.v-trm-nav-link {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background .15s, color .15s;
}
.v-trm-nav-link:hover,
.v-trm-nav-link.is-active { background: #EFF6FF; color: var(--v-primary); }

/* ── Content Blocks ───────────────────────────────────────────── */
.v-trm-content { min-width: 0; }
.v-trm-block {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 24px;
    scroll-margin-top: 90px;
}
.v-trm-block--light { background: var(--v-light-bg); }
.v-trm-block--warning {
    background: #FFF5F5;
    border-color: #FCA5A5;
    border-left: 4px solid #EF4444;
}
.v-trm-block--caution {
    background: #FFFBEB;
    border-color: #FDE68A;
    border-left: 4px solid #F59E0B;
}
.v-trm-block-title { font-size: 1.2rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.v-trm-block--warning .v-trm-block-title { color: #B91C1C; }
.v-trm-block--caution .v-trm-block-title { color: #92400E; }
.v-trm-block-desc { font-size: 15px; color: #475569; line-height: 1.75; margin-bottom: 22px; }

/* ── List ─────────────────────────────────────────────────────── */
.v-trm-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.v-trm-list li {
    font-size: 15px;
    color: #334155;
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.v-trm-list li i { flex-shrink: 0; margin-top: 3px; }

/* ── Note ─────────────────────────────────────────────────────── */
.v-trm-note {
    background: #F8FAFC;
    border: 1px solid var(--v-border);
    border-left: 3px solid var(--v-primary);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}
.v-trm-note--warning {
    background: #FFF5F5;
    border-color: #FCA5A5;
    border-left-color: #EF4444;
    color: #B91C1C;
}

/* ── Update Date ──────────────────────────────────────────────── */
.v-trm-update-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1e40af;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 100px;
    margin-top: 10px;
}

/* ── Contact Grid ─────────────────────────────────────────────── */
.v-trm-contact-grid { display: flex; flex-direction: column; gap: 14px; }
.v-trm-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
    border-radius: 14px;
    padding: 18px 20px;
}
.v-trm-contact-item > i { font-size: 1.25rem; color: var(--v-primary); flex-shrink: 0; margin-top: 3px; }
.v-trm-contact-item > div strong { display: block; font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.v-trm-contact-item > div a { font-size: 14px; color: var(--v-primary); font-weight: 500; text-decoration: none; }
.v-trm-contact-item > div a:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .v-trm-layout { grid-template-columns: 210px 1fr; gap: 32px; }
    .v-trm-block { padding: 28px 30px; }
}
@media (max-width: 991.98px) {
    .v-trm-layout { grid-template-columns: 1fr; }
    .v-trm-sidebar { position: static; }
    .v-trm-sidebar-inner {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 16px;
        scrollbar-width: none;
        border-radius: 12px;
    }
    .v-trm-sidebar-label { display: none; }
    .v-trm-nav { flex-direction: row; gap: 6px; flex-wrap: nowrap; }
    .v-trm-nav-link { white-space: nowrap; font-size: 13px; }
}
@media (max-width: 767.98px) {
    .v-trm-hero { padding: 80px 0 56px; }
    .v-trm-trust-pills { gap: 8px; }
    .v-trm-trust-pill { font-size: 12px; padding: 6px 12px; }
    .v-trm-block { padding: 22px 20px; border-radius: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 32 — HOW IT WORKS PAGE
═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.v-hiw-hero {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1B2032 60%, #0D1117 100%);
    padding: 110px 0 80px;
    overflow: hidden;
}
.v-hiw-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .18;
    pointer-events: none;
}
.v-hiw-hero-glow--blue   { width: 520px; height: 520px; background: #2563EB; top: -140px; left: -80px; }
.v-hiw-hero-glow--purple { width: 380px; height: 380px; background: #7C3AED; bottom: -80px; right: -60px; }

.v-hiw-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}
.v-hiw-hero-title span {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-hiw-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}
.v-hiw-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Hero Stats ───────────────────────────────────────────────── */
.v-hiw-hero-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.v-hiw-stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.v-hiw-stat-val { font-size: 1.5rem; font-weight: 800; color: #fff; }
.v-hiw-stat-lbl { font-size: 11.5px; color: rgba(255,255,255,.55); line-height: 1.4; }

/* ── Hero UI Mockup ───────────────────────────────────────────── */
.v-hiw-hero-ui {
    background: #1E2940;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.v-hiw-ui-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #161F35;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.v-hiw-ui-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: inline-block;
}
.v-hiw-ui-url {
    font-size: 11px;
    color: rgba(255,255,255,.35);
    margin-left: 8px;
}
.v-hiw-ui-body { display: flex; height: 220px; }
.v-hiw-ui-sidebar {
    width: 44px;
    background: #161F35;
    border-right: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 14px;
    flex-shrink: 0;
}
.v-hiw-ui-nav-item {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: 13px;
}
.v-hiw-ui-main { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.v-hiw-ui-topbar { display: flex; gap: 8px; }
.v-hiw-ui-metric {
    flex: 1;
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v-hiw-ui-metric.is-blue   { background: rgba(37,99,235,.2); }
.v-hiw-ui-metric.is-green  { background: rgba(34,197,94,.2); }
.v-hiw-ui-metric.is-purple { background: rgba(124,58,237,.2); }
.v-hiw-ui-metric-lbl { font-size: 9px; color: rgba(255,255,255,.45); }
.v-hiw-ui-metric-val { font-size: 14px; font-weight: 700; color: #fff; }
.v-hiw-ui-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 52px;
    flex-shrink: 0;
}
.v-hiw-ui-bar-item {
    flex: 1;
    background: linear-gradient(to top, #2563EB, #60A5FA);
    border-radius: 3px 3px 0 0;
    opacity: .75;
}
.v-hiw-ui-rows { display: flex; flex-direction: column; gap: 4px; }
.v-hiw-ui-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.04);
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 10px;
    color: rgba(255,255,255,.6);
}
.v-hiw-ui-row-label { flex: 1; }
.v-hiw-ui-row-status { font-size: 9px; color: rgba(255,255,255,.4); }

/* ── Section Titles (light sections) ─────────────────────────── */
.v-hiw-section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
}
.v-hiw-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.v-hiw-section-text {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}
/* dark sections */
.v-hiw-section-title-dark {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}
.v-hiw-section-subtitle-dark {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Intro (Section 2) ────────────────────────────────────────── */
.v-hiw-intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.v-hiw-intro-pill {
    display: inline-flex;
    align-items: center;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1e40af;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
}
.v-hiw-intro-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}
.v-hiw-intro-card {
    background: var(--v-light-bg);
    border: 1px solid var(--v-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.v-hiw-intro-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.v-hiw-intro-card strong { font-size: 14px; color: #0f172a; }
.v-hiw-intro-card p { margin: 0; font-size: 13px; color: #64748b; line-height: 1.55; }

/* ── Timeline (Section 3) ─────────────────────────────────────── */
.v-hiw-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.v-hiw-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2563EB, #7C3AED);
    transform: translateX(-50%);
    opacity: .3;
}
.v-hiw-timeline-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    min-height: 160px;
    position: relative;
}
.v-hiw-timeline-row .v-hiw-timeline-content { padding: 24px 32px 24px 0; text-align: right; }
.v-hiw-timeline-row.is-even .v-hiw-timeline-content {
    grid-column: 3;
    grid-row: 1;
    padding: 24px 0 24px 32px;
    text-align: left;
}
.v-hiw-timeline-row.is-even .v-hiw-timeline-node { grid-column: 2; grid-row: 1; }
.v-hiw-timeline-row.is-even .v-hiw-timeline-spacer { grid-column: 1; grid-row: 1; }

.v-hiw-timeline-node {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.v-hiw-node-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(37,99,235,.15);
}
.v-hiw-step-num {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--v-primary);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.v-hiw-step-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}
.v-hiw-step-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}
.v-hiw-step-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.v-hiw-timeline-row.is-even .v-hiw-step-tags { justify-content: flex-start; }
.v-hiw-step-tag {
    background: #EFF6FF;
    color: #1e40af;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid #BFDBFE;
}

/* ── Module Flow (Section 4) ─────────────────────────────────── */
.v-hiw-flow-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.v-hiw-flow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.v-hiw-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.v-hiw-flow-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(37,99,235,.18);
    border: 1px solid rgba(37,99,235,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #60A5FA;
    transition: transform .2s, background .2s;
}
.v-hiw-flow-icon:hover { transform: translateY(-4px); background: rgba(37,99,235,.28); }
.v-hiw-flow-icon--alt {
    background: rgba(124,58,237,.18);
    border-color: rgba(124,58,237,.3);
    color: #A78BFA;
}
.v-hiw-flow-icon--alt:hover { background: rgba(124,58,237,.28); }
.v-hiw-flow-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); }
.v-hiw-flow-arrow { font-size: 1.5rem; color: rgba(255,255,255,.25); }
.v-hiw-flow-arrow--alt { color: rgba(167,139,250,.35); }
.v-hiw-flow-or {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.3);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
}
.v-hiw-flow-note {
    margin-top: 20px;
    background: rgba(37,99,235,.12);
    border: 1px solid rgba(37,99,235,.25);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── e-Fatura (Section 5) ─────────────────────────────────────── */
.v-hiw-ef-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 28px;
}
.v-hiw-ef-step {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.v-hiw-ef-step:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.v-hiw-ef-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.v-hiw-ef-icon { font-size: 1.6rem; }
.v-hiw-ef-title { font-size: 14px; font-weight: 700; color: #0f172a; }
.v-hiw-ef-desc { margin: 0; font-size: 12.5px; color: #64748b; line-height: 1.55; }
.v-hiw-ef-connector {
    font-size: 2rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    padding: 0 4px;
    margin-top: -20px;
}
.v-hiw-ef-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.v-hiw-ef-hl {
    display: inline-flex;
    align-items: center;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1e40af;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
}

/* ── Dashboard Grid (Section 6) ───────────────────────────────── */
.v-hiw-dash-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.v-hiw-dash-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .2s, box-shadow .2s;
}
.v-hiw-dash-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.v-hiw-dash-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--v-primary);
}
.v-hiw-dash-title { font-size: 14.5px; font-weight: 700; color: #0f172a; }
.v-hiw-dash-desc { margin: 0; font-size: 13px; color: #64748b; line-height: 1.6; }

/* ── Cloud Grid (Section 7) ───────────────────────────────────── */
.v-hiw-cloud-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}
.v-hiw-cloud-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background .2s;
}
.v-hiw-cloud-card:hover { background: rgba(255,255,255,.1); }
.v-hiw-cloud-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(37,99,235,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: #60A5FA;
}
.v-hiw-cloud-title { font-size: 14px; font-weight: 700; color: #fff; }
.v-hiw-cloud-desc { margin: 0; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── Trust Visual (Section 8) ─────────────────────────────────── */
.v-hiw-trust-visual { display: flex; align-items: center; justify-content: center; }
.v-hiw-trust-badge-lg {
    background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
    border: 1px solid #BFDBFE;
    border-radius: 24px;
    padding: 40px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 320px;
}
.v-hiw-trust-badge-lg > i { font-size: 3rem; color: #2563EB; }
.v-hiw-trust-badge-lg > strong { font-size: 1.1rem; color: #0f172a; }
.v-hiw-trust-badge-lg > span { font-size: 12px; color: #64748b; line-height: 1.6; }

/* ── Mini FAQ (Section 9) ─────────────────────────────────────── */
.v-hiw-faq-accordion .v-accordion-btn {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 0;
    background: transparent;
    box-shadow: none;
}
.v-hiw-faq-accordion .v-accordion-btn:not(.collapsed) { color: var(--v-primary); }
.v-hiw-faq-accordion .v-accordion-btn::after { filter: none; opacity: .65; }
.v-hiw-faq-accordion .v-accordion-body {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    padding: 0 0 20px 0;
}
.v-hiw-faq-footer { font-size: 14px; color: var(--v-text-muted); }
.v-hiw-faq-footer a { color: var(--v-primary); font-weight: 600; text-decoration: none; margin-left: 4px; }
.v-hiw-faq-footer a:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .v-hiw-hero { padding: 80px 0 60px; }
    .v-hiw-hero-stats { grid-template-columns: repeat(3,1fr); }
    .v-hiw-timeline::before { left: 24px; }
    .v-hiw-timeline-row,
    .v-hiw-timeline-row.is-even {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto;
    }
    .v-hiw-timeline-row .v-hiw-timeline-content,
    .v-hiw-timeline-row.is-even .v-hiw-timeline-content {
        grid-column: 2; grid-row: 1;
        padding: 20px 0 20px 20px;
        text-align: left;
    }
    .v-hiw-timeline-row .v-hiw-timeline-node,
    .v-hiw-timeline-row.is-even .v-hiw-timeline-node  { grid-column: 1; grid-row: 1; }
    .v-hiw-timeline-row .v-hiw-timeline-spacer,
    .v-hiw-timeline-row.is-even .v-hiw-timeline-spacer { display: none; }
    .v-hiw-step-tags,
    .v-hiw-timeline-row.is-even .v-hiw-step-tags { justify-content: flex-start; }
    .v-hiw-dash-grid { grid-template-columns: repeat(2,1fr); }
    .v-hiw-ef-step { width: 160px; }
}
@media (max-width: 767.98px) {
    .v-hiw-hero-stats { grid-template-columns: 1fr; gap: 10px; }
    .v-hiw-intro-grid  { grid-template-columns: 1fr; }
    .v-hiw-dash-grid   { grid-template-columns: 1fr; }
    .v-hiw-cloud-grid  { grid-template-columns: 1fr; }
    .v-hiw-ef-steps    { flex-direction: column; align-items: center; }
    .v-hiw-ef-connector { transform: rotate(90deg); margin: -8px 0; }
    .v-hiw-flow-row    { gap: 8px; }
    .v-hiw-flow-icon   { width: 50px; height: 50px; font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 33 — BLOG PAGE
═══════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────── */
.v-blog-hero {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1B2032 60%, #0D1117 100%);
    padding: 110px 0 88px;
    overflow: hidden;
}
.v-blog-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .14;
    pointer-events: none;
}
.v-blog-hero-glow--blue   { width: 640px; height: 640px; background: #2563EB; top: -200px; left: -120px; }
.v-blog-hero-glow--purple { width: 420px; height: 420px; background: #7C3AED; bottom: -100px; right: -80px; }

.v-blog-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -.4px;
    margin-bottom: 16px;
}
.v-blog-hero-title span {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-blog-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Search ──────────────────────────────────────────────────────── */
.v-blog-search-wrap {
    position: relative;
    max-width: 520px;
    margin: 0 auto 28px;
}
.v-blog-search-input {
    width: 100%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 14px 18px 14px 50px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color .2s, background .2s;
    backdrop-filter: blur(10px);
}
.v-blog-search-input::placeholder { color: rgba(255,255,255,.38); }
.v-blog-search-input:focus {
    border-color: rgba(37,99,235,.7);
    background: rgba(255,255,255,.12);
}
.v-blog-search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.4);
    font-size: 16px;
    pointer-events: none;
}

/* ── Hero Tag Pills ──────────────────────────────────────────────── */
.v-blog-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.v-blog-hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.v-blog-hero-tag:hover {
    background: rgba(37,99,235,.25);
    border-color: rgba(37,99,235,.5);
    color: #fff;
}

/* ── Section heading (in-section, not hero) ──────────────────────── */
.v-blog-section-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

/* ── Blog Card (base) ────────────────────────────────────────────── */
.v-blog-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}
.v-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

/* ── Card Cover ──────────────────────────────────────────────────── */
.v-blog-card-cover { position: relative; overflow: hidden; }
.v-blog-card-cover-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.45);
    transition: transform .35s ease;
}
.v-blog-card:hover .v-blog-card-cover-inner { transform: scale(1.04); }

/* cover heights by card type */
.v-blog-card--featured .v-blog-card-cover-inner { height: 280px; font-size: 4rem; }
.v-blog-card--small    .v-blog-card-cover-inner { height: 148px; font-size: 2.4rem; }
.v-blog-card--grid     .v-blog-card-cover-inner { height: 175px; font-size: 2.6rem; }

/* ── Card Body ───────────────────────────────────────────────────── */
.v-blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v-blog-card--small .v-blog-card-body { padding: 18px 20px; gap: 8px; }
.v-blog-card--grid  .v-blog-card-body { padding: 20px; gap: 8px; }

/* ── Category Badge ──────────────────────────────────────────────── */
.v-blog-cat-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .05em;
    text-transform: uppercase;
    width: fit-content;
}

/* ── Card Title ──────────────────────────────────────────────────── */
.v-blog-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.45;
    text-decoration: none;
    display: block;
    transition: color .15s;
}
.v-blog-card--small .v-blog-card-title { font-size: .97rem; }
.v-blog-card--grid  .v-blog-card-title { font-size: .93rem; }
.v-blog-card-title:hover { color: var(--v-primary); }

/* ── Card Description ────────────────────────────────────────────── */
.v-blog-card-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.72;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.v-blog-card--featured .v-blog-card-desc { -webkit-line-clamp: 3; }
.v-blog-card--small    .v-blog-card-desc { -webkit-line-clamp: 2; font-size: 13.5px; }
.v-blog-card--grid     .v-blog-card-desc { -webkit-line-clamp: 2; font-size: 13.5px; }

/* ── Card Meta ───────────────────────────────────────────────────── */
.v-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12.5px;
    color: #94a3b8;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.v-blog-card-meta i { font-size: 12px; }

/* ── Featured Grid ───────────────────────────────────────────────── */
.v-blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: stretch;
}
.v-blog-featured-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.v-blog-featured-side .v-blog-card { flex: 1; }

/* ── Category Filter Bar ─────────────────────────────────────────── */
.v-blog-cat-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.v-blog-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--v-border);
    color: #475569;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    text-decoration: none;
}
.v-blog-cat-btn:hover,
.v-blog-cat-btn.active {
    background: var(--v-primary);
    border-color: var(--v-primary);
    color: #fff;
}
.v-blog-cat-btn-count {
    background: rgba(0,0,0,.07);
    border-radius: 100px;
    font-size: 11px;
    padding: 1px 7px;
    font-weight: 700;
}
.v-blog-cat-btn:hover .v-blog-cat-btn-count,
.v-blog-cat-btn.active .v-blog-cat-btn-count {
    background: rgba(255,255,255,.22);
}

/* ── Blog Grid ───────────────────────────────────────────────────── */
.v-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Popular + Newsletter Row ────────────────────────────────────── */
.v-blog-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Popular Posts ───────────────────────────────────────────────── */
.v-blog-popular-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.v-blog-popular-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .15s;
}
.v-blog-popular-item:hover { background: #f8fafc; }
.v-blog-popular-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #e2e8f0;
    min-width: 30px;
    text-align: right;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}
.v-blog-popular-info { flex: 1; min-width: 0; }
.v-blog-popular-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v-blog-popular-meta {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}
.v-blog-popular-meta i { font-size: 11px; }
.v-blog-popular-dot { opacity: .5; }
.v-blog-popular-arrow {
    font-size: 13px;
    color: #cbd5e1;
    flex-shrink: 0;
    transition: transform .15s, color .15s;
}
.v-blog-popular-item:hover .v-blog-popular-arrow {
    transform: translateX(3px);
    color: var(--v-primary);
}

/* ── Newsletter Card ─────────────────────────────────────────────── */
.v-blog-newsletter {
    background: linear-gradient(145deg, #EFF6FF 0%, #EDE9FE 100%);
    border: 1px solid #BFDBFE;
    border-radius: 24px;
    padding: 40px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.v-blog-newsletter-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}
.v-blog-newsletter-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}
.v-blog-newsletter-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    max-width: 320px;
    margin: 0;
}
.v-blog-newsletter-form {
    display: flex;
    width: 100%;
    gap: 8px;
    max-width: 380px;
}
.v-blog-newsletter-input {
    flex: 1;
    background: #fff;
    border: 1.5px solid #BFDBFE;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: border-color .2s;
    min-width: 0;
}
.v-blog-newsletter-input::placeholder { color: #94a3b8; }
.v-blog-newsletter-input:focus { border-color: #2563EB; }
.v-blog-newsletter-btn {
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.v-blog-newsletter-btn:hover { opacity: .87; }
.v-blog-newsletter-note {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .v-blog-featured-grid { grid-template-columns: 1fr 340px; }
    .v-blog-grid          { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
    .v-blog-hero          { padding: 80px 0 64px; }
    .v-blog-featured-grid { grid-template-columns: 1fr; }
    .v-blog-featured-side { flex-direction: row; }
    .v-blog-grid          { grid-template-columns: repeat(2, 1fr); }
    .v-blog-bottom-row    { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .v-blog-grid              { grid-template-columns: 1fr; }
    .v-blog-featured-side     { flex-direction: column; }
    .v-blog-cat-bar           { gap: 6px; }
    .v-blog-newsletter-form   { flex-direction: column; }
    .v-blog-newsletter        { padding: 28px 20px; }
    .v-blog-popular-title     { white-space: normal; }
    .v-blog-card--featured .v-blog-card-cover-inner { height: 220px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 34 — BLOG DETAIL (ARTICLE) PAGE
═══════════════════════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ─────────────────────────────────────────── */
.v-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    z-index: 9999;
    transition: width .08s linear;
    pointer-events: none;
}

/* ── Article Hero ────────────────────────────────────────────────── */
.v-article-hero {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1B2032 55%, #0D1117 100%);
    padding: 100px 0 72px;
    overflow: hidden;
}
.v-article-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .14;
    pointer-events: none;
}
.v-article-hero-glow--blue   { width: 480px; height: 480px; background: #2563EB; top: -160px; left: -80px; }
.v-article-hero-glow--purple { width: 320px; height: 320px; background: #7C3AED; bottom: -80px; right: -60px; }

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.v-article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.v-article-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.v-article-breadcrumb a:hover { color: rgba(255,255,255,.85); }
.v-article-breadcrumb i { font-size: 10px; }
.v-article-breadcrumb span { color: rgba(255,255,255,.75); }

/* ── Category Badge ──────────────────────────────────────────────── */
.v-article-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37,99,235,.22);
    border: 1px solid rgba(37,99,235,.4);
    color: #93C5FD;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ── Hero Title / Desc ───────────────────────────────────────────── */
.v-article-hero-title {
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.24;
    letter-spacing: -.4px;
    margin-bottom: 16px;
}
.v-article-hero-desc {
    font-size: 1.04rem;
    color: rgba(255,255,255,.62);
    line-height: 1.78;
    max-width: 640px;
    margin-bottom: 28px;
}

/* ── Author / Meta ───────────────────────────────────────────────── */
.v-article-meta-author {
    display: flex;
    align-items: center;
    gap: 13px;
}
.v-article-author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    color: rgba(255,255,255,.8);
    flex-shrink: 0;
}
.v-article-author-name {
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    margin-bottom: 4px;
}
.v-article-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: rgba(255,255,255,.48);
    flex-wrap: wrap;
}
.v-article-meta-row i { font-size: 11px; }
.v-article-meta-dot { opacity: .4; }

/* ── Article Outer + Layout ──────────────────────────────────────── */
.v-article-outer {
    background: #fff;
    padding: 56px 0 88px;
}
.v-article-layout-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.v-article-layout {
    display: grid;
    grid-template-columns: 1fr;   /* mobile: single column */
    gap: 0;
    align-items: start;
}
@media (min-width: 1200px) {
    .v-article-layout {
        grid-template-columns: 220px minmax(0,1fr) 52px;
        gap: 0 40px;
    }
}

/* ── TOC Sidebar (desktop) ───────────────────────────────────────── */
.v-article-toc-wrap {
    position: sticky;
    top: 100px;
}
.v-article-toc {
    background: #f8fafc;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    padding: 20px 16px;
}
.v-article-toc-title {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--v-border);
}
.v-article-toc-link {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 500;
    color: #64748b;
    padding: 7px 10px 7px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    margin-bottom: 2px;
    transition: color .15s, background .15s, border-color .15s;
    text-decoration: none;
    line-height: 1.45;
}
.v-article-toc-link:hover,
.v-article-toc-link.active {
    color: #2563EB;
    border-left-color: #2563EB;
    background: #EFF6FF;
    font-weight: 600;
}

/* ── TOC Mobile accordion ────────────────────────────────────────── */
.v-article-toc-mobile {
    margin-bottom: 32px;
    background: #f8fafc;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    overflow: hidden;
}
.v-article-toc-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.v-article-toc-mobile-header .bi-chevron-down {
    font-size: 12px;
    transition: transform .25s ease;
    opacity: .55;
}
.v-article-toc-mobile-header:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}
.v-article-toc-mobile-body {
    padding: 4px 12px 12px;
}
.v-article-toc-mobile-body .v-article-toc-link { font-size: 14px; }

/* ── Cover Visual ────────────────────────────────────────────────── */
.v-article-cover {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    position: relative;
}
.v-article-cover-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 35%, #5b21b6 65%, #4c1d95 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.v-article-cover-icon {
    font-size: 5.5rem;
    color: rgba(255,255,255,.22);
    position: relative;
    z-index: 2;
}
.v-article-cover-decor {
    position: absolute;
    border-radius: 50%;
}
.v-article-cover-decor--1 {
    width: 380px; height: 380px;
    border: 1px solid rgba(255,255,255,.08);
    top: -140px; right: -80px;
}
.v-article-cover-decor--2 {
    width: 200px; height: 200px;
    background: rgba(255,255,255,.04);
    bottom: -70px; left: 40px;
}
.v-article-cover-decor--3 {
    width: 90px; height: 90px;
    background: rgba(255,255,255,.06);
    top: 40px; left: 100px;
    border-radius: 24px;
    transform: rotate(20deg);
}
.v-article-cover-badge {
    position: absolute;
    bottom: 20px;
    right: 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    backdrop-filter: blur(8px);
    z-index: 3;
}

/* ── Article Body ────────────────────────────────────────────────── */
.v-article-body { min-width: 0; }

/* ── Article Body Text (scoped typography) ───────────────────────── */
.v-article-body-text > p {
    font-size: 16.5px;
    color: #334155;
    line-height: 1.88;
    margin-bottom: 24px;
}
.v-article-section {
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #0f172a;
    margin: 48px 0 18px;
    padding-top: 8px;
    line-height: 1.3;
    scroll-margin-top: 110px;
}
.v-article-body-text h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 14px;
    line-height: 1.42;
}
.v-article-body-text strong { color: #0f172a; }
.v-article-body-text a { color: var(--v-primary); text-decoration: underline; text-underline-offset: 3px; }
.v-article-body-text a:hover { color: #1d4ed8; }

/* ── Info Boxes ──────────────────────────────────────────────────── */
.v-article-infobox {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 22px;
    border-radius: 14px;
    margin: 28px 0;
    border-left: 4px solid;
}
.v-article-infobox-icon { flex-shrink: 0; font-size: 1.15rem; margin-top: 2px; }
.v-article-infobox strong { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.v-article-infobox p { font-size: 14.5px; line-height: 1.72; margin: 0; }

/* Info — blue */
.v-article-infobox--info { background: #EFF6FF; border-left-color: #2563EB; }
.v-article-infobox--info .v-article-infobox-icon { color: #2563EB; }
.v-article-infobox--info strong { color: #1e40af; }
.v-article-infobox--info p     { color: #1e3a8a; }

/* Warning — amber */
.v-article-infobox--warning { background: #FFFBEB; border-left-color: #F59E0B; }
.v-article-infobox--warning .v-article-infobox-icon { color: #D97706; }
.v-article-infobox--warning strong { color: #92400e; }
.v-article-infobox--warning p     { color: #78350f; }

/* Tip — green */
.v-article-infobox--tip { background: #ECFDF5; border-left-color: #10B981; }
.v-article-infobox--tip .v-article-infobox-icon { color: #10B981; }
.v-article-infobox--tip strong { color: #065f46; }
.v-article-infobox--tip p     { color: #064e3b; }

/* Veloni — gradient */
.v-article-infobox--veloni {
    background: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%);
    border-left-color: #7C3AED;
}
.v-article-infobox--veloni .v-article-infobox-icon { color: #7C3AED; }
.v-article-infobox--veloni strong { color: #4c1d95; }
.v-article-infobox--veloni p     { color: #4c1d95; }

/* ── Checklist ───────────────────────────────────────────────────── */
.v-article-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.v-article-checklist > li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15.5px;
    color: #334155;
    line-height: 1.72;
}
.v-article-checklist > li:last-child { border-bottom: none; }
.v-article-checklist > li::before {
    content: '\F633';
    font-family: 'Bootstrap Icons';
    color: #10B981;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── Table ───────────────────────────────────────────────────────── */
.v-article-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 14px;
    border: 1px solid var(--v-border);
}
.v-article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    min-width: 480px;
}
.v-article-table thead th {
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 14px 18px;
    text-align: left;
}
.v-article-table thead th:first-child { border-radius: 13px 0 0 0; }
.v-article-table thead th:last-child  { border-radius: 0 13px 0 0; }
.v-article-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.v-article-table tbody tr:last-child td { border-bottom: none; }
.v-article-table tbody tr:nth-child(even) td { background: #f8fafc; }
.v-article-table tbody tr:hover td { background: #f1f5f9; }

/* ── Numbered Steps ──────────────────────────────────────────────── */
.v-article-steps {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.v-article-steps > li {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: flex-start;
}
.v-article-steps > li:last-child { border-bottom: none; }
.v-article-step-num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.v-article-step-content strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.v-article-step-content p {
    margin: 0;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.72;
}

/* ── Inline CTA ──────────────────────────────────────────────────── */
.v-article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
    border: 1px solid #BFDBFE;
    border-radius: 20px;
    padding: 28px 32px;
    margin: 36px 0;
}
.v-article-cta--dark {
    background: linear-gradient(135deg, #1B2032 0%, #0D1117 100%);
    border-color: rgba(255,255,255,.1);
}
.v-article-cta-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.35;
}
.v-article-cta-text p {
    font-size: 14.5px;
    color: #475569;
    margin: 0;
    line-height: 1.65;
}
.v-article-cta--dark .v-article-cta-text strong { color: #fff; }
.v-article-cta--dark .v-article-cta-text p     { color: rgba(255,255,255,.62); }
.v-article-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.v-article-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--v-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity .2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.v-article-cta-btn:hover { opacity: .85; color: #fff; }
.v-article-cta-btn--white {
    background: #fff;
    color: #0f172a;
}
.v-article-cta-btn--white:hover { background: #f8fafc; color: #0f172a; opacity: 1; }
.v-article-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    transition: border-color .2s, color .2s, background .2s;
    white-space: nowrap;
}
.v-article-cta-btn-ghost:hover {
    border-color: rgba(255,255,255,.5);
    color: #fff;
    background: rgba(255,255,255,.07);
}

/* ── Divider ─────────────────────────────────────────────────────── */
.v-article-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 44px 0 28px;
}

/* ── Tags ────────────────────────────────────────────────────────── */
.v-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.v-article-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: background .15s, color .15s, border-color .15s;
}
.v-article-tag:hover {
    background: var(--v-primary);
    color: #fff;
    border-color: var(--v-primary);
}

/* ── Mobile share ────────────────────────────────────────────────── */
.v-article-share-mobile { padding-top: 24px; }
.v-article-share-mobile-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 10px;
}

/* ── Desktop share rail ──────────────────────────────────────────── */
.v-article-share {
    position: sticky;
    top: 100px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}
.v-article-share-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: .12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    margin-bottom: 6px;
    user-select: none;
}
.v-article-share-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: #64748b;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    text-decoration: none;
}
.v-article-share-btn:hover {
    background: var(--v-primary);
    border-color: var(--v-primary);
    color: #fff;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .v-article-hero    { padding: 80px 0 56px; }
    .v-article-cover   { height: 240px; }
    .v-article-cover-icon { font-size: 4rem; }
}
@media (max-width: 767.98px) {
    .v-article-hero    { padding: 76px 0 48px; }
    .v-article-outer   { padding: 36px 0 56px; }
    .v-article-layout-wrap { padding: 0 16px; }
    .v-article-cover   { height: 190px; }
    .v-article-body-text > p { font-size: 15.5px; }
    .v-article-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }
    .v-article-cta-actions { flex-direction: row; flex-wrap: wrap; }
    .v-article-table-wrap { border-radius: 10px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION 35 — MİSYON & VİZYON SAYFASI
═══════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────── */
.v-mission-hero {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1B2032 55%, #0D1117 100%);
    padding: 120px 0 96px;
    overflow: hidden;
}
.v-mission-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .14;
    pointer-events: none;
}
.v-mission-hero-glow--blue   { width: 600px; height: 600px; background: #2563EB; top: -200px; left: -100px; }
.v-mission-hero-glow--purple { width: 400px; height: 400px; background: #7C3AED; bottom: -100px; right: -80px; }

.v-mission-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 30%, rgba(0,0,0,.5) 70%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 30%, rgba(0,0,0,.5) 70%, transparent 100%);
}
.v-mission-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.v-mission-hero-title {
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -.5px;
    margin-bottom: 20px;
}
.v-mission-hero-title span {
    background: linear-gradient(90deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-mission-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.62);
    line-height: 1.78;
    max-width: 580px;
    margin: 0 auto 40px;
}
.v-mission-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 18px 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.v-mission-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.v-mission-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
}
.v-mission-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v-mission-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    white-space: nowrap;
}

/* ── Manifesto ───────────────────────────────────────────────────── */
.v-mission-manifesto {
    padding: 96px 0;
    background: #fff;
}
.v-mission-manifesto-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-top: 16px;
}
.v-mission-manifesto-inner::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11rem;
    line-height: 1;
    color: #cbd5e1;
    opacity: .35;
    font-style: normal;
    font-family: Georgia, serif;
    pointer-events: none;
    z-index: 0;
}
.v-mission-manifesto-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.v-mission-manifesto-text {
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    font-weight: 700;
    font-style: italic;
    color: #0f172a;
    line-height: 1.68;
    margin: 0 0 24px;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1;
}
.v-mission-manifesto-author {
    font-size: 14px;
    color: #94a3b8;
    font-style: normal;
}

/* ── Split Layout (Mission + UX sections) ────────────────────────── */
.v-mission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.v-mission-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.82;
}

/* ── Mission Checklist ───────────────────────────────────────────── */
.v-mission-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v-mission-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15.5px;
    color: #334155;
    font-weight: 500;
}
.v-mission-check-icon {
    color: #10B981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── Mission Card (decorative) ───────────────────────────────────── */
.v-mission-card {
    position: relative;
    background: linear-gradient(135deg, #1B2032 0%, #0D1117 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 44px 36px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.v-mission-card-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    background: rgba(37,99,235,.22);
    border: 1px solid rgba(37,99,235,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: #60A5FA;
    margin: 0 auto 20px;
    position: relative; z-index: 1;
}
.v-mission-card-badge {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255,255,255,.4);
    margin-bottom: 8px;
    position: relative; z-index: 1;
}
.v-mission-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative; z-index: 1;
    color: rgba(255,255,255,.9);
}
.v-mission-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative; z-index: 1;
}
.v-mission-card-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.68);
    background: rgba(255,255,255,.05);
    padding: 9px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.07);
}
.v-mission-card-feature i { color: #34D399; flex-shrink: 0; }
.v-mission-card-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.v-mission-card-decor--1 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
    top: -70px; right: -70px;
}
.v-mission-card-decor--2 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
    bottom: -50px; left: -50px;
}

/* ── Vision Section ──────────────────────────────────────────────── */
.v-mission-vision-section {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1B2032 55%, #0D1117 100%);
    padding: 96px 0;
    overflow: hidden;
}
.v-mission-vision-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    pointer-events: none;
}
.v-mission-vision-glow--blue   { width: 500px; height: 500px; background: #2563EB; top: -150px; right: -100px; }
.v-mission-vision-glow--purple { width: 300px; height: 300px; background: #7C3AED; bottom: -100px; left: -50px; }

.v-vision-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}
.v-vision-visual-inner {
    position: relative;
    width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
}
.v-vision-visual-icon {
    font-size: 4.5rem;
    color: rgba(255,255,255,.68);
    position: relative; z-index: 2;
}
.v-vision-visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    animation: visionRingPulse 3.5s ease-in-out infinite;
}
.v-vision-visual-ring--1 { width: 100%;  height: 100%;  animation-delay: 0s;   }
.v-vision-visual-ring--2 { width: 145%;  height: 145%;  top: -22.5%; left: -22.5%; animation-delay: .6s; opacity: .7; }
.v-vision-visual-ring--3 { width: 190%;  height: 190%;  top: -45%;   left: -45%;   animation-delay: 1.2s; opacity: .35; }

@keyframes visionRingPulse {
    0%, 100% { transform: scale(1);    opacity: .5; }
    50%       { transform: scale(1.06); opacity: 1;  }
}

.v-mission-vision-desc {
    font-size: 16px;
    color: rgba(255,255,255,.58);
    line-height: 1.82;
}
.v-vision-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.v-vision-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.v-vision-item-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    flex-shrink: 0;
    margin-top: 7px;
}
.v-vision-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.v-vision-item-desc {
    font-size: 14px;
    color: rgba(255,255,255,.48);
    margin: 0;
    line-height: 1.68;
}

/* ── Core Values Grid ────────────────────────────────────────────── */
.v-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.v-value-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.v-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.09);
    border-color: #CBD5E1;
}
.v-value-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.v-value-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.v-value-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.72;
    margin: 0;
}

/* ── UX Mockup Visual ────────────────────────────────────────────── */
.v-ux-visual-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,.1);
    overflow: hidden;
    max-width: 400px;
}
.v-ux-visual-header {
    background: #f8fafc;
    border-bottom: 1px solid var(--v-border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.v-ux-visual-dots { display: flex; gap: 6px; }
.v-ux-visual-dots span {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: #e2e8f0;
}
.v-ux-visual-dots span:nth-child(1) { background: #EF4444; }
.v-ux-visual-dots span:nth-child(2) { background: #F59E0B; }
.v-ux-visual-dots span:nth-child(3) { background: #10B981; }
.v-ux-visual-title-bar {
    font-size: 12px;
    color: #94a3b8;
    font-family: monospace;
    flex: 1;
    text-align: center;
}
.v-ux-visual-body { padding: 20px 18px; }
.v-ux-visual-row {
    height: 11px;
    background: #e2e8f0;
    border-radius: 6px;
    margin-bottom: 10px;
    width: 100%;
}
.v-ux-visual-row--med   { width: 72%; }
.v-ux-visual-row--short { width: 48%; }
.v-ux-visual-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin: 16px 0 14px;
    padding: 0 2px;
}
.v-ux-visual-bar {
    flex: 1;
    background: linear-gradient(180deg, #60A5FA, #2563EB);
    border-radius: 4px 4px 0 0;
    min-height: 10%;
}
.v-ux-visual-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ECFDF5;
    color: #065f46;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid #A7F3D0;
}
.v-ux-visual-pill i { color: #10B981; }

/* ── UX Feature List ─────────────────────────────────────────────── */
.v-ux-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.v-ux-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.v-ux-item-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.v-ux-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.v-ux-item-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.68;
}

/* ── Technology Section ──────────────────────────────────────────── */
.v-mission-tech-section {
    position: relative;
    background: linear-gradient(135deg, #0D1117 0%, #1B2032 55%, #0D1117 100%);
    padding: 96px 0;
    overflow: hidden;
}
.v-mission-tech-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .1;
    pointer-events: none;
}
.v-mission-tech-glow--blue   { width: 400px; height: 400px; background: #2563EB; top: -100px; left: -80px; }
.v-mission-tech-glow--purple { width: 300px; height: 300px; background: #7C3AED; bottom: -80px; right: -60px; }
.v-mission-tech-desc {
    font-size: 16px;
    color: rgba(255,255,255,.58);
    line-height: 1.82;
}
.v-tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.v-tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 100px;
    transition: background .2s, border-color .2s, color .2s;
}
.v-tech-chip:hover {
    background: rgba(37,99,235,.2);
    border-color: rgba(37,99,235,.5);
    color: #fff;
}
.v-tech-chip i { font-size: 15px; color: #60A5FA; }

/* ── Timeline (Future Goals) ─────────────────────────────────────── */
.v-timeline {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.v-timeline-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.v-timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-top: 4px;
}
.v-timeline-dot {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
    position: relative; z-index: 1;
}
.v-timeline-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(37,99,235,.25), rgba(124,58,237,.1));
    margin: 4px 0;
}
.v-timeline-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--v-border);
    border-left: 3px solid var(--tl-color, #2563EB);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 16px;
    transition: box-shadow .25s ease, transform .25s ease;
}
.v-timeline-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateX(4px);
}
.v-timeline-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 6px;
}
.v-timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.v-timeline-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.68;
}

/* ── Trust Cards ─────────────────────────────────────────────────── */
.v-trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.v-trust-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.v-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.v-trust-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.v-trust-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.v-trust-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.72;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
    .v-values-grid   { grid-template-columns: repeat(2, 1fr); }
    .v-trust-cards   { grid-template-columns: repeat(2, 1fr); }
    .v-mission-split { gap: 48px; }
}
@media (max-width: 991.98px) {
    .v-mission-hero           { padding: 88px 0 72px; }
    .v-mission-manifesto      { padding: 72px 0; }
    .v-mission-vision-section { padding: 72px 0; }
    .v-mission-tech-section   { padding: 72px 0; }
    .v-mission-split          { grid-template-columns: 1fr; gap: 40px; }
    .v-ux-visual-card         { max-width: 100%; }
    .v-timeline               { max-width: 100%; }
    .v-vision-visual          { padding: 24px; }
}
@media (max-width: 767.98px) {
    .v-mission-hero           { padding: 76px 0 60px; }
    .v-mission-hero-stats     { flex-wrap: wrap; padding: 16px 22px; gap: 16px; }
    .v-mission-stat-sep       { display: none; }
    .v-values-grid            { grid-template-columns: 1fr; gap: 16px; }
    .v-trust-cards            { grid-template-columns: 1fr; gap: 16px; }
    .v-mission-manifesto-text { font-size: 1.2rem; }
    .v-mission-manifesto-inner { padding-top: 36px; }
}
