SM2 Pro J2534 Arıza Tespit Cihazı
SM2 Pro Arıza Tespit Cihazı, Amerikan, Avrupa, Japon ve Rus araçlarının elektronik kontrol ünitelerini teşhisi için tasarlanmış profesyonel, Universal bir Arıza Tespit Cihazıdır.
SM2 Pro J2534 Arıza Tespit Cihazı | Profesyonel Universal Tanılama Sistemi
/* SM2 PRO CLONE STYLES START - Scoped to #sm2-content */
:root {
--primary: #1e40af;
--primary-dark: #1e3a8a;
--primary-light: #3b82f6;
--primary-ultra-light: #eff6ff;
--secondary: #dc2626;
--text-dark: #1f2937;
--text-medium: #374151;
--text-light: #6b7280;
--background: #f8fafc;
--white: #ffffff;
--border-light: #e5e7eb;
--shadow-sm: 0 2px 10px rgba(30, 64, 175, 0.05);
--shadow-md: 0 5px 20px rgba(30, 64, 175, 0.08);
--shadow-lg: 0 10px 30px rgba(30, 64, 175, 0.12);
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 20px;
--transition: all 0.3s ease;
}
#sm2-content {
font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--text-medium);
line-height: 1.6;
background-color: var(--background);
isolation: isolate;
position: relative;
z-index: 1;
}
#sm2-content *,
#sm2-content *::before,
#sm2-content *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#sm2-content .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
#sm2-content .hero {
padding-top: 60px;
padding-bottom: 80px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}
#sm2-content .hero-content {
display: flex;
align-items: center;
position: relative;
z-index: 2;
}
#sm2-content .hero-text {
flex: 1;
padding-right: 50px;
}
#sm2-content .hero-title {
font-size: 48px;
line-height: 1.2;
color: #1f2937;
margin-bottom: 24px;
font-weight: 800;
}
#sm2-content .hero-title span {
color: #1e40af;
position: relative;
}
#sm2-content .hero-title span::after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 10px;
background-color: rgba(30, 64, 175, 0.2);
z-index: -1;
}
#sm2-content .hero-description {
font-size: 18px;
margin-bottom: 32px;
color: #374151;
max-width: 550px;
}
#sm2-content .hero-image {
flex: 1;
position: relative;
}
/* Product Gallery in Hero */
#sm2-content .device-showcase {
position: relative;
width: 100%;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#sm2-content .gallery-main {
width: 100%;
height: 350px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
border-radius: 20px;
overflow: hidden;
background: #ffffff;
box-shadow: 0 10px 30px rgba(30, 64, 175, 0.12);
position: relative;
cursor: zoom-in;
transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
transition: all 0.3s ease;
}
#sm2-content .gallery-main:hover {
transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
box-shadow: 0 10px 30px rgba(30, 64, 175, 0.12), 0 20px 60px rgba(30, 64, 175, 0.15);
}
#sm2-content .gallery-main img {
max-width: 85%;
max-height: 85%;
object-fit: contain;
transition: transform 0.5s ease;
filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
#sm2-content .gallery-main:hover img {
transform: scale(1.05);
}
#sm2-content .gallery-thumbnails {
display: flex;
gap: 10px;
justify-content: center;
}
#sm2-content .thumbnail {
width: 70px;
height: 70px;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
border: 3px solid transparent;
transition: all 0.3s ease;
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(30, 64, 175, 0.05);
}
#sm2-content .thumbnail img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
#sm2-content .thumbnail.active {
border-color: #1e40af;
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
}
#sm2-content .thumbnail:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
}
/* Floating Badges */
#sm2-content .floating-badges {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
#sm2-content .float-badge {
position: absolute;
padding: 10px 20px;
background: #ffffff;
border-radius: 50px;
box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
display: flex;
align-items: center;
font-weight: 600;
font-size: 14px;
color: #1f2937;
}
#sm2-content .float-badge i {
margin-right: 8px;
color: #1e40af;
font-size: 16px;
}
#sm2-content .float-badge:nth-child(1) {
top: 15%;
left: 0;
transform: translateX(-50%);
animation: sm2-float 3s ease-in-out infinite;
}
#sm2-content .float-badge:nth-child(2) {
top: 40%;
right: 0;
transform: translateX(30%);
animation: sm2-float 4s ease-in-out infinite 1s;
}
#sm2-content .float-badge:nth-child(3) {
bottom: 20%;
left: 10%;
animation: sm2-float 3.5s ease-in-out infinite 0.5s;
}
/* Magnify View */
#sm2-content .gallery-magnify {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
z-index: 999999;
display: none;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
#sm2-content .gallery-magnify.active {
display: flex;
opacity: 1;
pointer-events: all;
}
#sm2-content #magnify-view {
position: relative;
width: 90%;
height: 90%;
display: flex;
align-items: center;
justify-content: center;
}
#sm2-content .magnify-hidden {
display: none !important;
}
#sm2-content #magnify-image {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
#sm2-content .magnify-close {
position: absolute;
top: -40px;
right: 0;
background: #ffffff;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: #1f2937;
font-size: 20px;
transition: all 0.3s ease;
}
#sm2-content .magnify-close:hover {
background: #dc2626;
color: #ffffff;
transform: rotate(90deg);
}
@keyframes sm2-float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
/* Features Section */
#sm2-content .features {
padding: 100px 0;
background-color: #ffffff;
}
#sm2-content .section-header {
text-align: center;
margin-bottom: 60px;
}
#sm2-content .section-title {
font-size: 36px;
font-weight: 700;
color: #1f2937;
margin-bottom: 16px;
position: relative;
display: inline-block;
}
#sm2-content .section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #1e40af;
border-radius: 4px;
}
#sm2-content .section-description {
font-size: 18px;
color: #374151;
max-width: 700px;
margin: 0 auto;
}
#sm2-content .features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
#sm2-content .feature-card {
background: #ffffff;
border-radius: 12px;
padding: 30px;
box-shadow: 0 2px 10px rgba(30, 64, 175, 0.05);
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
text-align: center;
}
#sm2-content .feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
border-color: #3b82f6;
}
#sm2-content .feature-icon {
width: 60px;
height: 60px;
background: #eff6ff;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: #1e40af;
font-size: 24px;
transition: all 0.3s ease;
margin-left: auto;
margin-right: auto;
}
#sm2-content .feature-card:hover .feature-icon {
background: #1e40af;
color: #ffffff;
transform: rotateY(180deg);
}
#sm2-content .feature-title {
font-size: 20px;
font-weight: 600;
color: #1f2937;
margin-bottom: 15px;
}
#sm2-content .feature-description {
font-size: 15px;
color: #6b7280;
}
/* Video & Setup Guide Section */
#sm2-content .video-setup-guide {
padding: 100px 0;
background-color: #f8fafc;
position: relative;
overflow: hidden;
}
#sm2-content .video-setup-container {
display: flex;
gap: 80px;
align-items: center;
margin-top: 60px;
}
#sm2-content .video-section {
flex: 1;
max-width: 500px;
}
#sm2-content .video-wrapper {
position: relative;
background-color: #ffffff;
border-radius: 20px;
padding: 25px;
box-shadow: 0 15px 40px rgba(30, 64, 175, 0.12);
margin-top: 30px;
margin-bottom: 35px;
transition: all 0.4s ease;
}
#sm2-content .video-wrapper:hover {
transform: translateY(-8px);
box-shadow: 0 25px 60px rgba(30, 64, 175, 0.18);
}
#sm2-content .video-placeholder {
width: 100%;
height: 350px;
border-radius: 15px;
overflow: hidden;
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
display: flex;
align-items: center;
justify-content: center;
position: relative;
border: 2px solid #e5e7eb;
}
#sm2-content .video-placeholder iframe {
width: 100%;
height: 100%;
border: none;
}
#sm2-content .video-info {
text-align: center;
}
#sm2-content .video-info h3 {
font-size: 26px;
font-weight: 700;
color: #1f2937;
margin-bottom: 15px;
}
#sm2-content .video-info p {
font-size: 17px;
color: #6b7280;
line-height: 1.7;
max-width: 450px;
margin: 0 auto;
margin-top: 10px;
}
#sm2-content .setup-section {
flex: 1;
max-width: 520px;
}
#sm2-content .setup-title {
font-size: 32px;
font-weight: 800;
color: #1f2937;
margin-bottom: 40px;
position: relative;
padding-bottom: 20px;
text-align: center;
}
#sm2-content .setup-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 5px;
background: linear-gradient(90deg, #1e40af, #3b82f6);
border-radius: 5px;
}
#sm2-content .setup-steps {
position: relative;
}
#sm2-content .timeline-steps {
position: relative;
padding-left: 40px;
}
#sm2-content .timeline-steps::before {
content: '';
position: absolute;
left: 25px;
top: 30px;
bottom: 30px;
width: 3px;
background: linear-gradient(180deg, #1e40af, #3b82f6, #1e40af);
border-radius: 3px;
box-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
}
#sm2-content .timeline-step {
position: relative;
padding: 25px 0;
margin-bottom: 25px;
transition: all 0.3s ease;
}
#sm2-content .timeline-step:hover {
transform: translateX(10px);
}
#sm2-content .timeline-marker {
position: absolute;
left: -40px;
top: 25px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
z-index: 2;
}
#sm2-content .timeline-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #1e40af, #1e3a8a);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 20px;
box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
transition: all 0.4s ease;
border: 4px solid #ffffff;
}
#sm2-content .timeline-step:hover .timeline-icon {
transform: rotateY(360deg) scale(1.1);
box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
}
#sm2-content .timeline-number {
background: #ffffff;
color: #1e40af;
border: 2px solid #1e40af;
border-radius: 15px;
padding: 4px 10px;
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
transition: all 0.3s ease;
}
#sm2-content .timeline-step:hover .timeline-number {
background: #1e40af;
color: #ffffff;
transform: scale(1.1);
}
#sm2-content .timeline-content {
background: linear-gradient(135deg, #ffffff, #f8fafc);
border-radius: 20px;
padding: 30px;
box-shadow: 0 8px 30px rgba(30, 64, 175, 0.08);
border: 2px solid transparent;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
#sm2-content .timeline-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(30, 64, 175, 0.01));
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
#sm2-content .timeline-step:hover .timeline-content {
border-color: #3b82f6;
box-shadow: 0 15px 50px rgba(30, 64, 175, 0.15);
transform: translateY(-5px);
}
#sm2-content .timeline-step:hover .timeline-content::before {
opacity: 1;
}
#sm2-content .timeline-badge {
display: inline-block;
background: linear-gradient(90deg, #1e40af, #3b82f6);
color: #ffffff;
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 12px;
box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}
#sm2-content .timeline-content h4 {
font-size: 24px;
font-weight: 800;
color: #1f2937;
margin-bottom: 15px;
line-height: 1.3;
}
#sm2-content .timeline-content p {
font-size: 16px;
color: #6b7280;
line-height: 1.7;
margin: 0;
}
/* Tech Specs Preview */
#sm2-content .tech-specs-preview {
margin-top: 30px;
padding: 25px;
background: linear-gradient(135deg, #eff6ff, #ffffff);
border-radius: 15px;
border: 2px solid #e5e7eb;
box-shadow: 0 5px 15px rgba(30, 64, 175, 0.08);
}
#sm2-content .tech-specs-preview h4 {
font-size: 20px;
font-weight: 700;
color: #1f2937;
margin-bottom: 20px;
text-align: center;
position: relative;
padding-bottom: 10px;
}
#sm2-content .tech-specs-preview h4::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 3px;
background: #1e40af;
border-radius: 3px;
}
#sm2-content .specs-preview-list {
list-style: none;
margin: 0;
padding: 0;
}
#sm2-content .specs-preview-list li {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
padding: 10px;
background: rgba(255, 255, 255, 0.7);
border-radius: 8px;
transition: all 0.3s ease;
}
#sm2-content .specs-preview-list li:hover {
background: rgba(255, 255, 255, 1);
transform: translateX(5px);
box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}
#sm2-content .specs-preview-list li i {
color: #1e40af;
font-size: 14px;
margin-right: 12px;
margin-top: 3px;
flex-shrink: 0;
}
#sm2-content .specs-preview-list li strong {
color: #1e40af;
font-weight: 600;
}
#sm2-content .specs-preview-list li span {
font-size: 14px;
color: #4b5563;
line-height: 1.5;
}
/* Compatible Brands Section */
#sm2-content .compatible-brands {
padding: 100px 0;
background-color: #ffffff;
}
#sm2-content .brands-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
margin-top: 50px;
}
#sm2-content .brand-item {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(30, 64, 175, 0.05);
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
height: 100px;
border: 1px solid #e5e7eb;
}
#sm2-content .brand-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
border-color: #3b82f6;
}
#sm2-content .brand-item img {
max-width: 80%;
max-height: 60px;
filter: grayscale(100%);
opacity: 0.7;
transition: all 0.3s ease;
}
#sm2-content .brand-item:hover img {
filter: grayscale(0%);
opacity: 1;
}
#sm2-content .compatibility-note {
margin-top: 30px;
padding: 15px 20px;
background-color: #eff6ff;
border-radius: 8px;
border-left: 4px solid #1e40af;
font-size: 14px;
color: #374151;
text-align: center;
}
#sm2-content .compatibility-note i {
color: #1e40af;
margin-right: 8px;
}
#sm2-content .additional-brands-info {
text-align: center;
margin-top: 30px;
margin-bottom: 15px;
font-size: 17px;
color: var(--text-dark);
}
#sm2-content .additional-brands-info i {
color: var(--primary);
margin-right: 8px;
font-size: 20px;
}
#sm2-content .additional-brands-info span {
font-weight: 600;
}
/* Software Grid Section */
#sm2-content .software-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 50px;
}
#sm2-content .software-item {
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(30, 64, 175, 0.05);
padding: 12px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
min-height: 60px;
overflow: hidden;
}
#sm2-content .software-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
border-color: #3b82f6;
}
#sm2-content .software-item h4 {
font-size: 12px;
font-weight: 600;
color: #1f2937;
margin: 0;
line-height: 1.3;
word-wrap: break-word;
hyphens: auto;
overflow-wrap: break-word;
}
/* Specifications Section */
#sm2-content .specifications {
padding: 100px 0;
background-color: #f8fafc;
}
#sm2-content .specs-container {
display: flex;
align-items: center;
margin-top: 60px;
}
#sm2-content .specifications .specs-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
#sm2-content .specifications .iframe-showcase-wrapper {
background-color: #ffffff;
border-radius: 20px;
padding: 25px;
box-shadow: 0 10px 30px rgba(30, 64, 175, 0.12);
position: relative;
width: fit-content;
margin: 0 auto;
}
#sm2-content .specifications .iframe-showcase-wrapper .badge-360 {
position: absolute;
top: 15px;
right: 15px;
background-color: #1e40af;
color: #ffffff;
padding: 8px 14px;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
z-index: 1;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#sm2-content .specifications .iframe-showcase-wrapper iframe {
display: block;
border-radius: 12px;
border: none;
transition: transform 0.3s ease;
max-width: 100%;
}
#sm2-content .specifications .iframe-showcase-wrapper:hover iframe {
transform: scale(1.03);
}
#sm2-content .specs-details {
flex: 1;
padding: 20px;
}
#sm2-content .specs-title {
font-size: 28px;
font-weight: 700;
color: #1f2937;
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
}
#sm2-content .specs-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 4px;
background-color: #1e40af;
border-radius: 4px;
}
#sm2-content .specs-list {
list-style: none;
}
#sm2-content .specs-item {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}
#sm2-content .specs-icon {
color: #1e40af;
font-size: 20px;
margin-right: 15px;
margin-top: 2px;
}
#sm2-content .specs-text {
flex: 1;
}
#sm2-content .specs-item-title {
font-size: 17px;
font-weight: 600;
color: #1f2937;
margin-bottom: 5px;
}
#sm2-content .specs-item-description {
font-size: 15px;
color: #6b7280;
}
/* FAQs Section */
#sm2-content .faqs {
padding: 100px 0;
background-color: #ffffff;
}
#sm2-content .faq-container {
max-width: 800px;
margin: 50px auto 0;
}
#sm2-content .faq-item {
background-color: #ffffff;
border-radius: 12px;
margin-bottom: 15px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(30, 64, 175, 0.05);
border: 1px solid #e5e7eb;
}
#sm2-content .faq-question {
padding: 20px;
background-color: #ffffff;
font-weight: 600;
color: #1f2937;
font-size: 17px;
cursor: pointer;
position: relative;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: space-between;
}
#sm2-content .faq-question:hover {
background-color: #eff6ff;
color: #1e40af;
}
#sm2-content .faq-question i {
color: #1e40af;
transition: all 0.3s ease;
}
#sm2-content .faq-question.active i {
transform: rotate(180deg);
}
#sm2-content .faq-answer {
padding: 0 20px;
height: 0;
overflow: hidden;
transition: all 0.3s ease;
line-height: 1.8;
}
#sm2-content .faq-answer.active {
height: auto;
padding: 0 20px 20px;
}
/* Support and Contact Section */
#sm2-content .support-contact {
padding: 80px 0;
background-color: #f8fafc;
}
#sm2-content .support-contact .section-header {
margin-bottom: 50px;
}
#sm2-content .support-contact .contact-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 20px;
}
#sm2-content .support-contact .contact-card {
background-color: #ffffff;
border-radius: 20px;
padding: 30px;
text-align: center;
box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#sm2-content .support-contact .contact-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(30, 64, 175, 0.12);
}
#sm2-content .support-contact .contact-icon-wrapper {
width: 70px;
height: 70px;
border-radius: 50%;
background-color: #eff6ff;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
#sm2-content .support-contact .contact-icon-wrapper i {
font-size: 28px;
color: #1e40af;
}
#sm2-content .support-contact .contact-card h4 {
font-size: 20px;
color: #1f2937;
margin-bottom: 10px;
font-weight: 700;
}
#sm2-content .support-contact .contact-card p {
font-size: 16px;
color: #374151;
line-height: 1.6;
}
#sm2-content .support-contact .contact-card p a {
color: #1e3a8a;
text-decoration: none;
font-weight: 500;
}
#sm2-content .support-contact .contact-card p a:hover {
text-decoration: underline;
color: #1e40af;
}
/* Highlight Class */
#sm2-content .highlight {
color: #1e40af;
font-weight: 600;
}
/* Responsive Styles */
@media screen and (max-width: 1024px) {
#sm2-content .features-grid {
grid-template-columns: repeat(2, 1fr);
}
#sm2-content .brands-grid {
grid-template-columns: repeat(4, 1fr);
}
#sm2-content .software-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media screen and (max-width: 768px) {
#sm2-content .hero-content {
flex-direction: column;
text-align: center;
}
#sm2-content .hero-text {
padding-right: 0;
margin-bottom: 40px;
}
#sm2-content .hero-title {
font-size: 36px;
}
#sm2-content .device-showcase {
height: 450px;
}
#sm2-content .gallery-main {
height: 300px;
}
#sm2-content .gallery-thumbnails {
gap: 8px;
}
#sm2-content .thumbnail {
width: 60px;
height: 60px;
}
#sm2-content .video-setup-container {
flex-direction: column;
gap: 40px;
}
#sm2-content .video-section {
margin-bottom: 20px;
}
#sm2-content .video-placeholder {
height: 250px;
}
#sm2-content .specs-container {
flex-direction: column;
}
#sm2-content .specifications .specs-image {
margin-bottom: 40px;
}
#sm2-content .features-grid {
grid-template-columns: 1fr;
}
#sm2-content .brands-grid {
grid-template-columns: repeat(3, 1fr);
}
#sm2-content .software-grid {
grid-template-columns: repeat(2, 1fr);
}
#sm2-content .float-badge {
display: none;
}
/* Timeline Mobile Responsive */
#sm2-content .timeline-steps {
padding-left: 20px;
}
#sm2-content .timeline-marker {
left: -20px;
}
#sm2-content .timeline-icon {
width: 40px;
height: 40px;
font-size: 16px;
}
#sm2-content .timeline-number {
padding: 3px 8px;
font-size: 10px;
}
#sm2-content .timeline-content {
padding: 20px;
}
#sm2-content .timeline-content h4 {
font-size: 20px;
}
#sm2-content .timeline-content p {
font-size: 14px;
}
#sm2-content .setup-title {
font-size: 26px;
}
}
@media screen and (max-width: 576px) {
#sm2-content .hero-title {
font-size: 28px;
}
#sm2-content .hero-description {
font-size: 16px;
}
#sm2-content .section-title {
font-size: 28px;
}
#sm2-content .section-description {
font-size: 16px;
}
#sm2-content .device-showcase {
height: 400px;
}
#sm2-content .gallery-main {
height: 250px;
}
#sm2-content .thumbnail {
width: 50px;
height: 50px;
}
#sm2-content .brands-grid {
grid-template-columns: repeat(2, 1fr);
}
#sm2-content .support-contact .contact-cards-grid {
grid-template-columns: 1fr;
gap: 20px;
}
#sm2-content .support-contact .contact-card {
padding: 20px;
}
}
/* SM2 PRO CLONE STYLES END */
Profesyonel SM2 Pro J2534 ile Güçlü Tanılama!
SM2 Pro J2534, gelişmiş bir J2534 PassThru interface olarak tasarlanmış profesyonel araç tanılama çözümüdür. SAE J2534-1 ve J2534-2 protokolü desteği ile OEM tanılama yazılımlarını tam uyumlulukla çalıştırabilir. Kapsamlı ECU programlama ve gelişmiş tanılama yetenekleriyle hem profesyoneller hem de servislere güçlü çözümler sunar.





