.vdc-page { font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }
    .vdc-page a { text-decoration: none; }
    .vdc-page ul { list-style: none; padding: 0; margin: 0; }
    .vdc-page h1, .vdc-page h2, .vdc-page h3, .vdc-page h4, .vdc-page p { margin: 0; padding: 0; }

    .vdc-page {
        --ent-bg: #ffffff;
        --ent-dark: #0f172a;
        --ent-blue: #2563eb;
        --ent-text: #475569;
        --ent-border: #e2e8f0;
        --grid-bg: #f8fafc;
        --card-bg: #ffffff;
        --text-dark: #0f172a;
        --text-gray: #64748b;
        --brand-blue: #2563eb;
        --brand-cyan: #06b6d4;
        --border-color: #e2e8f0;
        --vseo-bg: #ffffff;
        --vseo-dark: #0f172a;
        --vseo-blue: #2563eb;
        --vseo-cyan: #06b6d4;
        --vseo-text: #475569;
        --vseo-border: #e2e8f0;
        --feat-bg: #ffffff;
        --feat-card-bg: #f8fafc;
        --feat-dark: #0f172a;
        --feat-blue: #2563eb;
        --feat-cyan: #06b6d4;
        --feat-text: #64748b;
        --feat-border: #e2e8f0;
        --why-bg: #f8fafc;
        --why-card-bg: #ffffff;
        --why-dark: #0f172a;
        --why-blue: #2563eb;
        --why-text: #475569;
        --why-border: #e2e8f0;
        --faq-bg: #f8fafc;
        --faq-white: #ffffff;
        --faq-dark: #0f172a;
        --faq-blue: #2563eb;
        --faq-text: #64748b;
        --faq-border: #e2e8f0;
    }

    .enterprise-hero-section {
        position: relative; padding: 120px 20px;
        background-color: var(--ent-bg); overflow: hidden;
    }
    .eh-container {
        max-width: 1200px; margin: 0 auto;
        display: grid; grid-template-columns: 2fr 1fr;
        gap: 40px; align-items: center;
    }
    .eh-content { display: flex; flex-direction: column; justify-content: center; z-index: 2; }

    .eh-badge {
        font-size: 0.8rem; font-weight: 700; color: var(--ent-blue);
        text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
        display: flex; align-items: center; gap: 10px;
    }
    .eh-badge::before { content: ''; width: 30px; height: 2px; background: var(--ent-blue); }

    .eh-title {
        font-size: 3.5rem; font-weight: 800; color: var(--ent-dark);
        line-height: 1.1; margin-bottom: 25px; letter-spacing: -0.03em;
    }
    .eh-desc {
        font-size: 1.1rem; color: var(--ent-text); line-height: 1.7;
        margin-bottom: 40px; max-width: 600px;
    }

    .eh-actions { display: flex; align-items: center; gap: 20px; }
    .eh-btn-primary {
        background-color: var(--ent-dark); color: #fff; cursor: pointer;
        padding: 16px 36px; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
        transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    }
    .eh-btn-primary:hover { background-color: var(--ent-blue); transform: translateY(-2px); }
    .eh-btn-link {
        color: var(--ent-text); font-weight: 600; font-size: 0.95rem; cursor: pointer;
        display: flex; align-items: center; gap: 8px; transition: 0.2s;
    }
    .eh-btn-link:hover { color: var(--ent-dark); }
    .eh-btn-link i { transition: 0.2s; }
    .eh-btn-link:hover i { transform: translateX(5px); }

    .eh-visual {
        position: relative; display: flex; justify-content: flex-end;
        align-items: center; padding-right: 40px;
    }
    .eh-pool-effect {
        position: absolute; width: 190px; height: 190px;
        background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, rgba(255,255,255,0) 70%);
        border-radius: 50%; z-index: 0; animation: pulsePool 6s infinite ease-in-out; right: 0;
    }
    .eh-orbit-ring {
        position: absolute; width: 160px; height: 160px;
        border: 1px dashed rgba(37, 99, 235, 0.2); border-radius: 50%;
        z-index: 0; animation: rotateRing 20s linear infinite; right: 15px;
    }
    .eh-img {
        position: relative; z-index: 1; width: 100%; max-width: 130px;
        height: auto; display: block; animation: floatImg 5s ease-in-out infinite;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
    }

    @keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    @keyframes pulsePool { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 0.5; } }
    @keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    .vdc-grid-section { padding: 80px 20px; background-color: var(--grid-bg); }
    .vgrid-container { max-width: 1400px; margin: 0 auto; }

    .vgrid-header { text-align: center; margin-bottom: 60px; }
    .vgrid-title {
        font-size: 2.2rem; font-weight: 800; color: var(--text-dark);
        margin-bottom: 10px; letter-spacing: -0.02em;
    }
    .vgrid-title span { color: var(--brand-blue); }
    .vgrid-desc { font-size: 1rem; color: var(--text-gray); }

    .vgrid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 25px; justify-content: center;
    }

    .vgrid-card {
        background: var(--card-bg); border: 1px solid var(--border-color);
        border-radius: 16px; padding: 0; display: flex; flex-direction: column;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative; overflow: hidden;
    }
    .vgrid-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px -5px rgba(37, 99, 235, 0.15);
        border-color: var(--brand-blue); z-index: 2;
    }

    .vgrid-top { padding: 25px 25px 15px 25px; text-align: center; border-bottom: 1px solid var(--grid-bg); }
    .vgrid-name {
        display: block; font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 5px;
    }
    .vgrid-sub {
        font-size: 0.75rem; font-weight: 700; color: var(--brand-blue);
        background: #eff6ff; padding: 4px 12px; border-radius: 20px; display: inline-block;
    }

    .vgrid-specs { padding: 20px 25px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
    .vgrid-row {
        display: flex; justify-content: space-between; align-items: center;
        padding-bottom: 12px; border-bottom: 1px dashed var(--border-color);
    }
    .vgrid-row:last-child { border-bottom: none; padding-bottom: 0; }

    .vgrid-left { display: flex; align-items: center; gap: 10px; }
    .vgrid-icon { color: #94a3b8; font-size: 0.9rem; width: 16px; text-align: center; }
    .vgrid-lbl { font-size: 0.85rem; color: var(--text-gray); font-weight: 500; }
    .vgrid-val { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); text-align: right; }

    .vgrid-bottom {
        padding: 20px 25px 25px 25px; background: #fcfcfc;
        border-top: 1px solid var(--border-color); text-align: center;
    }
    .vgrid-price { margin-bottom: 15px; }
    .vgrid-amount { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.03em; }
    .vgrid-cycle { font-size: 0.8rem; color: var(--text-gray); font-weight: 500; }

    .vgrid-btn {
        display: block; width: 100%; padding: 12px 0; background: var(--text-dark); color: #fff;
        border-radius: 8px; font-weight: 700; font-size: 0.9rem; transition: 0.3s;
    }
    .vgrid-btn:hover { background: var(--brand-blue); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25); }

    .vgrid-card.featured { border: 2px solid var(--brand-blue); transform: scale(1.03); z-index: 2; }
    .vgrid-card.featured::before {
        content: 'EN ÇOK TERCİH EDİLEN'; position: absolute; top: 0; left: 0; width: 100%;
        background: var(--brand-blue); color: #fff; font-size: 0.65rem; font-weight: 800; padding: 4px 0;
        text-align: center; letter-spacing: 1px;
    }
    .vgrid-card.featured .vgrid-top { padding-top: 35px; }

    .vgrid-card.ultimate { border-color: var(--text-dark); }
    .vgrid-card.ultimate .vgrid-sub { background: var(--text-dark); color: #fff; }

    .vdc-seo-section { padding: 100px 20px; background-color: var(--vseo-bg); overflow: hidden; }
    .vseo-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 120px; }

    .vseo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
    .vseo-row.reverse .vseo-visual { order: 1; }
    .vseo-row.reverse .vseo-content { order: 2; }

    .vseo-visual { position: relative; display: flex; justify-content: center; }
    .vseo-img-wrapper {
        position: relative; z-index: 2; padding: 20px; background: #fff;
        border-radius: 24px; border: 1px solid var(--vseo-border);
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08); transition: transform 0.4s ease;
    }
    .vseo-row:hover .vseo-img-wrapper { transform: translateY(-10px); }
    .vseo-img { width: 100%; max-width: 450px; display: block; }
    .vseo-blob {
        position: absolute; width: 350px; height: 350px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(255,255,255,0) 70%);
        top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
    }

    .vseo-content { display: flex; flex-direction: column; }
    .vseo-label {
        font-size: 0.75rem; font-weight: 800; color: var(--vseo-blue);
        text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 15px;
        display: flex; align-items: center; gap: 10px;
    }
    .vseo-label::before { content:''; width: 20px; height: 2px; background: var(--vseo-blue); }
    .vseo-title {
        font-size: 2.2rem; font-weight: 800; color: var(--vseo-dark);
        margin-bottom: 30px; letter-spacing: -0.03em; line-height: 1.2;
    }

    .vseo-tabs {
        display: flex; gap: 15px; margin-bottom: 25px; border-bottom: 2px solid var(--vseo-border); padding-bottom: 10px;
    }
    .vseo-tab-btn {
        background: none; border: none; padding: 0 0 10px 0; font-size: 0.95rem; font-weight: 600;
        color: var(--vseo-text); cursor: pointer; position: relative; transition: 0.3s; font-family: inherit;
    }
    .vseo-tab-btn::after {
        content: ''; position: absolute; bottom: -12px; left: 0; width: 0; height: 2px;
        background: var(--vseo-blue); transition: 0.3s;
    }
    .vseo-tab-btn:hover { color: var(--vseo-blue); }
    .vseo-tab-btn.active { color: var(--vseo-blue); font-weight: 700; }
    .vseo-tab-btn.active::after { width: 100%; }

    .vseo-slider-box { position: relative; min-height: 180px; }
    .vseo-slide {
        position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden;
        transform: translateY(10px); transition: all 0.4s ease-in-out;
    }
    .vseo-slide.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
    .vseo-text { font-size: 1.05rem; color: var(--vseo-text); line-height: 1.7; margin-bottom: 20px; }
    .vseo-text strong { color: var(--vseo-dark); }
    .vseo-text a { color: var(--vseo-blue); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
    .vseo-text a:hover { color: var(--vseo-dark); }

    .vseo-features { margin-top: 10px; display: flex; gap: 20px; }
    .vseo-feat { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--vseo-dark); }
    .vseo-feat i { color: var(--vseo-cyan); }

    .vdc-features-section { padding: 100px 20px; background-color: var(--feat-bg); }
    .vft-container { max-width: 1200px; margin: 0 auto; }
    .vft-header { text-align: center; max-width: 800px; margin: 0 auto 70px auto; }
    .vft-title {
        font-size: 2.4rem; font-weight: 800; color: var(--feat-dark);
        margin-bottom: 15px; letter-spacing: -0.02em;
    }
    .vft-title span { color: var(--feat-blue); }
    .vft-desc { font-size: 1.05rem; color: var(--feat-text); line-height: 1.6; }

    .vft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .vft-card {
        background: var(--feat-card-bg); border: 1px solid var(--feat-border);
        border-radius: 20px; padding: 40px 30px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative; overflow: hidden; z-index: 1;
    }
    .vft-card:hover {
        transform: translateY(-8px); background: #fff;
        box-shadow: 0 20px 50px -10px rgba(37, 99, 235, 0.1); border-color: var(--feat-cyan);
    }

    .vft-icon-box {
        width: 64px; height: 64px; border-radius: 16px;
        background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
        border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--feat-blue);
        margin-bottom: 25px; transition: 0.4s;
    }
    .vft-card:hover .vft-icon-box {
        background: linear-gradient(135deg, var(--feat-blue), var(--feat-cyan)); color: #fff;
        transform: rotate(-5deg) scale(1.1);
    }
    .vft-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--feat-dark); margin-bottom: 15px; }
    .vft-card p { font-size: 0.95rem; color: var(--feat-text); line-height: 1.7; }
    .vft-card::after {
        content: ''; position: absolute; bottom: 0; right: 0; width: 100px; height: 100px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
        border-radius: 100% 0 0 0; z-index: -1; transition: 0.3s;
    }
    .vft-card:hover::after { width: 200px; height: 200px; background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%); }

    .why-netvay-section { padding: 100px 20px; background-color: var(--why-bg); }
    .wny-container { max-width: 1100px; margin: 0 auto; }
    .wny-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
    .wny-title {
        font-size: 2.2rem; font-weight: 800; color: var(--why-dark);
        margin-bottom: 15px; letter-spacing: -0.02em;
    }
    .wny-title span { color: var(--why-blue); }
    .wny-desc { font-size: 1.05rem; color: var(--why-text); line-height: 1.6; }

    .wny-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .wny-item {
        background: var(--why-card-bg); border: 1px solid var(--why-border);
        border-radius: 16px; padding: 25px; display: flex; gap: 20px;
        transition: all 0.3s ease; position: relative; overflow: hidden;
    }
    .wny-item:hover {
        transform: translateY(-5px); box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.1);
        border-color: var(--why-blue);
    }
    .wny-icon {
        width: 45px; height: 45px; background: #eff6ff; color: var(--why-blue);
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-size: 1.1rem; flex-shrink: 0; border: 1px solid rgba(37, 99, 235, 0.1);
    }
    .wny-item:hover .wny-icon { background: var(--why-blue); color: #fff; }
    .wny-content h3 { font-size: 1.1rem; font-weight: 800; color: var(--why-dark); margin-bottom: 8px; }
    .wny-content p { font-size: 0.95rem; color: var(--why-text); line-height: 1.6; }

    .vdc-faq-layout { padding: 100px 20px; background-color: var(--faq-bg); }
    .vfl-container {
        max-width: 1200px; margin: 0 auto;
        display: grid; grid-template-columns: 380px 1fr; gap: 50px; align-items: start;
    }
    .vfl-sidebar {
        background: var(--faq-white); border: 1px solid var(--faq-border);
        border-radius: 20px; padding: 30px; position: sticky; top: 20px;
        box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
    }
    .vfl-contact-title { font-size: 1.1rem; font-weight: 800; color: var(--faq-dark); margin-bottom: 25px; }
    .vfl-contact-list { display: flex; flex-direction: column; gap: 20px; }
    .vfl-contact-item { display: flex; align-items: center; gap: 15px; }
    .vfl-icon-circle {
        width: 45px; height: 45px; background: #eff6ff; color: var(--faq-blue);
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-size: 1.1rem; flex-shrink: 0;
    }
    .vfl-info { display: flex; flex-direction: column; }
    .vfl-label { font-size: 0.7rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; margin-bottom: 2px; }
    .vfl-value { font-size: 0.95rem; font-weight: 700; color: var(--faq-dark); }
    .vfl-support-btn {
        margin-top: 30px; background: var(--faq-dark); color: #fff; width: 100%;
        padding: 15px; border-radius: 12px; font-weight: 700; text-align: center; text-decoration: none;
        display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s;
    }
    .vfl-support-btn:hover { background: var(--faq-blue); transform: translateY(-2px); }

    .vfl-content { display: flex; flex-direction: column; }
    .vfl-main-title {
        font-size: 2.2rem; font-weight: 800; color: var(--faq-dark);
        margin-bottom: 10px; line-height: 1.2;
    }
    .vfl-main-title span { color: var(--faq-blue); }
    .vfl-desc { color: var(--faq-text); font-size: 1.05rem; margin-bottom: 40px; }

    .vfl-acc-item {
        background: var(--faq-white); border: 1px solid var(--faq-border);
        border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease;
    }
    .vfl-acc-item.active { border-color: var(--faq-blue); box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08); }
    .vfl-acc-btn {
        width: 100%; padding: 20px 25px; background: transparent; border: none;
        display: flex; justify-content: space-between; align-items: center;
        text-align: left; font-size: 1rem; font-weight: 700; color: var(--faq-dark);
        cursor: pointer; font-family: inherit; transition: 0.2s; gap: 15px;
    }
    .vfl-acc-item.active .vfl-acc-btn { color: var(--faq-blue); }
    .vfl-acc-icon {
        width: 28px; height: 28px; background: #f1f5f9; color: var(--faq-text);
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-size: 0.8rem; transition: 0.3s; flex-shrink: 0;
    }
    .vfl-acc-item.active .vfl-acc-icon { background: var(--faq-blue); color: #fff; transform: rotate(180deg); }
    .vfl-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding: 0 25px; }
    .vfl-acc-body p { padding-bottom: 25px; margin: 0; color: var(--faq-text); line-height: 1.7; font-size: 0.95rem; }
    .vfl-acc-body a { color: var(--faq-blue); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
    .vfl-acc-body a:hover { color: var(--faq-dark); }

    @media (max-width: 992px) {
        .enterprise-hero-section { padding: 80px 20px; }
        .eh-container { grid-template-columns: 1fr; text-align: left; gap: 60px; }
        .eh-visual { order: 2; justify-content: center; padding-right: 0; }
        .eh-content { order: 1; }
        .eh-img { max-width: 110px; margin: 0 auto; }
        .eh-pool-effect { width: 160px; height: 160px; right: auto; }
        .eh-orbit-ring { width: 140px; height: 140px; right: auto; }
        .eh-title { font-size: 2.8rem; }

        .vgrid-layout { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .vgrid-card.featured { transform: none; }

        .vseo-row, .vseo-row.reverse { grid-template-columns: 1fr; gap: 50px; text-align: left; }
        .vseo-row.reverse .vseo-visual { order: unset; }
        .vseo-img { max-width: 100%; }
        .vseo-slider-box { min-height: auto; }

        .vft-grid { grid-template-columns: repeat(2, 1fr); }

        .wny-grid { grid-template-columns: 1fr; }

        .vfl-container { grid-template-columns: 1fr; }
        .vfl-sidebar { position: relative; top: 0; order: 2; }
        .vfl-content { order: 1; }
    }
    @media (max-width: 600px) {
        .vft-grid { grid-template-columns: 1fr; }
        .vft-title { font-size: 2rem; }
    }