Volkswagen Vagcom VCDS Arıza Tespit Cihazı
Vagcom Online Güncellebilir - Volkswagen Grubu Profesyonel Arıza Tespit Cihazı | OtoEko
:root {
--primary-blue: #0a4da8;
--secondary-blue: #1a73e8;
--tertiary-blue: #4c8bf5;
--light-blue: #e8f0fe;
--superlight-blue: #f6f9ff;
--gray-100: #f8f9fa;
--gray-200: #e9ecef;
--gray-300: #dee2e6;
--gray-400: #ced4da;
--gray-500: #adb5bd;
--gray-600: #6c757d;
--gray-700: #495057;
--gray-800: #343a40;
--gray-900: #212529;
--black: #000;
--white: #fff;
--shadow-sm: 0 2px 4px rgba(0, 30, 80, 0.05);
--shadow-md: 0 4px 8px rgba(0, 30, 80, 0.1);
--shadow-lg: 0 10px 25px rgba(0, 30, 80, 0.15);
--shadow-xl: 0 20px 50px rgba(0, 30, 80, 0.2);
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-xxl: 32px;
--spacing-xs: 4px;
--spacing-sm: 8px;
--spacing-md: 16px;
--spacing-lg: 24px;
--spacing-xl: 32px;
--spacing-xxl: 48px;
--spacing-xxxl: 64px;
--main-content-max-width: 1400px;
--header-height: 80px;
--section-padding: 80px;
--animation-duration: 0.3s;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.vagcom-content,
.vagcom-content * {
font-family: 'Outfit', sans-serif;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
}
body {
background-color: var(--white);
color: var(--gray-800);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: color var(--animation-duration) ease;
}
/* Hero Section */
.hero-section {
min-height: 100vh;
display: flex;
position: relative;
padding-top: var(--header-height);
overflow: hidden;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--superlight-blue);
z-index: -1;
}
.hero-bg::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}
.hero-circle {
position: absolute;
border-radius: 50%;
opacity: 0.1;
background-color: var(--primary-blue);
}
.hero-circle:nth-child(1) {
width: 300px;
height: 300px;
top: 10%;
left: -150px;
}
.hero-circle:nth-child(2) {
width: 500px;
height: 500px;
top: 20%;
right: -250px;
}
.hero-circle:nth-child(3) {
width: 200px;
height: 200px;
bottom: 10%;
left: 20%;
}
.hero-inner {
max-width: var(--main-content-max-width);
margin: 0 auto;
width: 100%;
display: flex;
align-items: center;
padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xxxl); /* Reduced top padding */
}
.hero-content {
flex: 1;
position: relative;
z-index: 2;
}
.hero-tag {
display: inline-block;
padding: var(--spacing-xs) var(--spacing-md);
background-color: var(--primary-blue);
color: var(--white);
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
border-radius: var(--radius-sm);
margin-bottom: var(--spacing-xl);
}
.hero-title {
font-size: 50px; /* Reduced by 5% from 53px */
font-weight: 700;
color: var(--primary-blue);
line-height: 1.2;
margin-bottom: var(--spacing-xl);
}
.hero-title span {
display: block;
font-weight: 300;
}
.hero-description {
font-size: 20px; /* Reduced by 5% from 21px */
line-height: 1.7;
color: var(--gray-700);
margin-bottom: var(--spacing-xxl);
max-width: 600px;
}
.hero-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
margin-bottom: var(--spacing-xl);
}
.hero-feature {
display: flex;
align-items: center;
background-color: var(--white);
padding: var(--spacing-md);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.hero-feature:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}
.feature-icon {
width: 40px;
height: 40px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: var(--spacing-md);
flex-shrink: 0;
}
.feature-icon i {
font-size: 20px; /* Reduced by 5% from 21px */
}
.feature-text {
font-size: 15px; /* Reduced by 5% from 16px */
font-weight: 500;
color: var(--gray-800);
}
.hero-cta {
display: inline-block;
padding: 14px 35px;
background-color: var(--primary-blue);
color: var(--white);
font-size: 17px; /* Reduced by 5% from 18px */
font-weight: 600;
border-radius: var(--radius-md);
transition: background-color var(--animation-duration) ease, transform var(--animation-duration) ease;
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
}
.hero-cta::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
transform: skewX(-30deg);
transition: left 0.6s ease;
}
.hero-cta:hover {
background-color: var(--secondary-blue);
transform: translateY(-3px);
}
.hero-cta:hover::before {
left: 100%;
}
.hero-image {
flex: 1;
display: flex;
flex-direction: column; /* Align main image and thumbnails vertically */
justify-content: center;
align-items: center;
position: relative;
z-index: 2;
}
.main-image-container, #iframe-display-container {
margin-bottom: var(--spacing-md); /* Space between main image and thumbnails */
border: 1px solid var(--gray-300);
border-radius: var(--radius-lg); /* Increased border-radius */
overflow: hidden; /* Ensure image stays within rounded borders */
box-shadow: var(--shadow-md);
width: 100%;
max-width: 400px;
aspect-ratio: 1 / 1;
}
#iframe-display-container iframe {
width: 100%;
height: 100%;
border: none;
}
#mainProductImage {
width: 100%;
height: 100%;
object-fit: contain; /* Ensure the whole image is visible */
}
.thumbnail-container {
display: flex;
gap: var(--spacing-sm);
padding: var(--spacing-sm); /* Padding for the container's frame */
/* border: 2px solid var(--primary-blue); _/ /_ Border removed as per new design */
border-radius: var(--radius-lg); /* Rounded corners for the container */
transition: border-color var(--animation-duration) ease;
}
/* .thumbnail-container:hover {
border-color: var(--primary-blue);
} _/ /_ Removed hover effect for the container */
.thumbnail-img {
width: 80px;
height: 80px;
object-fit: cover;
background-color: var(--white);
border-radius: 15px; /* Set border-radius to 15px */
cursor: pointer;
transition: transform var(--animation-duration) ease, border-color var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
border: 2px solid var(--gray-200); /* Light border for inactive thumbnails */
box-shadow: var(--shadow-sm);
}
/* .thumbnail-img:hover {
transform: scale(1.05);
border-color: var(--secondary-blue);
} _/ /_ Custom hover can be added if needed */
.thumbnail-img.active-thumbnail {
border: 2px solid var(--primary-blue); /* Prominent blue border for active thumbnail */
transform: scale(1.05);
box-shadow: var(--shadow-md);
}
.device-showcase {
width: 450px;
height: 450px;
position: relative;
}
.device-circle {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: linear-gradient(145deg, var(--gray-100), var(--gray-200));
box-shadow:
25px 25px 50px rgba(0, 30, 80, 0.05),
-25px -25px 50px rgba(255, 255, 255, 0.8);
display: flex;
justify-content: center;
align-items: center;
}
.device-container {
width: 250px;
height: 250px;
background-color: var(--white);
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
.device-container::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(transparent, rgba(0, 30, 80, 0.03), transparent);
animation: rotate 10s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.device-model {
font-size: 35px; /* Reduced by 5% from 37px */
font-weight: 700;
color: var(--primary-blue);
margin-bottom: var(--spacing-md);
position: relative;
z-index: 1;
}
.device-label {
font-size: 15px; /* Reduced by 5% from 16px */
color: var(--gray-600);
position: relative;
z-index: 1;
}
.ring {
position: absolute;
border: 1px dashed var(--gray-300);
border-radius: 50%;
animation: pulse 3s linear infinite;
}
@keyframes pulse {
0% { opacity: 0.3; transform: scale(0.95); }
50% { opacity: 0.6; transform: scale(1.05); }
100% { opacity: 0.3; transform: scale(0.95); }
}
.ring-1 {
width: calc(100% + 20px);
height: calc(100% + 20px);
animation-delay: 0s;
}
.ring-2 {
width: calc(100% + 60px);
height: calc(100% + 60px);
animation-delay: 0.5s;
}
.ring-3 {
width: calc(100% + 100px);
height: calc(100% + 100px);
animation-delay: 1s;
}
.floating-icons {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.floating-icon {
position: absolute;
width: 30px;
height: 30px;
background-color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: var(--shadow-sm);
font-size: 16px; /* Increased by 15% from 14px */
color: var(--primary-blue);
z-index: 3;
animation: float 5s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0); }
}
.floating-icon:nth-child(1) {
top: 10%;
left: 10%;
animation-delay: 0s;
}
.floating-icon:nth-child(2) {
top: 20%;
right: 10%;
animation-delay: 1s;
}
.floating-icon:nth-child(3) {
bottom: 15%;
left: 15%;
animation-delay: 2s;
}
.floating-icon:nth-child(4) {
bottom: 10%;
right: 15%;
animation-delay: 3s;
}
.scroll-down {
position: absolute;
bottom: var(--spacing-xl);
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
color: var(--gray-600);
font-size: 13px; /* Reduced by 5% from 14px */
font-weight: 500;
letter-spacing: 1px;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-10px) translateX(-50%); }
60% { transform: translateY(-5px) translateX(-50%); }
}
.scroll-down i {
font-size: 22px; /* Reduced by 5% from 23px */
margin-top: var(--spacing-xs);
}
/* Section Styles */
.section {
padding: var(--section-padding) 0;
}
.section-inner {
max-width: var(--main-content-max-width);
margin: 0 auto;
padding: 0 var(--spacing-xl);
}
.section-header {
text-align: center;
margin-bottom: var(--spacing-xxxl);
}
.section-subtitle {
font-size: 15px; /* Reduced by 5% from 16px */
font-weight: 600;
color: var(--secondary-blue);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: var(--spacing-md);
}
.section-title {
font-size: 39px; /* Reduced by 5% from 41px */
font-weight: 700;
color: var(--primary-blue);
line-height: 1.3;
margin-bottom: var(--spacing-lg);
}
.section-description {
font-size: 20px; /* Reduced by 5% from 21px */
line-height: 1.7;
color: var(--gray-600);
max-width: 800px;
margin: 0 auto;
}
/* Features Section */
.features-section {
background-color: var(--superlight-blue);
position: relative;
overflow: hidden;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
position: relative;
z-index: 2;
}
.feature-card {
background-color: var(--white);
border-radius: var(--radius-lg);
padding: var(--spacing-xl);
box-shadow: var(--shadow-md);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
min-height: 350px;
display: flex;
flex-direction: column;
align-items: center; /* Center icon, title, and description horizontally */
position: relative;
overflow: hidden;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.feature-card-icon {
width: 60px;
height: 60px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: var(--spacing-lg);
transition: background-color var(--animation-duration) ease, color var(--animation-duration) ease;
}
.feature-card:hover .feature-card-icon {
background-color: var(--primary-blue);
color: var(--white);
}
.feature-card-icon i {
font-size: 28px; /* Increased by 15% from 24px */
}
.feature-card-title {
font-size: 23px; /* Increased by 15% from 20px */
font-weight: 600;
color: var(--gray-800);
margin-bottom: var(--spacing-md);
text-align: center; /* Center card title text */
}
.feature-card-description {
font-size: 17px; /* Increased by 15% from 15px */
line-height: 1.6;
color: var(--gray-600);
flex: 1;
text-align: center; /* Center card description text */
}
.feature-card::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
transform: scaleX(0);
transform-origin: left;
transition: transform var(--animation-duration) ease;
}
.feature-card:hover::after {
transform: scaleX(1);
}
.features-bg-shape {
position: absolute;
background-color: var(--primary-blue);
opacity: 0.02;
border-radius: 50%;
}
.features-bg-shape:nth-child(1) {
width: 500px;
height: 500px;
top: -250px;
left: -250px;
}
.features-bg-shape:nth-child(2) {
width: 400px;
height: 400px;
bottom: -200px;
right: -200px;
}
/* Specs Section */
.specs-section {
position: relative;
overflow: hidden;
}
.specs-container {
display: flex;
flex-wrap: wrap;
gap: var(--spacing-xxl);
position: relative;
z-index: 2;
}
.specs-content {
flex: 1;
min-width: 280px;
}
.specs-title {
font-size: 37px; /* Increased by 15% from 32px */
font-weight: 700;
color: var(--primary-blue);
margin-bottom: var(--spacing-xl);
position: relative;
padding-bottom: var(--spacing-md);
}
.specs-title::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background-color: var(--secondary-blue);
}
.specs-description {
font-size: 18px; /* Increased by 15% from 16px */
line-height: 1.7;
color: var(--gray-600);
margin-bottom: var(--spacing-xl);
}
.specs-list {
list-style: none;
}
.specs-item {
display: flex;
align-items: flex-start;
margin-bottom: var(--spacing-md);
}
.specs-item i {
color: var(--secondary-blue);
margin-right: var(--spacing-md);
margin-top: 3px;
}
.specs-item-content {
flex: 1;
}
.specs-item-title {
font-size: 18px; /* Increased by 15% from 16px */
font-weight: 600;
color: var(--gray-800);
margin-bottom: 5px;
}
.specs-item-description {
font-size: 16px; /* Increased by 15% from 14px */
color: var(--gray-600);
line-height: 1.5;
}
.specs-image-container {
flex: 1;
min-width: 280px;
position: relative;
}
.specs-image-container::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--light-blue);
border-radius: var(--radius-xxl);
transform: rotate(-5deg);
}
.specs-image {
position: relative;
background-color: var(--white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 15px;
padding: 15px;
font-size: 41px; /* Increased by 15% from 36px */
font-weight: 700;
color: var(--primary-blue);
position: relative; /* Added for tag positioning */
}
.specs-image img {
max-width: 100%;
height: auto;
border-radius: var(--radius-md);
}
.specs-image-tag {
position: absolute;
top: 10px;
right: 10px;
background-color: rgba(0, 30, 80, 0.7);
color: var(--white);
padding: var(--spacing-sm) var(--spacing-md); /* Increased padding */
border-radius: var(--radius-sm);
font-size: 18px; /* Increased by 15% from 16px */
font-weight: 700; /* Increased font weight */
}
.specs-background-shape {
position: absolute;
background-color: var(--primary-blue);
opacity: 0.02;
border-radius: 50%;
}
.specs-background-shape:nth-child(1) {
width: 300px;
height: 300px;
top: 10%;
right: 5%;
}
.specs-background-shape:nth-child(2) {
width: 200px;
height: 200px;
bottom: 20%;
left: 10%;
}
/* Software Section - NEW DESIGN */
.software-section {
position: relative;
overflow: hidden;
padding: var(--section-padding) 0;
background: linear-gradient(135deg, var(--superlight-blue), white);
}
.software-container {
position: relative;
z-index: 2;
}
.software-header {
text-align: center;
margin-bottom: var(--spacing-xxxl);
}
.software-subtitle {
display: inline-block;
padding: 6px 16px;
background-color: rgba(0, 30, 80, 0.1);
color: var(--primary-blue);
font-size: 15px; /* Increased by 15% from 13px */
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
border-radius: 30px;
margin-bottom: var(--spacing-md);
}
.software-title {
font-size: 41px; /* Increased by 15% from 36px */
font-weight: 700;
color: var(--primary-blue);
line-height: 1.3;
margin-bottom: var(--spacing-xl);
}
.software-intro {
font-size: 21px; /* Increased by 15% from 18px */
line-height: 1.7;
color: var(--gray-700);
max-width: 800px;
margin: 0 auto var(--spacing-xxl);
}
.software-cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 40px;
margin-bottom: var(--spacing-xxl);
}
.software-card-wrapper {
flex: 1;
min-width: 280px;
max-width: 380px;
position: relative;
}
.software-card {
position: relative;
background-color: white;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 30, 80, 0.1);
padding: 70px 30px 30px;
transition: all 0.3s ease;
z-index: 1;
height: 100%;
}
.software-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 30, 80, 0.15);
}
.software-icon {
position: absolute;
top: -30px;
left: 30px;
width: 80px;
height: 80px;
background: white;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 10px 20px rgba(0, 30, 80, 0.1);
z-index: 2;
}
.software-icon i {
font-size: 41px; /* Increased by 15% from 36px */
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.software-tag {
position: absolute;
top: 20px;
right: 20px;
padding: 5px 12px;
background: rgba(0, 30, 80, 0.1);
color: var(--primary-blue);
font-size: 14px; /* Increased by 15% from 12px */
font-weight: 600;
border-radius: 30px;
}
.software-card-title {
font-size: 28px; /* Increased by 15% from 24px */
font-weight: 700;
color: var(--primary-blue);
margin-bottom: 15px;
}
.software-card-description {
font-size: 17px; /* Increased by 15% from 15px */
line-height: 1.7;
color: var(--gray-700);
margin-bottom: 25px;
}
.software-features {
margin-bottom: 20px;
}
.software-feature {
display: flex;
align-items: flex-start;
margin-bottom: 12px;
}
.software-feature i {
color: var(--primary-blue);
margin-right: 10px;
font-size: 16px; /* Increased by 15% from 14px */
margin-top: 4px;
flex-shrink: 0;
}
.software-feature-text {
font-size: 16px; /* Increased by 15% from 14px */
color: var(--gray-700);
}
.software-card-footer {
padding-top: 20px;
border-top: 1px solid var(--gray-200);
display: flex;
justify-content: space-between;
align-items: center;
}
.software-compatibility {
font-size: 15px; /* Increased by 15% from 13px */
color: var(--gray-600);
}
.software-year {
display: inline-block;
padding: 4px 10px;
background: var(--light-blue);
color: var(--primary-blue);
font-size: 15px; /* Increased by 15% from 13px */
font-weight: 500;
border-radius: 4px;
}
.software-note-wrapper {
position: relative;
margin-top: 80px;
padding: 0 20px;
display: flex; /* Center the note block */
justify-content: center; /* Center the note block */
}
.software-note {
background-color: white;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 30, 80, 0.08);
padding: 30px;
position: relative;
overflow: hidden;
z-index: 1;
}
.software-note::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 8px;
height: 100%;
background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
z-index: 2;
}
.software-note-content {
display: flex;
flex-direction: column; /* Stack icon and text vertically */
align-items: center; /* Center items horizontally */
}
.software-note-icon {
width: 50px;
height: 50px;
background: var(--light-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: var(--spacing-lg); /* Space below icon */
flex-shrink: 0;
}
.software-note-icon i {
font-size: 28px; /* Increased by 15% from 24px */
color: var(--primary-blue);
}
.software-note-text {
flex: 1;
text-align: center; /* Center the text content */
}
.software-note-title {
font-size: 21px; /* Increased by 15% from 18px */
font-weight: 600;
color: var(--primary-blue);
margin-bottom: 10px;
}
.software-note-description {
font-size: 17px; /* Increased by 15% from 15px */
line-height: 1.7;
color: var(--gray-700);
}
.software-background-shape {
position: absolute;
border-radius: 50%;
background-color: var(--primary-blue);
opacity: 0.03;
z-index: 0;
}
.software-bg-shape1 {
width: 400px;
height: 400px;
top: -200px;
right: -200px;
}
.software-bg-shape2 {
width: 300px;
height: 300px;
bottom: -150px;
left: -150px;
}
/* Capabilities Section */
.capabilities-section {
position: relative;
overflow: hidden;
}
.capabilities-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-lg);
position: relative;
z-index: 2;
}
.capability-item {
background-color: var(--white);
border-radius: var(--radius-md);
padding: var(--spacing-lg);
display: flex;
align-items: center;
box-shadow: var(--shadow-sm);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.capability-item:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}
.capability-icon {
width: 40px;
height: 40px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: var(--spacing-md);
flex-shrink: 0;
}
.capability-icon i {
font-size: 18px; /* Increased by 15% from 16px */
}
.capability-text {
font-size: 16px; /* Increased by 15% from 14px */
font-weight: 500;
color: var(--gray-700);
}
.capabilities-background-shape {
position: absolute;
background-color: var(--primary-blue);
opacity: 0.02;
border-radius: 50%;
}
.capabilities-background-shape:nth-child(1) {
width: 400px;
height: 400px;
bottom: -200px;
left: -200px;
}
.capabilities-background-shape:nth-child(2) {
width: 300px;
height: 300px;
top: -150px;
right: -150px;
}
.capability-item-more {
grid-column: 1 / -1; /* Span all columns */
justify-content: center; /* Center its flex content (icon + text block) */
/* background-color: var(--superlight-blue); Optional: to make it stand out or blend */
/* box-shadow: none; _/ /_ Optional: remove shadow if it should not look like a card */
padding-top: var(--spacing-lg);
padding-bottom: var(--spacing-lg);
margin-top: var(--spacing-md); /* Add some space above it */
}
.capability-item-more .capability-icon {
width: 48px; /* Slightly larger icon container */
height: 48px;
}
.capability-item-more .capability-icon i {
font-size: 25px; /* Increased by 15% from 22px */
}
.capability-item-more .capability-text {
font-size: 21px; /* Increased by 15% from 18px */
font-weight: 600; /* Bolder text */
color: var(--primary-blue); /* Make it more prominent */
}
/* FAQ Section - Redesigned */
.faq-section {
background-color: var(--white); /* Cleaner background */
padding: var(--section-padding) 0; /* Ensure consistent section padding */
}
.faq-container { /* Renamed from faq-grid and new styles */
max-width: 850px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--spacing-lg); /* Space between FAQ items */
}
.faq-item {
background-color: var(--superlight-blue); /* Light background for the item */
border: 1px solid var(--gray-200); /* Subtle border */
border-radius: var(--radius-md); /* Consistent with other cards */
box-shadow: var(--shadow-sm);
transition: box-shadow var(--animation-duration) ease;
overflow: hidden; /* Crucial for max-height animation */
}
.faq-item:hover {
box-shadow: var(--shadow-md);
}
.faq-question {
font-size: 21px; /* Increased by 15% from 18px */
font-weight: 600;
color: var(--primary-blue);
padding: var(--spacing-lg);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color var(--animation-duration) ease;
border-bottom: 1px solid transparent; /* For separation when open */
}
.faq-question span { /* To wrap the question text */
flex-grow: 1;
margin-right: var(--spacing-md);
}
.faq-icon { /* Class for the icon element */
font-size: 1.15rem; /* Increased by 15% from 1rem (16px) */
color: var(--primary-blue);
transition: transform var(--animation-duration) ease;
flex-shrink: 0;
}
.faq-item.active .faq-question {
background-color: var(--light-blue);
border-bottom-color: var(--gray-300); /* Separator line when active */
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
font-size: 18px; /* Increased by 15% from 16px */
line-height: 1.7;
color: var(--gray-700);
padding: 0 var(--spacing-lg); /* Horizontal padding */
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease-out, padding-top 0.35s ease-out, padding-bottom 0.35s ease-out;
}
.faq-item.active .faq-answer {
padding-top: var(--spacing-lg); /* Top padding when open */
padding-bottom: var(--spacing-lg); /* Bottom padding when open */
max-height: 600px; /* Sufficient height for content */
}
/* End of FAQ Section - Redesigned */
/* 360 Degree Exploration Section */
.exploration-section {
background: linear-gradient(135deg, var(--white), var(--superlight-blue));
position: relative;
overflow: hidden;
padding: var(--section-padding) 0;
}
.exploration-background-shape {
position: absolute;
border-radius: 50%;
background-color: var(--primary-blue);
opacity: 0.03;
z-index: 0;
}
.exploration-bg-shape1 {
width: 500px;
height: 500px;
top: -250px;
left: -250px;
}
.exploration-bg-shape2 {
width: 400px;
height: 400px;
bottom: -200px;
right: -200px;
}
.exploration-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-xxl);
margin-bottom: var(--spacing-xxxl);
position: relative;
z-index: 2;
}
.exploration-card {
background-color: var(--white);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
overflow: hidden;
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.exploration-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-xl);
}
.exploration-card-header {
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
color: var(--white);
padding: var(--spacing-xl);
text-align: center;
position: relative;
overflow: hidden;
}
.exploration-card-header::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
animation: rotate 20s linear infinite;
}
.exploration-card-icon {
width: 80px;
height: 80px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto var(--spacing-lg);
position: relative;
z-index: 1;
}
.exploration-card-icon i {
font-size: 40px;
color: var(--white);
}
.exploration-card-title {
font-size: 24px;
font-weight: 700;
margin-bottom: var(--spacing-sm);
position: relative;
z-index: 1;
}
.exploration-card-subtitle {
font-size: 16px;
opacity: 0.9;
position: relative;
z-index: 1;
}
/* Software Installation Card Styles */
.software-installation-card .exploration-card-header {
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}
.installation-steps {
padding: var(--spacing-xl);
}
.installation-step {
display: flex;
align-items: flex-start;
margin-bottom: var(--spacing-xl);
position: relative;
}
.installation-step:last-child {
margin-bottom: 0;
}
.installation-step::after {
content: "";
position: absolute;
left: 20px;
top: 50px;
width: 2px;
height: calc(100% + var(--spacing-lg));
background: linear-gradient(to bottom, var(--primary-blue), transparent);
z-index: 0;
}
.installation-step:last-child::after {
display: none;
}
.step-number {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
font-size: 18px;
margin-right: var(--spacing-lg);
flex-shrink: 0;
position: relative;
z-index: 1;
box-shadow: var(--shadow-md);
}
.step-content {
flex: 1;
}
.step-title {
font-size: 18px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: var(--spacing-sm);
}
.step-description {
font-size: 15px;
line-height: 1.6;
color: var(--gray-700);
}
.step-description a {
color: var(--secondary-blue);
text-decoration: underline;
}
.installation-note {
margin: var(--spacing-xl);
margin-top: 0;
padding: var(--spacing-lg);
background-color: var(--light-blue);
border-radius: var(--radius-md);
display: flex;
align-items: center;
}
.installation-note .note-icon {
width: 40px;
height: 40px;
background-color: var(--primary-blue);
color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: var(--spacing-md);
flex-shrink: 0;
}
.installation-note .note-icon i {
font-size: 18px;
}
.installation-note .note-text {
font-size: 14px;
color: var(--gray-700);
line-height: 1.5;
}
/* Video Exploration Card Styles */
.video-exploration-card .exploration-card-header {
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}
.video-container {
padding: var(--spacing-xl);
}
.video-player {
position: relative;
width: 100%;
height: 300px;
border-radius: var(--radius-lg);
overflow: hidden;
margin-bottom: var(--spacing-xl);
box-shadow: var(--shadow-md);
}
.video-player iframe {
width: 100%;
height: 100%;
border: none;
}
.video-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
padding: var(--spacing-lg);
transform: translateY(100%);
transition: transform var(--animation-duration) ease;
}
.video-player:hover .video-overlay {
transform: translateY(0);
}
.video-controls {
display: flex;
justify-content: space-around;
align-items: center;
}
.control-item {
display: flex;
flex-direction: column;
align-items: center;
color: var(--white);
font-size: 12px;
}
.control-item i {
font-size: 20px;
margin-bottom: 4px;
color: var(--white);
}
.video-features {
display: flex;
flex-direction: column;
gap: var(--spacing-lg);
}
.feature-highlight {
display: flex;
align-items: center;
padding: var(--spacing-md);
background-color: var(--superlight-blue);
border-radius: var(--radius-md);
transition: transform var(--animation-duration) ease;
}
.feature-highlight:hover {
transform: translateX(8px);
}
.highlight-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: var(--spacing-md);
flex-shrink: 0;
}
.highlight-icon i {
font-size: 20px;
}
.highlight-content {
flex: 1;
}
.highlight-title {
font-size: 16px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: 4px;
}
.highlight-description {
font-size: 14px;
color: var(--gray-600);
line-height: 1.4;
}
/* Exploration Features Row */
.exploration-features {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--spacing-lg);
position: relative;
z-index: 2;
}
.exploration-feature-item {
background-color: var(--white);
padding: var(--spacing-xl);
border-radius: var(--radius-lg);
text-align: center;
box-shadow: var(--shadow-md);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.exploration-feature-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.feature-item-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto var(--spacing-lg);
}
.feature-item-icon i {
font-size: 24px;
}
.feature-item-title {
font-size: 18px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: var(--spacing-sm);
}
.feature-item-description {
font-size: 14px;
color: var(--gray-600);
line-height: 1.5;
}
/* Responsive Styles for Exploration Section */
@media (max-width: 992px) {
.exploration-container {
grid-template-columns: 1fr;
gap: var(--spacing-xl);
}
.exploration-features {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.exploration-features {
grid-template-columns: 1fr;
}
.video-player {
height: 250px;
}
.video-controls {
flex-direction: column;
gap: var(--spacing-sm);
}
.control-item {
flex-direction: row;
gap: var(--spacing-sm);
}
.control-item i {
margin-bottom: 0;
}
}
@media (max-width: 576px) {
.installation-step {
flex-direction: column;
text-align: center;
}
.installation-step::after {
display: none;
}
.step-number {
margin-right: 0;
margin-bottom: var(--spacing-md);
}
.installation-note {
flex-direction: column;
text-align: center;
}
.installation-note .note-icon {
margin-right: 0;
margin-bottom: var(--spacing-md);
}
}
/* End of 360 Degree Exploration Section */
/* Contact Section */
.contact-section {
background-color: var(--white);
}
.contact-cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-xl);
}
.contact-card {
background-color: var(--superlight-blue);
padding: var(--spacing-xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
text-align: center;
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.contact-card-icon {
width: 60px;
height: 60px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto var(--spacing-lg);
font-size: 28px; /* Increased by 15% from 24px */
}
.contact-card-icon i.fab.fa-whatsapp { /* Specific styling for WhatsApp icon if needed */
font-size: 32px; /* Increased by 15% from 28px */
}
.contact-card-title {
font-size: 23px; /* Increased by 15% from 20px */
font-weight: 600;
color: var(--primary-blue);
margin-bottom: var(--spacing-sm);
}
.contact-card-detail {
font-size: 18px; /* Increased by 15% from 16px */
color: var(--gray-700);
line-height: 1.6;
}
.contact-card-detail a {
color: var(--secondary-blue);
font-weight: 500;
}
.contact-card-detail a:hover {
text-decoration: underline;
color: var(--primary-blue);
}
/* Note Section */
.note-section {
background-color: var(--light-blue);
padding: var(--spacing-xxxl) 0;
}
.note-container {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.note-icon {
width: 60px;
height: 60px;
background-color: var(--primary-blue);
color: var(--white);
font-size: 28px; /* Increased by 15% from 24px */
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto var(--spacing-lg);
}
.note-title {
font-size: 28px; /* Increased by 15% from 24px */
font-weight: 600;
color: var(--primary-blue);
margin-bottom: var(--spacing-md);
}
.note-text {
font-size: 18px; /* Increased by 15% from 16px */
line-height: 1.7;
color: var(--gray-700);
}
/* Responsive Styles */
@media (max-width: 1200px) {
:root {
--section-padding: 60px;
}
.hero-title {
font-size: 55px; /* Increased by 15% from 48px */
}
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
.software-cards {
justify-content: center;
}
.software-card-wrapper {
min-width: 45%;
}
}
@media (max-width: 992px) {
.hero-inner {
flex-direction: column;
}
.hero-content {
margin-bottom: var(--spacing-xxxl);
text-align: center;
}
.hero-description {
margin-left: auto;
margin-right: auto;
}
.hero-features {
justify-content: center;
}
.device-showcase {
width: 350px;
height: 350px;
}
.device-container {
width: 200px;
height: 200px;
}
.specs-container {
flex-direction: column;
}
.specs-image-container {
margin-top: var(--spacing-xxl);
}
.specs-image {
min-height: auto;
}
}
@media (max-width: 768px) {
:root {
--section-padding: 50px;
}
.hero-title {
font-size: 41px; /* Increased by 15% from 36px */
}
.hero-features {
grid-template-columns: 1fr;
}
.section-title {
font-size: 32px; /* Increased by 15% from 28px */
}
.features-grid,
.contact-cards-grid {
grid-template-columns: 1fr;
}
.capabilities-grid {
grid-template-columns: repeat(2, 1fr);
}
.software-card-wrapper {
min-width: 100%;
}
.specs-content {
min-width: 100%;
}
.specs-image-container {
min-width: 100%;
}
.specs-title {
font-size: 28px;
}
.specs-container {
gap: var(--spacing-xl);
}
}
@media (max-width: 576px) {
:root {
--spacing-xl: 24px;
--spacing-xxl: 32px;
--spacing-xxxl: 48px;
--section-padding: 40px;
}
.hero-title {
font-size: 35px; /* Increased by 15% from 30px */
}
.hero-description {
font-size: 18px; /* Increased by 15% from 16px */
}
.capabilities-grid {
grid-template-columns: 1fr;
}
#mainProductImage { /* Smaller main image on mobile */
max-width: 300px;
max-height: 300px;
}
.thumbnail-img { /* Smaller thumbnails on mobile */
width: 60px;
height: 60px;
}
.device-showcase {
width: 280px;
height: 280px;
}
.device-container {
width: 160px;
height: 160px;
}
.device-model {
font-size: 28px; /* Increased by 15% from 24px */
}
.scroll-down {
display: none;
}
}
Volkswagen Grubu
Vagcom Online Güncellebilir Arıza Tespit Cihazı
Vagcom Online Güncellebilir, Ross-Tech firması tarafından geliştirilen VCDS yazılımı ile Volkswagen, Audi, Seat ve Skoda araçlarda kodlama ve arıza tespit işlemleri yapabilmenizi sağlayan profesyonel bir OBD2 cihazıdır. Güncel versiyonunu her daim sitemizdeki sipariş sorgulama alanından indirebilirsiniz.
VCDS Yazılım Uyumluluğu
Kısa ve Uzun Kodlama
Geniş Araç Desteği
HEX-V2 Fonksiyon Desteği





DETAYLAR İÇİN KAYDIRIN
TEMEL FONKSİYONLAR
Vagcom Online Güncellebilir Temel Yetenekleri
Vagcom Online Güncellebilir Arıza Tespit Cihazı, Volkswagen Grubu araçlarda arıza teşhisi ve kodlama işlemleri gerçekleştirmenizi sağlar. Avrupa Klon model olan bu cihaz en çok tercih edilen Vagcom modelidir.
Hata Kodları Okuma ve Silme
Modüllerden (motor, şanzıman, ABS, hava yastığı vb.) hata kodlarını okuyabilir ve silebilirsiniz. Detaylı hata açıklamaları ile sorunları kolayca teşhis edebilirsiniz.
Gelişmiş Sistem Taraması
Elektronik kontrol ünitelerini (ECU) tarayarak arızaları ve potansiyel sorunları tespit eder. Önceden hata vermeden sistemlerin durumunu analiz ederek önleyici bakım imkanı sunar.
Canlı Veri Görüntüleme
Araç sistemlerinden gelen verileri gerçek zamanlı olarak görüntüleyebilir, grafik formatında analiz edebilirsiniz. Performans ölçümü ve sorun giderme süreçlerinde kritik bilgiler sağlar.
Adaptasyon ve Kalibrasyon
Elektrikli direksiyon adaptasyonu, otomatik vites ayarı, gaz kelebeği adaptasyonu gibi önemli kalibrasyon işlemlerini güvenle gerçekleştirebilirsiniz.
Servis Sıfırlama
Yağ değişimi, bakım aralıkları, fren balataları gibi servis bildirimlerini sıfırlayabilirsiniz. Dizel partikül filtresi rejenerasyonu ve servis tarih sıfırlama işlemleri yapabilirsiniz.
Güncellenebilir Yazılım
Güncel versiyonunu her daim sipariş durumu sorgulama sayfamızdan indirebilirsiniz. Loader/Crack vb. başlatıcılara gerek duymadan internet açık kullanabilirsiniz.
Vagcom Online Güncellebilir Teknik Özellikleri
Vagcom Online Güncellebilir, Volkswagen Grubu araçlar için tasarlanmış, yüksek performanslı bir diagnostik Arıza Tespit Cihazıdır. OBD portu aracılığıyla elektronik kontrol ünitelerine (ECU) erişim sunar.
-
Bağlantı ve Uyumluluk
USB arayüzü ile bilgisayara bağlantı sağlar. Windows 7, 8, 10 ve 11 işletim sistemleri ile uyumlu olup, 32-bit ve 64-bit sürümlerde sorunsuz çalışır. Minimum 500 MB boş disk alanı gereklidir.
-
İletişim Protokolleri
KWP2000, ISO9141, ISO14230, UDS ve çeşitli CAN (Controller Area Network) protokollerini destekler. EOBD, OBDII ve VAG protokollerinde iletişim sağlar.
-
Yazılım Özellikleri
VCDS yazılımı ile uyumlu çalışır. Sadece İngilizce dil desteği vardır. İleri seviye kodlama, adaptasyon ve temel ayar fonksiyonlarına sahiptir.
-
Fiziksel Özellikleri
Kompakt tasarım, dayanıklı kablo yapısı ve LED gösterge sistemine sahiptir. 1.5 metre uzunluğunda yüksek kaliteli OBD kablosu ile esnek kullanım imkanı sunar.


CİHAZ KABİLİYETLERİ
Vagcom Online Güncellebilir ile Yapabileceğiniz İşlemler
Vagcom Online Güncellebilir Arıza Tespit Cihazı, Volkswagen Grubu araçlarda çeşitli teşhis, analiz ve kodlama işlemlerini profesyonel düzeyde gerçekleştirme imkanı sunar.
Konfor Sistemleri Kodlaması
VIN (Şasi No) ile Detaylı Araç Bilgisi
Arıza Kodu Okuma ve Silme (DTC)
Canlı Veri Akışı ve Grafik Analizi
Yağ Servisi ve Bakım Sıfırlama
DPF Rejenerasyon ve Servis İşlemleri
Anahtar Adaptasyonu ve İmmobilizer
Enjektör Kodlama ve Ayarları
Hava Yastığı (SRS) Arıza Sıfırlama
Klima ve Konfor Adaptasyonları
Multimedya ve Navigasyon Kodlaması
Far Adaptasyonu ve Coming Home
Ve Daha Birçok Gelişmiş Fonksiyon
Not: Desteklenen diagnostik fonksiyonları ve burada listelenmeyen diğer birçok özellik, aracınızın donanımına, markasına ve modeline göre değişiklik gösterebilir.
Yazılım Platformu
VCDS Yazılım Özellikleri
Vagcom Online Güncellebilir Arıza Tespit Cihazı, VCDS (VAG-COM Diagnostic System) yazılımı ile çalışarak Volkswagen Grubu araçlar için teşhis ve programlama özellikleri sunar.
Temel İşlevler
Diagnostik İşlemleri
Arıza tespit ve temel servis işlemleri için gerekli fonksiyonları içerir.
Otomatik araç tarama ve hata kodu okuma
Arıza kodlarını silme ve sıfırlama
Tüm araç modüllerine erişim
Analiz
Veri Analiz Araçları
Canlı veri akışı görüntüleme ve analiz için gelişmiş araçlar sunar.
Gerçek zamanlı veri ölçüm blokları
Grafik gösterge ve veri kaydı
Gelişmiş sorun giderme araçları
Otomasyon
Otomatik VIN Tanıma
Cihaz, araca bağlandığında şasi numarasını (VIN) otomatik olarak tanır ve doğru araç protokolünü seçer.
Hızlı ve hatasız araç tespiti
Manuel araç seçimi ihtiyacını azaltır
Doğru teşhis için temel oluşturur
Yazılım Erişimi
Vagcom Online Güncellebilir yazılımına erişmek için, sipariş kodunuzu kullanarak sipariş sorgulama sayfamızdan güvenle indirebilirsiniz. Paketimiz, teşhis donanımı ve VCDS yazılımını içeren çözüm sunmaktadır.
360° KEŞFET
360 Derece Açıdan Keşfedin
Vagcom Online Güncellebilir Arıza Tespit Cihazını her açıdan keşfedin. Yazılım kurulumundan 360° görsel deneyime kadar tüm detayları inceleyin.
Kurulum Video Rehberi
Videolu kurulum rehberi
Yazılım İndirme
Sipariş sorgulama sayfasından güvenli indirme
Kurulum Sihirbazı
Adım adım kurulum ve driver yükleme
İlk Çalıştırma
Yazılım başlatma ve ilk kullanım
360° Açıyla Keşfedin
Cihaz dış görünümü ve tasarımı
Cihaz Tasarım Detayları
Kompakt ve dayanıklı plastik gövde yapısı
Bağlantı Noktaları
USB ve OBD-II 16 pin standart bağlantı arayüzü
LED Göstergeler
Durum gösterge ışıkları ve bağlantı kontrolü
SIKÇA SORULAN SORULAR
Merak Edilenler
Vagcom Online Güncellebilir Arıza Tespit Cihazı ve kullanımı hakkında sıkça sorulan sorular ve yanıtları.
Vagcom Online Güncellebilir hangi araçlarla uyumludur?
Vagcom Online Güncellebilir, Volkswagen Grubu'nun eski ve yeni model birçok aracıyla (Volkswagen, Audi, Seat ve Skoda dahil) uyumludur. Hem eski tip KWP2000 protokolünü kullanan araçları hem de modern CAN-Bus sistemlerini destekler. Yeni nesil MQB ve MLB platformlarını kullanan araçlarda da tam işlevsellik sunar.
Vagcom cihazının garantisi var mı?
Evet, Vagcom Online Güncellebilir Arıza Tespit Cihazı, satın alma tarihinden itibaren fabrikasyon hatalara karşı 6 ay boyunca garantilidir. Ayrıca, yazılım güncellemeleri için teknik destek sağlanmaktadır. Yanlış kullanım, fiziksel hasar veya yetkisiz müdahale garanti kapsamı dışındadır.
Cihazı kullanmak için hangi bilgisayar gereksinimleri vardır?
Vagcom Online Güncellebilir kullanımı için en az Windows 7, 8, 10 veya 11 işletim sistemine sahip bir bilgisayar gereklidir. Bilgisayarınızda minimum 2GB RAM, 500 MB boş disk alanı ve en az bir adet USB 2.0 portu bulunmalıdır. Yazılım hem 32-bit hem de 64-bit işletim sistemlerinde çalışabilir. En iyi performans için Windows 10 veya 11 tavsiye edilir.
Cihazı aldıktan sonra nasıl kullanmaya başlayabilirim?
Cihazınızla birlikte gelen VCDS yazılımını, sipariş durumu sorgulama sayfamıza sipariş kodunuzu girerek kolayca indirebilirsiniz. Kurulum veya kullanım sırasında herhangi bir sorunla karşılaşırsanız, 0850 532 0550 WhatsApp destek hattımız üzerinden teknik ekibimizle iletişime geçebilirsiniz.
Ek özellikleri açarken aracıma zarar verir miyim?
Ek özelliklerin açılması, doğru yapıldığında aracınıza zarar vermez. Ancak, özellikle güvenlik sistemleri veya motor kontrol üniteleriyle ilgili değişiklikler yaparken dikkatli olunması önemlidir. Kodlama yapmadan önce mevcut ayarları yedeklemeniz ve yetkili servis veya deneyimli biri eşliğinde işlem yapmanız tavsiye edilir. Bazı özellikler aracınızın donanımına bağlı olarak desteklenmeyebilir.
DESTEK
Destek ve İletişim
Ürünlerimizle ilgili her türlü 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
العربية