Ford / Mazda VNCI VCM 3 Arıza Tespit Cihazı
VNCI VCM 3 Ford-Mazda Arıza Tespit Cihazı
/* VNCI ürün kapağı için izole edilmiş stil - Optimize edilmiş */
.vnci-product-section {
isolation: isolate;
all: initial;
font-family: 'Outfit', sans-serif;
color: #333;
display: block;
width: 100%;
box-sizing: border-box;
}
.vnci-product-section *,
.vnci-product-section *::before,
.vnci-product-section *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.vnci-product-cover {
position: relative;
width: 100%;
min-height: 100vh;
overflow: hidden;
background: #f0f4f8; /* Daha açık mavi tonu arka plan */
}
.vnci-container {
max-width: 1400px;
margin: 0 auto;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.vnci-content-wrapper {
flex: 1;
display: flex;
align-items: center;
position: relative;
z-index: 3;
padding: 0 15px;
}
.vnci-left-content {
flex: 1;
padding: 60px 40px;
}
.vnci-product-category {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 3px;
color: #0078D4; /* Mavi tonu */
font-weight: 500;
margin-bottom: 20px;
font-family: 'Outfit', sans-serif;
}
.vnci-product-name {
font-size: 56px;
line-height: 1.1;
margin-bottom: 20px;
color: #1A2B32; /* Mavi koyu gri/siyah */
font-weight: 700;
font-family: 'Outfit', sans-serif;
}
.vnci-product-tagline {
font-size: 16px;
font-weight: 400;
color: #2c3036; /* Gri */
margin-bottom: 40px;
line-height: 1.7;
max-width: 550px;
font-family: 'Outfit', sans-serif;
}
.vnci-product-tagline strong {
color: #005A9E; /* Koyu mavi */
font-weight: 600;
font-family: 'Outfit', sans-serif;
}
.vnci-features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.vnci-feature-box {
display: flex;
align-items: flex-start;
}
.vnci-feature-icon {
min-width: 40px;
height: 40px;
border-radius: 50%;
background: #E6F3FC; /* Açık mavi arka plan */
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.vnci-feature-icon i {
font-size: 18px;
color: #0078D4; /* Mavi */
}
.vnci-feature-text {
flex: 1;
}
.vnci-feature-title {
font-weight: 600;
font-size: 14px;
margin-bottom: 5px;
color: #1A2B32; /* Koyu gri/siyah */
font-family: 'Outfit', sans-serif;
}
.vnci-feature-desc {
font-size: 13px;
color: #2c3036; /* Gri */
font-weight: 400;
line-height: 1.5;
font-family: 'Outfit', sans-serif;
}
.vnci-right-content {
flex: 1;
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
}
.vnci-product-display {
position: relative;
width: 100%;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.vnci-display-card {
width: 85%;
height: 80%;
background: white;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.08);
overflow: hidden;
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
margin-bottom: 20px;
}
.vnci-display-wrapper {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
/* Gallery Stilleri - Optimize edilmiş */
.vnci-gallery {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.vnci-gallery-item {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease;
pointer-events: none;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
will-change: opacity; /* Performans optimize */
}
.vnci-gallery-item.active {
opacity: 1;
visibility: visible;
pointer-events: auto;
z-index: 5;
}
.vnci-gallery-image {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
border-radius: 20px;
}
.vnci-view-360-badge {
position: absolute;
top: 20px;
right: 20px;
background: rgba(0, 120, 212, 0.9);
color: white;
font-size: 13px;
font-weight: 600;
padding: 8px 15px;
border-radius: 30px;
display: flex;
align-items: center;
z-index: 10;
box-shadow: 0 4px 15px rgba(0, 120, 212, 0.15);
animation: vnciPulse 2s infinite;
font-family: 'Outfit', sans-serif;
pointer-events: none;
}
.vnci-view-360-badge i {
font-size: 18px;
margin-right: 8px;
}
@keyframes vnciPulse {
0% {
transform: scale(1);
box-shadow: 0 4px 15px rgba(0, 120, 212, 0.15);
}
50% {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 120, 212, 0.2);
}
100% {
transform: scale(1);
box-shadow: 0 4px 15px rgba(0, 120, 212, 0.15);
}
}
/* Thumbnail Stilleri - Optimize edilmiş */
.vnci-thumbnails {
display: flex;
justify-content: center;
gap: 10px;
width: 85%;
padding: 10px 0;
overflow: hidden;
}
.vnci-thumbnail {
width: 70px;
height: 70px;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
position: relative;
flex-shrink: 0;
border: 2px solid transparent;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.vnci-thumbnail.active {
border-color: #0078D4; /* Mavi */
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.vnci-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Thumbnail scroll */
.vnci-thumbnails-container {
position: relative;
width: 85%;
overflow: hidden;
}
.vnci-thumbnails {
display: flex;
transition: transform 0.3s ease;
width: max-content;
}
/* YENİ EKLENEN ALANLARIN STİLLERİ (ESKİ) */
.vnci-additional-sections {
padding: 80px 15px;
background: #fff;
}
/* Ürün Özellikleri Detay Bölümü */
.vnci-specs-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.vnci-spec-card {
background: #f0f4f8; /* Açık mavi tonu arka plan */
border-radius: 12px;
padding: 25px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vnci-spec-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.vnci-spec-icon {
width: 50px;
height: 50px;
background: #E6F3FC; /* Açık mavi arka plan */
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
margin-bottom: 20px;
}
.vnci-spec-icon i {
font-size: 24px;
color: #0078D4; /* Mavi */
}
.vnci-spec-title {
font-size: 18px;
font-weight: 600;
color: #1A2B32; /* Koyu gri/siyah */
margin-bottom: 12px;
}
.vnci-spec-desc {
font-size: 14px;
line-height: 1.6;
color: #2c3036; /* Gri */
}
/* Neden VNCI VCM 3 Bölümü */
.vnci-why-section {
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.vnci-why-image {
flex: 1;
min-width: 300px;
}
.vnci-why-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.vnci-why-content {
flex: 1;
min-width: 300px;
}
.vnci-why-title {
font-size: 26px;
font-weight: 700;
color: #1A2B32; /* Koyu gri/siyah */
margin-bottom: 20px;
}
.vnci-why-list {
list-style: none;
}
.vnci-why-item {
display: flex;
margin-bottom: 20px;
}
.vnci-why-item-icon {
margin-right: 15px;
width: 24px;
height: 24px;
min-width: 24px;
background: #E6F3FC; /* Açık mavi arka plan */
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.vnci-why-item-icon i {
font-size: 12px;
color: #0078D4; /* Mavi */
}
.vnci-why-item-text h4 {
font-size: 16px;
font-weight: 600;
color: #1A2B32; /* Koyu gri/siyah */
margin-bottom: 5px;
}
.vnci-why-item-text p {
font-size: 14px;
line-height: 1.6;
color: #2c3036; /* Gri */
}
/* Cihaz Genel Özellikleri Bölümü */
.vnci-capabilities-section {
background: #f0f4f8; /* Açık mavi tonu arka plan */
padding: 60px 20px;
border-radius: 15px;
}
.vnci-capabilities-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.vnci-capability-item {
display: flex;
align-items: flex-start;
padding: 15px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
width: 100%;
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
word-wrap: break-word;
}
.vnci-capability-item:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.vnci-capability-icon {
width: 40px;
height: 40px;
min-width: 40px;
background: #E6F3FC; /* Açık mavi arka plan */
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
}
.vnci-capability-icon i {
font-size: 18px;
color: #0078D4; /* Mavi */
}
.vnci-capability-text {
font-size: 14px;
line-height: 1.5;
color: #2c3036; /* Gri */
font-weight: 500;
}
/* Tablet için stil düzenlemeleri */
@media (max-width: 1024px) {
.vnci-content-wrapper {
flex-direction: column-reverse;
padding-top: 0;
}
.vnci-left-content, .vnci-right-content {
padding: 30px;
width: 100%;
}
.vnci-product-name {
font-size: 42px;
}
.vnci-features-grid {
grid-template-columns: repeat(2, 1fr);
}
.vnci-product-display {
height: 450px;
}
.vnci-thumbnails {
width: 95%;
}
/* Yeni eklenen alanların responsive tasarımı */
.vnci-specs-grid {
grid-template-columns: repeat(2, 1fr);
}
.vnci-capabilities-grid {
grid-template-columns: repeat(2, 1fr);
}
}
/* Mobil için stil düzenlemeleri */
@media (max-width: 768px) {
.vnci-features-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.vnci-feature-box {
flex-direction: column;
align-items: center;
}
.vnci-feature-icon {
margin-right: 0;
margin-bottom: 15px;
min-width: 35px;
height: 35px;
}
.vnci-feature-text {
text-align: center;
}
.vnci-left-content, .vnci-right-content {
padding: 25px 15px;
}
.vnci-360-header h2 {
font-size: 2.5rem;
}
.vnci-360-header p {
font-size: 1.1rem;
}
.vnci-360-content h3 {
font-size: 2rem;
}
.vnci-360-highlight {
padding: 1.5rem;
flex-direction: column;
text-align: center;
gap: 1rem;
align-items: center;
}
.vnci-feature-title {
font-size: 13px;
}
.vnci-feature-desc {
font-size: 12px;
}
.vnci-thumbnail {
width: 50px;
height: 50px;
}
.vnci-thumbnails {
gap: 8px;
width: 95%;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
justify-items: center;
}
/* Yeni eklenen alanların responsive tasarımı */
.vnci-specs-grid {
grid-template-columns: 1fr;
}
.vnci-additional-sections {
padding: 50px 15px;
}
.vnci-capabilities-grid {
grid-template-columns: 1fr;
}
.vnci-capabilities-section {
padding: 40px 15px;
}
.vnci-why-section { /* Neden VNCI bölümü için mobil düzenleme */
flex-direction: column;
gap: 20px; /* Daha az boşluk */
}
.vnci-why-image,
.vnci-why-content {
flex: 1 1 100%; /* Tam genişlik almalarını sağlar */
min-width: 0; /* min-width'i sıfırla, taşmayı önler */
}
.vnci-why-title { /* Neden VNCI başlığı için mobil düzenleme */
font-size: 22px;
}
}
/* Küçük ekranlı mobil cihazlar için ek düzenlemeler */
@media (max-width: 480px) {
.vnci-feature-box {
flex-direction: column;
align-items: center;
}
.vnci-feature-icon {
margin-right: 0;
margin-bottom: 15px;
}
.vnci-feature-text {
text-align: center;
}
.vnci-left-content, .vnci-right-content {
padding: 20px 10px; /* Daha da azaltılmış padding */
}
.vnci-product-name {
font-size: 26px; /* Biraz daha küçük */
}
.vnci-product-tagline {
font-size: 14px; /* Biraz daha küçük */
margin-bottom: 20px;
line-height: 1.6;
}
.vnci-product-display {
height: 320px; /* Biraz daha küçük */
}
.vnci-display-card {
width: 95%;
}
.vnci-thumbnail {
width: 45px; /* Biraz daha küçük */
height: 45px; /* Biraz daha küçük */
}
.vnci-additional-sections {
padding: 40px 10px; /* Daha da azaltılmış padding */
}
.vnci-section {
margin: 0 auto 40px; /* Alt boşluğu ve yan boşlukları ayarla */
}
/* .vnci-section-title ve .vnci-section-subtitle için genel küçültmeler */
.vnci-section-title {
font-size: 22px !important;
padding-bottom: 10px; /* Altındaki çizgi için boşluk */
}
.vnci-section-title:after { /* Çizgiyi de küçültelim */
width: 50px;
height: 3px;
}
.vnci-section-subtitle {
font-size: 13px !important;
margin-bottom: 25px;
line-height: 1.5;
}
.vnci-capabilities-section {
padding: 30px 10px; /* Daha da azaltılmış padding */
}
.vnci-capability-text {
font-size: 13px;
}
.vnci-why-title { /* Neden VNCI başlığı için mobil düzenleme */
font-size: 20px;
}
.vnci-why-item-text h4 {
font-size: 14px;
}
.vnci-why-item-text p {
font-size: 13px;
line-height: 1.5;
}
.vnci-spec-title {
font-size: 16px;
}
.vnci-spec-desc {
font-size: 13px;
line-height: 1.5;
}
.vnci-feature-title {
font-size: 12px;
}
.vnci-feature-desc {
font-size: 11px;
}
}
/* YENİ EKLENEN Yazılım Uyumluluğu Bölümü Ultra Modern Stiller */
:root {
--vnci-primary: #0078D4; /* Mavi ana renk */
--vnci-primary-dark: #005A9E; /* Koyu mavi */
--vnci-primary-light: #47A6F0; /* Açık mavi */
--vnci-primary-ultra-light: #E6F3FC; /* Çok açık mavi */
--vnci-text-dark: #1A2B32; /* Koyu gri/siyah */
--vnci-text-medium: #2c3036; /* Gri */
--vnci-text-light: #474c52; /* Açık gri */
--vnci-background: #f0f4f8; /* Açık mavi tonu arka plan */
--vnci-card-bg: #ffffff;
--vnci-shadow: 0 10px 30px rgba(0, 120, 212, 0.08); /* Mavi gölge */
--vnci-shadow-hover: 0 15px 35px rgba(0, 120, 212, 0.15); /* Mavi gölge hover */
--vnci-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vnci-section {
font-family: 'Outfit', sans-serif;
max-width: 1200px;
margin: 0 auto 80px;
padding: 0 15px;
}
.vnci-section:last-child {
margin-bottom: 0;
}
.vnci-section-header {
text-align: center;
margin-bottom: 50px;
}
.vnci-section-title {
font-size: 38px;
font-weight: 800;
color: var(--vnci-text-dark);
margin-bottom: 15px;
text-align: center;
position: relative;
padding-bottom: 20px;
display: block;
width: -moz-fit-content;
width: fit-content;
margin-left: auto;
margin-right: auto;
}
.vnci-section-title:after {
content: '';
position: absolute;
width: 70px;
height: 4px;
background: linear-gradient(90deg, var(--vnci-primary), var(--vnci-primary-light));
bottom: 0;
left: 50%;
transform: translateX(-50%);
border-radius: 4px;
}
.vnci-section-subtitle {
font-size: 17px;
line-height: 1.6;
color: var(--vnci-text-light);
max-width: 800px;
margin: 0 auto 50px;
text-align: center;
}
/* Değiştirilen Kısım: compatibility-container yeni yapısı */
.vnci-compatibility-container {
display: flex;
flex-direction: column;
gap: 30px;
margin-bottom: 50px;
}
.vnci-top-cards { /* Üstteki 2 kart için */
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.vnci-bottom-card { /* Alttaki tek kart için */
width: calc(50% - 15px); /* İki karttan birinin genişliği eksi yarım boşluk */
margin: 0 auto; /* Ortalamak için */
}
.vnci-card {
background: var(--vnci-card-bg);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--vnci-shadow);
transition: var(--vnci-transition);
border: 1px solid rgba(0, 120, 212, 0.05); /* Mavi border */
display: flex;
flex-direction: column;
height: 100%;
}
.vnci-card:hover {
transform: translateY(-6px);
box-shadow: var(--vnci-shadow-hover);
}
.vnci-card-header {
display: flex;
flex-direction: column; /* Stack icon and title vertically */
align-items: center; /* Center items horizontally */
justify-content: center;
padding: 20px 25px;
background: linear-gradient(135deg, var(--vnci-primary-ultra-light), white);
border-bottom: 1px solid rgba(0, 120, 212, 0.1); /* Mavi border */
}
.vnci-letter-badge {
width: 50px;
height: 50px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: 700;
color: white;
margin-right: 0; /* Was 20px, now 0 for stacking */
margin-bottom: 10px; /* Added for spacing */
background: linear-gradient(135deg, var(--vnci-primary), var(--vnci-primary-dark));
box-shadow: 0 5px 15px rgba(0, 120, 212, 0.3); /* Mavi gölge */
position: relative;
overflow: hidden;
transition: var(--vnci-transition);
}
.vnci-letter-badge:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
top: 0;
left: 0;
pointer-events: none;
}
.vnci-card:hover .vnci-letter-badge {
transform: rotate(10deg) scale(1.1);
box-shadow: 0 8px 20px rgba(0, 120, 212, 0.4); /* Mavi gölge */
}
/* Kart başlıkları için özel renkler (isteğe bağlı, genel mavi tema kullanılabilir) */
.vnci-compatibility-container .vnci-top-cards .vnci-card:nth-child(1) .vnci-letter-badge { /* Ford */
background: linear-gradient(135deg, #0078D4, #005A9E); /* Mavi tonları */
}
.vnci-compatibility-container .vnci-top-cards .vnci-card:nth-child(2) .vnci-letter-badge { /* Mazda */
background: linear-gradient(135deg, #0078D4, #005A9E); /* Mavi tonları (veya farklı bir mavi) */
}
.vnci-compatibility-container .vnci-bottom-card .vnci-card .vnci-letter-badge { /* J2534 */
background: linear-gradient(135deg, #0078D4, #005A9E); /* Mavi tonları (veya farklı bir mavi) */
}
.vnci-card-title {
font-size: 20px;
font-weight: 700;
color: var(--vnci-text-dark);
margin: 0;
transition: var(--vnci-transition);
text-align: center; /* Center title text */
}
.vnci-card:hover .vnci-card-title {
color: var(--vnci-primary);
}
.vnci-card-content {
padding: 25px;
display: flex;
flex-direction: column;
flex: 1;
}
.vnci-card-image {
height: 160px;
display: flex;
align-items: center;
justify-content: center;
background: white;
border-radius: 10px;
margin-bottom: 20px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
border: 1px solid rgba(0, 120, 212, 0.03); /* Mavi border */
transition: var(--vnci-transition);
}
.vnci-card:hover .vnci-card-image {
box-shadow: 0 8px 20px rgba(0, 120, 212, 0.08); /* Mavi gölge */
}
.vnci-card-image img {
max-width: 85%;
max-height: 85%;
object-fit: contain;
transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}
.vnci-card:hover .vnci-card-image img {
transform: scale(1.08);
}
.vnci-card-description {
font-size: 14px;
line-height: 1.7;
color: var(--vnci-text-medium);
margin: 0;
flex: 1;
text-align: center; /* Center card description text */
}
.vnci-software-requirements {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
margin-top: 30px;
}
.vnci-requirement-item {
display: flex;
align-items: center;
background: var(--vnci-card-bg);
border-radius: 50px;
padding: 14px 30px;
box-shadow: 0 8px 20px rgba(0, 120, 212, 0.08); /* Mavi gölge */
transition: var(--vnci-transition);
border: 1px solid rgba(0, 120, 212, 0.05); /* Mavi border */
}
.vnci-requirement-item:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0, 120, 212, 0.12); /* Mavi gölge */
background: linear-gradient(135deg, white, var(--vnci-primary-ultra-light));
}
.vnci-requirement-icon {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
color: var(--vnci-primary);
background: linear-gradient(135deg, var(--vnci-primary-ultra-light), white);
border-radius: 50%;
font-size: 16px;
box-shadow: 0 5px 15px rgba(0, 120, 212, 0.1); /* Mavi gölge */
transition: var(--vnci-transition);
border: 1px solid rgba(0, 120, 212, 0.08); /* Mavi border */
}
.vnci-requirement-item:hover .vnci-requirement-icon {
transform: rotate(360deg);
background: var(--vnci-primary);
color: white;
}
.vnci-requirement-item span {
font-size: 15px;
color: var(--vnci-text-medium);
font-weight: 600;
letter-spacing: 0.3px;
}
/* Tablet için YENİ BÖLÜM responsif tasarım */
@media (max-width: 1024px) {
.vnci-top-cards {
grid-template-columns: 1fr; /* Tek sütun */
gap: 25px;
}
.vnci-bottom-card {
width: 100%; /* Tam genişlik */
}
.vnci-card-header {
padding: 18px 22px;
}
.vnci-card-image {
height: 150px;
}
.vnci-section-title {
font-size: 32px !important;
}
}
/* Mobil için YENİ BÖLÜM responsif tasarım */
@media (max-width: 768px) {
.vnci-section {
padding: 0 15px;
}
.vnci-card-content {
padding: 20px;
}
.vnci-letter-badge {
width: 45px;
height: 45px;
font-size: 24px;
margin-right: 0; /* Adjusted for stacking */
margin-bottom: 8px; /* Adjusted for stacking */
}
.vnci-card-title {
font-size: 18px;
}
.vnci-card-image {
height: 140px;
margin-bottom: 18px;
}
.vnci-card-description {
font-size: 13px;
}
.vnci-requirement-item {
padding: 12px 25px;
}
.vnci-requirement-icon {
width: 35px;
height: 35px;
margin-right: 12px;
font-size: 14px;
}
.vnci-requirement-item span {
font-size: 14px;
}
.vnci-section-title {
font-size: 28px !important;
}
.vnci-section-subtitle {
font-size: 15px !important;
}
}
/* Küçük mobil cihazlar için YENİ BÖLÜM ek düzenlemeler */
@media (max-width: 480px) {
.vnci-software-requirements {
flex-direction: column;
align-items: center;
gap: 15px;
}
.vnci-requirement-item {
width: 100%;
justify-content: flex-start;
}
.vnci-section-title {
font-size: 24px !important;
padding-bottom: 15px;
}
.vnci-section-subtitle {
font-size: 14px !important;
}
}
/* SSS Bölümü Stilleri */
.vnci-faq-section {
background-color: var(--vnci-background);
padding-top: 40px;
padding-bottom: 60px;
}
.vnci-faq-container {
max-width: 800px;
margin: 0 auto;
}
.vnci-faq-item {
background-color: var(--vnci-card-bg);
margin-bottom: 15px;
border-radius: 12px;
box-shadow: var(--vnci-shadow);
border: 1px solid rgba(0, 120, 212, 0.05); /* Mavi border */
overflow: hidden;
}
.vnci-faq-question {
background-color: transparent;
border: none;
width: 100%;
text-align: left;
padding: 20px 25px;
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-weight: 600;
color: var(--vnci-text-dark);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s ease;
}
.vnci-faq-question:hover {
background-color: rgba(0, 120, 212, 0.03); /* Mavi hover */
}
.vnci-faq-question span {
flex-grow: 1;
margin-right: 15px;
}
.vnci-faq-question i {
font-size: 14px;
color: var(--vnci-primary);
transition: transform 0.3s ease;
}
.vnci-faq-question.active i {
transform: rotate(180deg);
}
.vnci-faq-answer {
padding: 0px 25px;
font-family: 'Outfit', sans-serif;
font-size: 14px;
line-height: 1.7;
color: var(--vnci-text-medium);
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.vnci-faq-answer p {
margin: 0;
padding-bottom: 20px;
}
.vnci-faq-answer.active {
padding-top: 5px;
padding-bottom: 10px;
max-height: 500px; /* Increased for potentially longer Ford/Mazda answers */
transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}
/* SSS Mobil Uyum */
@media (max-width: 768px) {
.vnci-features-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.vnci-feature-box {
flex-direction: column;
align-items: center;
}
.vnci-feature-icon {
margin-right: 0;
margin-bottom: 15px;
}
.vnci-feature-text {
text-align: center;
}
.vnci-feature-box {
flex-direction: column;
align-items: center;
}
.vnci-feature-icon {
margin-right: 0;
margin-bottom: 15px;
}
.vnci-feature-text {
text-align: center;
}
.vnci-feature-box {
flex-direction: column;
align-items: center;
}
.vnci-feature-icon {
margin-right: 0;
margin-bottom: 15px;
}
.vnci-feature-text {
text-align: center;
}
.vnci-faq-answer {
font-size: 13px;
padding: 0 20px;
}
.vnci-faq-answer.active {
padding-top: 5px;
padding-bottom: 8px;
}
.vnci-faq-answer p {
padding-bottom: 15px;
}
}
@media (max-width: 480px) {
.vnci-faq-question {
font-size: 14px;
padding: 15px;
}
.vnci-faq-answer {
font-size: 12px;
padding: 0 15px;
}
.vnci-faq-answer.active {
padding-top: 5px;
padding-bottom: 5px;
}
.vnci-faq-answer p {
padding-bottom: 10px;
}
}
/* Destek ve İletişim Bölümü Stilleri */
.vnci-support-contact-section {
background-color: var(--vnci-card-bg);
padding-top: 60px;
padding-bottom: 80px;
border-top: 1px solid rgba(0, 120, 212, 0.08); /* Mavi border */
}
.vnci-contact-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}
.vnci-contact-card {
background: white;
border-radius: 16px;
padding: 30px;
text-align: center;
box-shadow: var(--vnci-shadow);
transition: var(--vnci-transition);
border: 1px solid rgba(0, 120, 212, 0.05); /* Mavi border */
}
.vnci-contact-card:hover {
transform: translateY(-6px);
box-shadow: var(--vnci-shadow-hover);
}
.vnci-contact-icon {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--vnci-primary-ultra-light), white);
color: var(--vnci-primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin: 0 auto 20px;
box-shadow: 0 5px 15px rgba(0, 120, 212, 0.1); /* Mavi gölge */
border: 1px solid rgba(0, 120, 212, 0.08); /* Mavi border */
}
.vnci-contact-card:hover .vnci-contact-icon {
background: var(--vnci-primary);
color: white;
}
.vnci-contact-title {
font-size: 18px;
font-weight: 700;
color: var(--vnci-text-dark);
margin-bottom: 10px;
}
.vnci-contact-info {
font-size: 15px;
line-height: 1.6;
color: var(--vnci-text-medium);
}
.vnci-contact-info a {
color: var(--vnci-primary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.vnci-contact-info a:hover {
color: var(--vnci-primary-dark);
text-decoration: underline;
}
/* Destek ve İletişim Mobil Uyum */
@media (max-width: 768px) {
.vnci-contact-container {
grid-template-columns: 1fr;
}
.vnci-contact-card {
padding: 25px;
}
.vnci-contact-title {
font-size: 17px;
}
.vnci-contact-info {
font-size: 14px;
}
}
@media (max-width: 480px) {
.vnci-support-contact-section {
padding-top: 40px;
padding-bottom: 60px;
}
.vnci-contact-card {
padding: 20px;
}
.vnci-contact-icon {
width: 50px;
height: 50px;
font-size: 20px;
}
.vnci-contact-title {
font-size: 16px;
}
.vnci-contact-info {
font-size: 13px;
}
}
.vnci-capabilities-note {
font-size: 13px;
color: var(--vnci-text-light);
text-align: center;
margin-top: 30px;
padding: 0 15px;
font-style: italic;
}
/* VNCI 360° Keşif Bölümü Stilleri */
.vnci-360-experience {
padding: 8rem 0;
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
position: relative;
overflow: hidden;
color: var(--vnci-text-dark);
}
.vnci-360-experience::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 20%, rgba(0, 120, 212, 0.05) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(71, 166, 240, 0.05) 0%, transparent 50%),
radial-gradient(circle at 40% 60%, rgba(0, 120, 212, 0.03) 0%, transparent 50%);
animation: vnci360BackgroundPulse 8s ease-in-out infinite;
}
@keyframes vnci360BackgroundPulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 0.8; }
}
.vnci-360-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 2;
}
.vnci-360-header {
text-align: center;
margin-bottom: 5rem;
animation: vnci360FadeInUp 1s ease-out;
}
@keyframes vnci360FadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.vnci-360-header h2 {
font-size: clamp(2.2rem, 4.4vw, 2.75rem);
font-weight: 900;
margin-bottom: 1.5rem;
color: var(--vnci-text-dark);
letter-spacing: -0.02em;
position: relative;
}
.vnci-360-header h2 .vnci-gradient-text {
background: linear-gradient(135deg, var(--vnci-primary), var(--vnci-primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.vnci-360-header p {
font-size: 1.2375rem;
line-height: 1.7;
color: var(--vnci-text-light);
max-width: 700px;
margin: 0 auto;
font-weight: 400;
}
.vnci-360-main {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
margin-bottom: 6rem;
align-items: center;
}
.vnci-360-player-wrapper {
position: relative;
animation: vnci360SlideInLeft 1s ease-out 0.3s both;
}
@keyframes vnci360SlideInLeft {
from { opacity: 0; transform: translateX(-50px); }
to { opacity: 1; transform: translateX(0); }
}
.vnci-360-player {
position: relative;
width: 100%;
padding-top: 56.25%;
border-radius: 24px;
overflow: hidden;
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.1),
0 20px 60px rgba(0, 0, 0, 0.4),
0 0 100px rgba(0, 120, 212, 0.2);
transition: all 0.4s ease;
}
.vnci-360-player:hover {
transform: scale(1.02);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.2),
0 30px 80px rgba(0, 0, 0, 0.5),
0 0 150px rgba(0, 120, 212, 0.3);
}
.vnci-360-player iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
border-radius: 24px;
}
.vnci-360-badges {
position: absolute;
top: 20px;
left: 20px;
display: flex;
flex-direction: column;
gap: 10px;
z-index: 10;
}
.vnci-360-badge {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
backdrop-filter: blur(10px);
color: #0a0e27;
padding: 0.5rem 1rem;
border-radius: 25px;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
border: 1px solid rgba(255, 255, 255, 0.3);
animation: vnci360BadgeFloat 3s ease-in-out infinite;
}
.vnci-360-badge:nth-child(2) {
animation-delay: 1s;
}
@keyframes vnci360BadgeFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.vnci-360-content {
animation: vnci360SlideInRight 1s ease-out 0.6s both;
}
@keyframes vnci360SlideInRight {
from { opacity: 0; transform: translateX(50px); }
to { opacity: 1; transform: translateX(0); }
}
.vnci-360-content h3 {
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--vnci-text-dark);
text-align: center;
}
.vnci-360-content .vnci-360-intro-text {
font-size: 1.21rem;
line-height: 1.8;
color: var(--vnci-text-light);
margin-bottom: 2rem;
text-align: center;
}
.vnci-360-highlights {
display: grid;
gap: 1.5rem;
margin-bottom: 3rem;
}
.vnci-360-highlight {
display: flex;
align-items: flex-start;
gap: 1.5rem;
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}
.vnci-360-highlight::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.6s ease;
}
.vnci-360-highlight:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateX(10px);
border-color: rgba(0, 120, 212, 0.3);
}
.vnci-360-highlight:hover::before {
left: 100%;
}
.vnci-360-highlight-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--vnci-primary), var(--vnci-primary-light));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
position: relative;
}
.vnci-360-highlight-icon::after {
content: '';
position: absolute;
inset: -2px;
background: linear-gradient(135deg, var(--vnci-primary), var(--vnci-primary-light));
border-radius: 18px;
z-index: -1;
opacity: 0;
transition: opacity 0.3s ease;
}
.vnci-360-highlight:hover .vnci-360-highlight-icon::after {
opacity: 0.5;
animation: vnci360IconGlow 1s ease-in-out infinite alternate;
}
@keyframes vnci360IconGlow {
to { transform: scale(1.1); }
}
.vnci-360-highlight-icon i {
color: white;
font-size: 1.8rem;
}
.vnci-360-highlight-content h4 {
font-size: 1.21rem;
font-weight: 600;
color: var(--vnci-text-dark);
margin-bottom: 0.5rem;
line-height: 1.4;
}
.vnci-360-highlight-content p {
font-size: 0.9625rem;
line-height: 1.5;
color: var(--vnci-text-light);
margin: 0;
}
.vnci-360-features-showcase {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-top: 5rem;
}
.vnci-360-feature-card {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.vnci-360-feature-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(0, 120, 212, 0.1) 0%, transparent 70%);
transform: scale(0);
transition: transform 0.6s ease;
}
.vnci-360-feature-card:hover::before {
transform: scale(1);
}
.vnci-360-feature-card:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-10px);
border-color: rgba(0, 120, 212, 0.3);
}
.vnci-360-feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, rgba(0, 120, 212, 0.2), rgba(71, 166, 240, 0.2));
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
position: relative;
z-index: 1;
}
.vnci-360-feature-icon i {
color: var(--vnci-primary);
font-size: 2rem;
}
.vnci-360-feature-card h4 {
font-size: 1.1rem;
font-weight: 600;
color: var(--vnci-text-dark);
margin-bottom: 1rem;
position: relative;
z-index: 1;
line-height: 1.4;
}
.vnci-360-feature-card p {
font-size: 0.9625rem;
color: var(--vnci-text-light);
line-height: 1.5;
margin: 0;
position: relative;
z-index: 1;
}
.vnci-360-floating-elements {
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}
.vnci-360-floating-element {
position: absolute;
border-radius: 50%;
background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(71, 166, 240, 0.1));
animation: vnci360FloatElement 8s ease-in-out infinite;
}
@keyframes vnci360FloatElement {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-30px) rotate(180deg); }
}
.vnci-360-floating-1 {
width: 120px;
height: 120px;
top: 15%;
left: 8%;
animation-delay: 0s;
}
.vnci-360-floating-2 {
width: 80px;
height: 80px;
top: 70%;
right: 10%;
animation-delay: 2s;
}
.vnci-360-floating-3 {
width: 60px;
height: 60px;
top: 40%;
left: 85%;
animation-delay: 4s;
}
/* VNCI 360° Responsive Design */
@media (max-width: 1024px) {
.vnci-360-main {
grid-template-columns: 1fr;
gap: 3rem;
}
.vnci-360-features-showcase {
grid-template-columns: repeat(2, 1fr);
}
}
/* Mobile centering for hero features */
@media (max-width: 768px) {
.vnci-feature-box {
flex-direction: column;
align-items: center;
}
.vnci-feature-icon {
margin-right: 0;
margin-bottom: 15px;
}
.vnci-feature-text {
text-align: center;
}
}
@media (max-width: 768px) {
.vnci-360-experience {
padding: 4rem 0;
}
.vnci-360-container {
padding: 0 1.5rem;
}
.vnci-360-header h2 {
font-size: 2.5rem;
}
.vnci-360-header p {
font-size: 1.1rem;
}
.vnci-360-content h3 {
font-size: 2rem;
}
.vnci-360-highlight {
padding: 1.5rem;
flex-direction: column;
text-align: center;
gap: 1rem;
align-items: center;
}
.vnci-360-features-showcase {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.vnci-360-feature-card {
padding: 1.5rem;
}
}
@media (max-width: 480px) {
.vnci-360-player {
border-radius: 16px;
}
.vnci-360-badges {
top: 10px;
left: 10px;
right: 10px;
flex-direction: row;
justify-content: space-between;
}
.vnci-360-badge {
font-size: 0.7rem;
padding: 0.4rem 0.8rem;
}
.vnci-360-highlight-icon {
width: 50px;
height: 50px;
}
.vnci-360-highlight-icon i {
font-size: 1.5rem;
}
.vnci-360-feature-icon {
width: 60px;
height: 60px;
border-radius: 15px;
}
.vnci-360-feature-icon i {
font-size: 1.5rem;
}
}
/* Mobile centering for hero features */
@media (max-width: 768px) {
.vnci-feature-box {
flex-direction: column;
align-items: center;
}
.vnci-feature-icon {
margin-right: 0;
margin-bottom: 15px;
}
.vnci-feature-text {
text-align: center;
}
}
VNCI VCM 3
VNCI VCM 3, Ford ve Mazda araçları için (2005-günümüz yeni nesil transitler ve elektrikli araçlar dahil) özel olarak tasarlanmış, orijinal VCM3'ün doğrudan, tak-çalıştır bir alternatifi olan 2'si 1 arada profesyonel bir teşhis arayüzüdür. Ford ve Mazda markalarının elektronik sistemlerini tarayarak kapsamlı tanılama, programlama ve immobilizer eşleştirme işlevleri sunar.
Geniş Araç Kapsamı
2005-günümüz Ford/Mazda, EV ve yeni transitler ile uyumlu.
Modern Protokoller
CAN FD, DoIP ve 4 Kanallı CAN BUS desteği.
OEM Yazılım Uyumu
Ford IDS/FDRS, Mazda IDS/MDARS ile uyumlu.
Gelişmiş Fonksiyonlar
Kapsamlı teşhis, programlama ve immobilizer.
360° Görünüm










VNCI VCM 3: Kapsamlı Yetenekler
VNCI VCM 3, Ford ve Mazda araçlarınız için bayi düzeyinde teşhis, programlama ve özel fonksiyonlar sunar. Modern protokol desteği ile en yeni araçlara dahi hizmet verebilirsiniz.
Arıza Teşhisi (DTC Okuma/Silme)
Modül Flaşlama/Yeniden Programlama (PCM, ABS, IPC vb.)
İmmobilizer Eşleştirme ve Anahtar Programlama
Canlı Veri Akışı Kaydı ve Oynatma
Kılavuzlu Arıza Tespiti
Ekipman Birimlerinin Kodlanması ve Yeni ECU Kurulumu
Hız Sınırlayıcı Ayarlama/Yapılandırma/Sıfırlama
Fren Kanallarının Havasını Alma
Enjektör Kodlama
DPF Restorasyonu/Rejenerasyonu
Otomatik Araç Modeli Tespiti
Direksiyon Açısı Sıfırlamaları
CAN FD & DoIP Protokol Desteği
4 Kanallı CAN BUS Desteği
Elektrikli Araç (EV) Desteği
Yeni Ford Pikap Desteği
USB, Wi-Fi Direct & WLAN Bağlantısı
Lütfen dikkat: Belirtilen özelliklerin kullanılabilirliği, aracın model, üretim yılı, donanım seviyesi ve kullanılan yazılıma (IDS, FDRS, Mazda IDS, MDARS) göre değişiklik gösterebilir.
Neden VNCI VCM 3 Tercih Edilmeli?
VNCI VCM 3, OEM düzeyinde işlevselliği, modern protokol desteğini ve geniş araç kapsamını, orijinal ekipman maliyetinin çok altında sunarak pazarda devrim yaratıyor.

VNCI VCM 3'ün Benzersiz Avantajları
-
Maliyet Etkin Çözüm
"%100 orijinal işlevi, %10 orijinal fiyatı" felsefesiyle OEM araçlarına kıyasla önemli ölçüde tasarruf sağlar.
-
OEM İşlevselliği
Orijinal VCM3'ün teşhis, programlama ve immobilizer yeteneklerini sunar; üçüncü taraf yazılım gerektirmez.
-
Geleceğe Yönelik Teknoloji
CAN FD, DoIP ve 4 Kanallı CAN BUS gibi en yeni iletişim protokollerini destekleyerek yeni nesil araçlarla uyumluluk sağlar.
-
Tak-Çalıştır Kolaylığı
Orijinal Ford/Mazda sürücleriyle sorunsuz entegrasyon, karmaşık kurulum ihtiyacını ortadan kaldırır.
-
Sürekli Güncellemeler
VNCI Cihaz Yöneticisi ile ücretsiz ürün yazılımı güncellemeleri, cihazınızın daima güncel kalmasını sağlar.
Geniş Yazılım Uyumluluğu
VNCI VCM 3, orijinal Ford IDS, FDRS, Mazda IDS ve MDARS yazılımları ile sorunsuz çalışarak esneklik ve kapsamlı teşhis yetenekleri sunar.
Ford IDS / FDRS
Ford'un resmi teşhis yazılımları IDS (Entegre Teşhis Sistemi) ve FDRS (Ford Teşhis ve Onarım Sistemi) ile uyumludur. Bayi düzeyinde teşhis, modül programlama, PATS ve kalibrasyonları destekler.
Mazda IDS / MDARS
Mazda'nın orijinal IDS ve MDARS (Mazda Gelişmiş Teşhis ve Onarım Yazılımı) ile entegrasyon. Kapsamlı teşhis, programlama, anahtar kaydı ve sensör uyarlamaları sunar.
VNCI VCM 3'ü 360° Açıdan Keşfedin
VNCI VCM 3'ün her detayını interaktif deneyimle yaşayın. Profesyonel tasarımından gelişmiş Ford/Mazda protokol özelliklerine kadar her şeyi yakından inceleyin.
VNCI VCM 3 Dış Görünüm
Cihaz Dış Görünümü
Her açıdan detaylı inceleme
Premium Tasarım & Ford/Mazda Uzmanı
VNCI VCM 3, zorlu atölye koşullarına dayanacak şekilde tasarlanmış premium bir Ford/Mazda teşhis cihazıdır. Her detayı özenle işlenmiş tasarımı ile profesyonel kullanım için ergonomi sunar.
Ford/Mazda Protokol Uzmanı
Ford ve Mazda araçlarının tüm iletişim protokollerinde uzmanlaşmış tasarım. CAN FD ve DoIP desteği.
Optimum Soğutma
Gelişmiş hava akış tasarımı ile sürekli kullanımda bile ideal çalışma sıcaklığını korur.
Tak-Çalıştır Kolaylığı
Kompakt boyutları ve akıllı kablo yönetimi ile atölye içinde rahat kullanım sağlar.
Güçlü İşlemci
ARM tabanlı işlemci ile hızlı veri işleme
CAN FD & DoIP
Yeni nesil Ford/Mazda protokolleri tam desteği
IDS/FDRS Uyumluluğu
Ford IDS ve FDRS sürümleriyle uyumlu
Hızlı Bağlantı
Anında araç tanıma ve bağlantı kurma
Sıkça Sorulan Sorular (VNCI VCM 3)
VNCI VCM 3 Ford & Mazda Teşhis Arayüzü hakkında merak edilenler ve yanıtları.
VNCI VCM 3 hangi yazılımlarla uyumludur?
VNCI VCM 3, orijinal Ford IDS, FDRS, Mazda IDS ve MDARS yazılımlarının çoğu sürümüyle uyumludur. Üçüncü taraf yazılım gerektirmez, orijinal sürücülerle tak-çalıştır prensibine sahiptir.
Cihazla birlikte yazılım geliyor mu? Lisanslama nasıl oluyor?
VNCI VCM 3 genellikle sadece donanım olarak satılır. Bazı satıcılar resmi olmayan yazılım CD'leri ekleyebilse de, cihazınızı hemen kullanmaya başlayabilmek için gerekli lisanslı yazılımları web sitemizden kolaylıkla temin edebilirsiniz. FDRS Arıza Tespit Yazılımı sayfamızdan detaylı bilgi alabilir ve yazılımı edinebilirsiniz.
VNCI VCM 3'ün orijinal VCM3'ten temel farkları nelerdir?
VNCI VCM 3, orijinal Ford VCM3'ün CAN FD, DoIP, 4 Kanallı CAN BUS gibi modern protokol desteği dahil olmak üzere temel işlevlerini çok daha düşük bir maliyetle sunar. Orijinal sürücülerle uyumludur ve tak-çalıştır kolaylığı sağlar. Temel fark, VNCI'nin satış sonrası bir ürün olması ve "orijinalin %10 fiyatına %100 işlev" felsefesini benimsemesidir.
Wi-Fi bağlantısında sorun yaşar mıyım?
VNCI VCM 3, USB, Wi-Fi Direct (AP) ve WLAN (Altyapı) bağlantılarını destekler. Bazı kullanıcılar Wi-Fi kurulumunda başlangıçta küçük sorunlar bildirse de, genellikle USB bağlantısı en stabil seçenektir. Gerekirse harici bir USB Wi-Fi dongle kullanılabilir. Ürün yazılımı güncellemeleri genellikle USB üzerinden yapılır.
VNCI VCM 3 hangi araç modellerini ve yıllarını kapsar?
Cihaz, 2005'ten günümüze kadar geniş bir Ford ve Mazda yelpazesini destekler. Bu, elektrikli araç (EV) modellerini de içerir. Kapsamlı protokol desteği sayesinde en yeni araç mimarileriyle uyumludur.
Destek ve İletişim
Ürünlerimizle ilgili soru, destek talebi veya işbirliği için bize ulaşabilirsiniz.
Telefon
E-posta
No questions have been asked about this product yet.
Be the first to ask a question!Ask a Question
No reviews yet
Have you tried this product? Share your experience and help other customers make the right choice. Your review will be published after approval.
Türkçe
English
العربية