J2534 PassThru
ECU Programlama
Profesyonel Kalite
SM2 Pro Gelişmiş Özellikleri
SM2 Pro, profesyonel seviyede ECU programlama ve kapsamlı tanılama yetenekleri sunar.
J2534 Pass-Thru
SAE J2534 standardına uygun pass-thru interface teknolojisi ile OEM yazılımlarla tam uyumluluk ve direkt ECU erişimi sağlar.
ECU Programlama
ECU yazılım güncellemeleri, kalibrasyonlar ve parametre değişiklikleri ile araç performansını optimize edin.
Gelişmiş Tanılama
Bi-directional kontroller, actuator testleri, sistem kalibrasyonları ve özel fonksiyonlar ile kapsamlı tanılama.
Çoklu Protokol Desteği
CAN ve K-Line protokolleriyle geniş araç yelpazesi desteği ve güvenilir iletişim sağlar.
Güvenlik ve Koruma
Araç güvenlik protokolleri, immobilizer programlama ve anahtar kodlama işlemleri için gelişmiş güvenlik.
Kapsamlı Veri Erişimi
Live data streams, parametrik veriler, freeze frame ve pending codes ile detaylı analiz.
Ürün İncelemesi ve Neden Tercih Edilmelidir
SM2 Pro J2534'ü detaylı bir şekilde inceleyin ve neden profesyonellerin tercihi olduğunu keşfedin.
SM2 Pro J2534 İncelemesi
Cihazın donanım özelliklerini, yazılım yeteneklerini ve profesyonel kullanım alanlarını keşfedin.
Teknik Özellikler
- J2534 Pass-Thru Interface: SAE J2534-1 & J2534-2 uyumlu
- Protokol Desteği: CAN, K-Line protokolleri
- Bağlantı: USB 2.0 yüksek hızlı bağlantı
- İşletim Sistemi: Windows 7/8/10/11 uyumluluğu
- Güvenlik: Galvanik izolasyon ve koruma devreleri
- Yazılım: Geniş OEM ve Original Software desteği
Neden Tercih Edilmelidir
01
Çok Amaçlı
Gelişmiş Donanım ve Geniş Uyumluluk
SM2 Pro, J2534 standardı ile çok çeşitli OEM yazılımlarını destekler. CAN ve K-Line protokolleri ile modern araçlardan klasik modellere kadar geniş bir yelpazede profesyonel tanılama ve ECU programlama imkânı sunar.
02
Değer
Mükemmel Fiyat/Performans Oranı
SM2 Pro, profesyonel özellikleri uygun fiyatla sunarak işletmeler için ideal yatırım seçeneği. Yüksek maliyetli cihazlara alternatif olarak aynı işlevselliği sağlar.
03
Kalite
Güvenilir Performans ve Kalite
SM2 Pro, tutarlı ve güvenilir performans sunar. Kaliteli donanım bileşenleri ve optimize edilmiş yazılım ile uzun süreli sorunsuz kullanım garantisi sağlar.
04
Hız
Hızlı Kurulum ve Teknik Destek
SM2 Pro'yu kullanmaya başlamak çok kolay. Hızlı kurulum süreci ve ihtiyacınız olduğunda profesyonel teknik destek ile işinizi aksatmadan çalışmaya devam edebilirsiniz.
Scanmatik 2 Pro Desteklenen Araç Markaları ve Yazılımları
SM2 Pro J2534, geniş bir OEM yazılım yelpazesi ve Original Software ile tam uyumlu çalışır
Chrysler Flash Application
GM GDS2 / SPS
Ford FDRs
Forscan
Hino DX2
Honda HDS
Land Rover Jaguar SDD
Nissan Consult 3+
ODIS
Toyota Lexus Techstream
Volvo Vida
Mercedes Benz Xentry / Das PassThru
Cummins Insite
Cummins Calterm ll
Caterpillar Et
JCB Service Master4
Volvo Premium Tech Tool
WABCO Toolbox
Eaton Air
Detroit Dddl
Allison Transmission Diagnostic Software
Noregon Jpro Truck Diagnostic Software
Other Original Software
Ve Çok Daha Fazlası
Not: CAN FD Protokolünü desteklememektedir. Yazılım uyumluluğu, lisans gereksinimlerine göre değişiklik gösterebilir.
Teknik Özellikler
SM2 Pro J2534, en güncel donanım ve yazılım teknolojileriyle donatılmıştır
360 Görünüm
Donanım & Yazılım Özellikleri
-
J2534 Interface
SAE J2534-1 ve J2534-2 standardına uyumlu PassThru donanım
-
Protokol Desteği
CAN, K-Line protokolleri desteği
-
PC Bağlantısı
USB 2.0 bağlantı ve Windows 7/8/10/11 geniş işletim sistemi desteği
-
Güvenlik ve Koruma
Galvanik izolasyon, aşırı gerilim koruması ve güvenli veri aktarımı
Sıkça Sorulan Sorular
SM2 Pro J2534 hakkında merak edilen sorular ve cevapları
SM2 Pro J2534 hangi araçlarla uyumludur?
SM2 Pro J2534, J2534 standardını destekleyen araç markaları ile uyumludur. Mercedes-Benz, BMW, Audi, Volkswagen, Toyota, Ford ve diğer birçok premium markanın OEM yazılımları ile çalışabilir. Araç uyumluluğu, kullanacağınız OEM yazılımın desteklediği modellere bağlıdır.
J2534 interface'i normal OBD2 cihazlarından farkı nedir?
J2534 interface'i, araç üreticilerinin resmi tanılama yazılımları ile direkt iletişim kurabilme yeteneğine sahiptir. Normal OBD2 cihazları sadece standart parametreleri okurken, J2534 ile ECU programlama, özel fonksiyonlar, bi-directional kontroller ve gelişmiş tanılama işlemleri yapabilirsiniz. Bu sayede servis seviyesinde profesyonel tanılama mümkündür.
ECU programlama işlemleri güvenli midir?
Evet, SM2 Pro J2534 güvenli ECU programlama için gelişmiş koruma mekanizmalarına sahiptir. Doğru prosedürler takip edildiğinde ve uygun yazılımlar kullanıldığında ECU programlama tamamen güvenlidir. Cihaz, güvenlik protokolleri, backup/restore işlemleri ve hata kurtarma özelliklerine sahiptir.
Hangi OEM yazılımları kullanabilirim?
SM2 Pro J2534, Mercedes WIS/ASRA, BMW ISTA, Audi/VW ODIS, Toyota TechStream, Ford IDS, Volvo VIDA ve diğer birçok OEM yazılımı ile uyumludur. Yazılım kullanımı için gerekli lisansları ayrıca edinmeniz gerekmektedir. Her OEM yazılımının kendi sistem gereksinimleri ve lisans koşulları vardır.
Cihazı kullanmak için teknik uzmanlık gerekli mi?
SM2 Pro J2534 profesyonel bir cihazdır ve etkili kullanım için otomotiv elektronik sistemleri hakkında temel bilgi gereklidir. ECU programlama ve gelişmiş tanılama işlemleri için teknik eğitim önerilir. Basit tanılama işlemleri için orta seviye teknik bilgi yeterlidir.
Garanti kapsamı nedir?
SM2 Pro J2534, 6 ay üretici garantisi ile birlikte gelir. Garanti kapsamında donanım arızaları, yazılım sorunları ve teknik destek bulunur. Yanlış kullanımdan kaynaklanan hasarlar garanti kapsamı dışındadır. Detaylı garanti koşulları ürünle birlikte verilir.
Teknik Destek ve İletişim
Profesyonel ürünümüzle ilgili teknik destek ve danışmanlık için bizimle iletişime geçin.
Teknik Destek Hattı
E-posta Desteği
WhatsApp Teknik Destek
لم يتم طرح أي أسئلة حول هذا المنتج بعد.
كن أول من يسأل!اطرح سؤالاً
لا توجد تقييمات بعد
هل جربت هذا المنتج؟ شارك تجربتك وساعد العملاء الآخرين في اتخاذ القرار الصحيح. سيتم نشر مراجعتك بعد الموافقة.
Türkçe
English
العربية