Ford FORScan Arıza Tespit Cihazı / Bluetooth Modifiyeli
Ford araçlar için Bluetooth arıza tespit cihazı. Pic18f25k80 çipi ve HS-CAN/MS-CAN switch modifiyesi ile gelişmiş tanılama özellikleri sunar. Motor, şanzıman, ABS ve diğer önemli sistemlerde arıza kodlarını okur, siler ve canlı veri takibi yapabilmenizi sağlar.
FORScan Bluetooth Arıza Tespit Cihazı | Ford Uyumlu
/* İzole edilen tüm stiller - sadece bu bölüm için geçerli */
.ford-forscan-page {
--primary: #1860EB;
--primary-light: #e9f0ff;
--secondary: #FF6B35;
--text-dark: #1A2C55;
--text-light: #646E84;
--background: #FFFFFF;
--background-light: #F7F9FC;
--border: #E2E8F0;
--success: #36B37E;
--warning: #FFAB00;
--info: #2684FF;
--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 24px;
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
color: var(--text-dark);
background-color: var(--background);
overflow-x: hidden;
position: relative;
width: 100%;
box-sizing: border-box;
}
.ford-forscan-page * {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
.ford-forscan-page .container {
max-width: 100%;
margin: 0 auto;
padding: 0 24px;
position: relative;
z-index: 2;
}
.ford-forscan-page .btn {
padding: 12px 24px;
border-radius: var(--radius-md);
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
}
.ford-forscan-page .btn-primary {
background-color: var(--primary);
color: white;
border: none;
box-shadow: var(--shadow-sm);
}
.ford-forscan-page .btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.ford-forscan-page .btn-secondary {
background-color: var(--primary-light);
color: var(--primary);
border: none;
}
.ford-forscan-page .btn-secondary:hover {
background-color: #dce7ff;
}
/* Background Shapes */
.ford-forscan-page .bg-shape {
position: absolute;
z-index: 1;
border-radius: 50%;
}
.ford-forscan-page .bg-shape-1 {
top: -80px;
right: -80px;
width: 250px;
height: 250px;
background-color: var(--primary-light);
opacity: 0.5;
}
.ford-forscan-page .bg-shape-2 {
bottom: 10%;
left: -120px;
width: 200px;
height: 200px;
background-color: var(--primary-light);
opacity: 0.4;
}
.ford-forscan-page .bg-shape-3 {
top: 40%;
right: -100px;
width: 180px;
height: 180px;
background-color: var(--secondary);
opacity: 0.05;
}
.ford-forscan-page .bg-shape-4 {
top: 60%;
left: -80px;
width: 150px;
height: 150px;
background-color: var(--secondary);
opacity: 0.05;
}
/* Hero Section */
.ford-forscan-page .hero {
padding-top: 80px;
padding-bottom: 100px;
position: relative;
overflow: hidden;
}
.ford-forscan-page .hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.ford-forscan-page .hero-content {
max-width: 550px;
text-align: center;
}
.ford-forscan-page .hero-eyebrow {
display: inline-flex;
align-items: center;
padding: 8px 16px;
background-color: var(--primary-light);
color: var(--primary);
border-radius: var(--radius-sm);
font-weight: 600;
font-size: 14px;
margin-bottom: 24px;
margin-left: auto;
margin-right: auto;
}
.ford-forscan-page .hero-title { /* H1 */
font-size: 48px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 24px;
color: var(--text-dark);
}
.ford-forscan-page .hero-title span {
color: var(--primary);
position: relative;
display: inline-block;
}
.ford-forscan-page .hero-title span::after {
content: '';
position: absolute;
bottom: 8px;
left: 0;
width: 100%;
height: 10px;
background-color: rgba(24, 96, 235, 0.2);
z-index: -1;
border-radius: 10px;
}
.ford-forscan-page .hero-description {
font-size: 18px;
line-height: 1.6;
color: var(--text-light);
margin-bottom: 32px;
}
.ford-forscan-page .hero-buttons {
display: flex;
gap: 16px;
margin-top: 40px;
justify-content: center;
}
.ford-forscan-page .hero-image-container {
position: relative;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
}
.ford-forscan-page .hero-image-wrapper {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
background-color: white;
width: 100%;
max-width: 500px;
aspect-ratio: 1 / 1;
}
.ford-forscan-page .hero-3d-container {
position: relative;
width: 100%;
height: 100%;
}
.ford-forscan-page .hero-3d-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.ford-forscan-page .view-360-badge {
position: absolute;
top: 20px;
right: 20px;
background-color: rgba(24, 96, 235, 0.9);
color: white;
padding: 10px 16px;
border-radius: var(--radius-md);
font-weight: 600;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
z-index: 5;
box-shadow: var(--shadow-md);
}
/* Software Section */
.ford-forscan-page .software {
padding: 100px 0 60px;
background-color: var(--background);
position: relative;
}
.ford-forscan-page .software-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: flex-start;
}
.ford-forscan-page .software-image {
border-radius: var(--radius-lg);
overflow: hidden;
}
.ford-forscan-page .software-image img {
width: 100%;
height: auto;
display: block;
}
.ford-forscan-page .software-content {
max-width: 520px;
}
.ford-forscan-page .software-subtitle {
font-size: 14px;
font-weight: 600;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 16px;
}
.ford-forscan-page .software-title { /* H2 */
font-size: 36px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 24px;
line-height: 1.3;
}
.ford-forscan-page .software-description {
font-size: 17px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 32px;
}
.ford-forscan-page .software-list {
margin-bottom: 32px;
}
.ford-forscan-page .software-item {
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 20px;
}
.ford-forscan-page .software-icon {
width: 24px;
height: 24px;
background-color: var(--primary-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 12px;
flex-shrink: 0;
margin-top: 2px;
}
.ford-forscan-page .software-text {
font-size: 16px;
color: var(--text-light);
line-height: 1.5;
}
.ford-forscan-page .software-text strong {
color: var(--text-dark);
font-weight: 600;
}
.ford-forscan-page .software-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.ford-forscan-page .software-note {
margin-top: 24px;
padding: 16px;
background-color: var(--primary-light);
border-radius: var(--radius-md);
font-size: 14px;
color: var(--text-dark);
line-height: 1.5;
}
/* FORScan License Final Note Styling */
.ford-forscan-page .forscan-license-final-note-container {
padding: 40px 0;
background-color: var(--background-light);
}
.ford-forscan-page .forscan-license-final-note {
background-color: var(--primary-light);
border-radius: var(--radius-md);
padding: 20px 24px;
border: 1px solid var(--primary);
text-align: center;
max-width: 900px;
margin: 0 auto;
}
.ford-forscan-page .forscan-license-final-note p {
font-size: 14px;
color: var(--text-dark);
line-height: 1.6;
margin: 0;
}
.ford-forscan-page .forscan-license-final-note a {
color: var(--primary);
font-weight: 600;
text-decoration: underline;
}
.ford-forscan-page .forscan-license-final-note a:hover {
text-decoration: none;
}
/* Software Steps Styling */
.ford-forscan-page .software-steps {
background-color: var(--background);
border-radius: var(--radius-lg);
padding: 30px;
box-shadow: var(--shadow-md);
border: 1px solid var(--border);
max-width: 480px;
margin: 0 auto;
}
.ford-forscan-page .software-steps-title { /* H3 */
font-size: 24px;
font-weight: 700;
color: var(--primary);
text-align: center;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 2px solid var(--primary-light);
}
.ford-forscan-page .step-wrapper {
display: flex;
align-items: center;
margin-bottom: 30px;
position: relative;
}
/* EKLENEN YENİ KOD: Tüm adım çizgilerini kaldır */
.ford-forscan-page .step-wrapper::after {
display: none !important;
}
.ford-forscan-page .step-icon {
width: 60px;
height: 60px;
background-color: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: white;
margin-right: 20px;
position: relative;
z-index: 1;
flex-shrink: 0;
}
.ford-forscan-page .step-content {
flex-grow: 1;
position: relative;
}
.ford-forscan-page .step-content.right {
text-align: right;
}
.ford-forscan-page .step-number {
display: inline-block;
width: 28px;
height: 28px;
background-color: var(--primary-light);
color: var(--primary);
border-radius: 50%;
font-weight: 700;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
}
.ford-forscan-page .step-content.right .step-number {
margin-left: auto;
}
.ford-forscan-page .step-title { /* H4 */
font-size: 18px;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 8px;
}
.ford-forscan-page .step-description {
font-size: 15px;
color: var(--text-light);
line-height: 1.5;
}
.ford-forscan-page .step-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
}
.ford-forscan-page .step-link:hover {
text-decoration: underline;
}
/* Hide specific step connector lines */
.ford-forscan-page .step-wrapper:nth-child(1)::after,
.ford-forscan-page .step-wrapper:nth-child(2)::after {
display: none !important;
}
/* Add space to icons on the right in step-wrapper */
.ford-forscan-page .step-wrapper > .step-icon:last-child {
margin-left: 15px;
margin-right: 0;
}
/* Features Section */
.ford-forscan-page .features {
padding: 100px 0;
position: relative;
overflow: hidden;
background-color: var(--background-light);
}
.ford-forscan-page .section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 80px;
}
.ford-forscan-page .section-subtitle {
font-size: 14px;
font-weight: 600;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 16px;
}
.ford-forscan-page .section-title { /* H2 */
font-size: 36px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 24px;
line-height: 1.3;
}
.ford-forscan-page .section-description {
font-size: 18px;
color: var(--text-light);
line-height: 1.6;
}
.ford-forscan-page .features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.ford-forscan-page .feature-card {
background-color: var(--background);
border-radius: var(--radius-lg);
padding: 40px;
transition: all 0.3s ease;
border: 1px solid var(--border);
position: relative;
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
}
.ford-forscan-page .feature-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-md);
border-color: var(--primary-light);
}
.ford-forscan-page .feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 60px;
background-color: var(--primary);
border-radius: 0 2px 2px 0;
}
.ford-forscan-page .feature-icon {
margin-bottom: 24px;
width: 60px;
height: 60px;
border-radius: var(--radius-md);
background-color: var(--primary-light);
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: var(--primary);
align-self: center;
}
.ford-forscan-page .feature-title { /* H3 */
font-size: 20px;
font-weight: 700;
margin-bottom: 16px;
color: var(--text-dark);
text-align: center;
}
.ford-forscan-page .feature-description {
font-size: 16px;
color: var(--text-light);
line-height: 1.6;
flex-grow: 1;
text-align: center;
}
.ford-forscan-page .feature-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--primary);
font-weight: 600;
text-decoration: none;
margin-top: 24px;
font-size: 15px;
transition: gap 0.3s ease;
}
.ford-forscan-page .feature-link:hover {
gap: 12px;
}
/* Product Section */
.ford-forscan-page .product {
padding: 100px 0;
background-color: var(--background);
position: relative;
overflow: hidden;
}
.ford-forscan-page .product-shape-1 {
position: absolute;
width: 150px;
height: 150px;
background-color: rgba(24, 96, 235, 0.05);
top: -70px;
right: -70px;
border-radius: 50%;
}
.ford-forscan-page .product-shape-2 {
position: absolute;
width: 180px;
height: 180px;
background-color: rgba(255, 107, 53, 0.05);
bottom: -90px;
left: -90px;
border-radius: 50%;
}
.ford-forscan-page .product-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.ford-forscan-page .product-image-container {
position: relative;
}
.ford-forscan-page .product-image-card {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
background-color: white;
padding: 20px;
}
.ford-forscan-page .gallery-container {
width: 100%;
}
.ford-forscan-page .gallery-main {
width: 100%;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
background-color: #f8f9fa;
border-radius: var(--radius-md);
margin-bottom: 20px;
}
.ford-forscan-page .gallery-main img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.ford-forscan-page .gallery-thumbs {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
.ford-forscan-page .gallery-thumb {
width: 80px;
height: 80px;
border-radius: var(--radius-sm);
overflow: hidden;
cursor: pointer;
border: 2px solid transparent;
}
.ford-forscan-page .gallery-thumb.active {
border-color: var(--primary);
}
.ford-forscan-page .gallery-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ford-forscan-page .product-badges {
position: absolute;
top: 40px;
left: 40px;
display: flex;
flex-direction: column;
gap: 12px;
z-index: 5;
}
.ford-forscan-page .product-badge {
padding: 8px 16px;
border-radius: var(--radius-sm);
font-size: 14px;
font-weight: 600;
}
.ford-forscan-page .badge-new {
background-color: var(--primary);
color: white;
}
.ford-forscan-page .badge-popular {
background-color: var(--secondary);
color: white;
position: absolute;
top: auto;
left: auto;
bottom: 110px;
right: 20px;
z-index: 6;
}
.ford-forscan-page .product-content {
max-width: 480px;
}
.ford-forscan-page .product-subtitle {
font-size: 14px;
font-weight: 600;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 16px;
}
.ford-forscan-page .product-title { /* H2 */
font-size: 36px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 24px;
line-height: 1.3;
}
.ford-forscan-page .product-description {
font-size: 17px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 32px;
}
.ford-forscan-page .product-features {
margin-bottom: 40px;
}
.ford-forscan-page .product-feature {
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 20px;
}
.ford-forscan-page .feature-check {
min-width: 22px;
height: 22px;
background-color: var(--success);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 12px;
margin-top: 4px;
}
.ford-forscan-page .feature-text {
font-size: 16px;
color: var(--text-dark);
line-height: 1.5;
}
.ford-forscan-page .feature-text strong {
font-weight: 600;
}
/* CTA Section */
.ford-forscan-page .cta {
padding: 100px 0;
background-color: var(--primary-light);
position: relative;
overflow: hidden;
}
.ford-forscan-page .cta-shape-1 {
position: absolute;
top: -60px;
right: -60px;
width: 150px;
height: 150px;
background-color: rgba(24, 96, 235, 0.15);
border-radius: 50%;
}
.ford-forscan-page .cta-shape-2 {
position: absolute;
bottom: -70px;
left: -70px;
width: 120px;
height: 120px;
background-color: rgba(24, 96, 235, 0.1);
border-radius: 50%;
}
.ford-forscan-page .cta-container {
max-width: 800px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 2;
}
.ford-forscan-page .cta-title { /* H2 */
font-size: 36px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 24px;
}
.ford-forscan-page .cta-description {
font-size: 18px;
color: var(--text-light);
line-height: 1.6;
margin-bottom: 40px;
}
.ford-forscan-page .cta-buttons {
display: flex;
justify-content: center;
gap: 16px;
}
/* FAQ Section */
.ford-forscan-page .faq {
padding: 100px 0;
background-color: var(--background);
}
.ford-forscan-page .faq-container {
max-width: 900px;
margin: 0 auto;
}
.ford-forscan-page .faq-wrapper {
margin-top: 60px;
}
.ford-forscan-page .faq-column {
margin-bottom: 24px;
}
.ford-forscan-page .faq-item {
background-color: var(--background);
border: 1px solid var(--border);
border-radius: var(--radius-md);
transition: all 0.3s ease;
overflow: hidden;
margin-bottom: 16px;
display: block;
width: 100%;
}
.ford-forscan-page .faq-item:hover {
box-shadow: var(--shadow-sm);
border-color: var(--primary-light);
}
.ford-forscan-page .faq-question { /* This is effectively H3 or H4 level semantically */
padding: 24px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 600;
color: var(--text-dark);
user-select: none;
}
.ford-forscan-page .faq-icon {
color: var(--primary);
transition: transform 0.3s ease;
}
.ford-forscan-page .faq-answer {
padding: 0 24px;
height: 0;
overflow: hidden;
color: var(--text-light);
line-height: 1.6;
transition: all 0.3s ease;
visibility: hidden;
opacity: 0;
}
.ford-forscan-page .faq-item.active {
border-color: var(--primary-light);
box-shadow: var(--shadow-sm);
}
.ford-forscan-page .faq-item.active .faq-answer {
padding: 0 24px 24px;
height: auto;
visibility: visible;
opacity: 1;
}
.ford-forscan-page .faq-item.active .faq-icon {
transform: rotate(180deg);
}
/* Contact Section Styling */
.ford-forscan-page .contact-section {
padding: 80px 0;
background-color: var(--background-light);
text-align: center;
}
.ford-forscan-page .contact-header {
margin-bottom: 60px;
}
.ford-forscan-page .contact-title { /* H2 */
font-size: 32px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 12px;
}
.ford-forscan-page .contact-title-underline {
width: 60px;
height: 4px;
background-color: var(--primary);
margin: 0 auto 24px;
border-radius: 2px;
}
.ford-forscan-page .contact-description {
font-size: 17px;
color: var(--text-light);
line-height: 1.6;
max-width: 600px;
margin: 0 auto;
}
.ford-forscan-page .contact-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}
.ford-forscan-page .contact-card {
background-color: var(--background);
border-radius: var(--radius-lg);
padding: 30px;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
border: 1px solid var(--border);
}
.ford-forscan-page .contact-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.ford-forscan-page .contact-icon {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: var(--primary-light);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin: 0 auto 20px;
}
.ford-forscan-page .contact-card-title { /* H3 */
font-size: 18px;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 8px;
}
.ford-forscan-page .contact-card-detail {
font-size: 16px;
color: var(--primary);
text-decoration: none;
font-weight: 500;
}
.ford-forscan-page .contact-card-detail:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 1024px) {
.ford-forscan-page .hero-title {
font-size: 40px;
}
.ford-forscan-page .product-container,
.ford-forscan-page .software-container {
gap: 40px;
}
}
@media (max-width: 768px) {
.ford-forscan-page .hero {
padding-top: 60px;
}
.ford-forscan-page .hero-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.ford-forscan-page .hero-content {
text-align: center;
max-width: 100%;
}
.ford-forscan-page .hero-buttons {
justify-content: center;
}
.ford-forscan-page .hero-eyebrow {
justify-content: center;
}
.ford-forscan-page .hero-image-wrapper {
max-width: 400px;
}
.ford-forscan-page .product-container,
.ford-forscan-page .software-container {
grid-template-columns: 1fr;
}
.ford-forscan-page .product-content,
.ford-forscan-page .software-content {
max-width: 100%;
order: 1;
}
.ford-forscan-page .product-image-container,
.ford-forscan-page .software-image {
order: 2;
}
.ford-forscan-page .cta-buttons {
flex-direction: column;
align-items: center;
}
.ford-forscan-page .cta-buttons .btn {
width: 100%;
max-width: 300px;
}
.ford-forscan-page .gallery-main {
height: 300px;
}
.ford-forscan-page .faq-columns {
display: block;
}
/* Moved License Note Responsive */
.ford-forscan-page .software-license-note-card {
flex-direction: column;
text-align: center;
padding: 16px;
}
.ford-forscan-page .software-license-note-icon-container {
margin-bottom: 12px;
}
.ford-forscan-page .software-license-note-icon-display {
width: 40px;
height: 40px;
font-size: 20px;
}
.ford-forscan-page .software-license-note-title {
font-size: 15px;
}
.ford-forscan-page .software-license-note-text {
font-size: 13px;
}
/* Step adımları responsive */
.ford-forscan-page .step-wrapper {
flex-direction: column;
align-items: center; /* Center icon and content block */
/* padding-left: 30px; */ /* Removed as content is centered */
}
.ford-forscan-page .step-wrapper:not(:last-child):after {
left: 29px; /* This line is globally hidden by another rule, so its position is not critical here */
}
.ford-forscan-page .step-icon {
margin-bottom: 15px;
margin-right: 0; /* Icon itself will be centered by parent's align-items: center */
margin-left: 0; /* Added for robustness in centering */
}
/* Center all step content text on mobile */
.ford-forscan-page .step-content {
text-align: center;
width: 100%; /* Ensure it can take width to center its text */
}
.ford-forscan-page .step-content.right { /* Ensure this also centers if it was previously text-align: left */
text-align: center;
}
.ford-forscan-page .step-content .step-number { /* Center the step number bubble */
margin-left: auto;
margin-right: auto;
}
/* Specific reordering for steps 2 and 4 on mobile to put icon first */
/* These are the 2nd and 4th step-wrapper divs within .software-steps */
.ford-forscan-page .software-steps > .step-wrapper:nth-of-type(2) .step-icon,
.ford-forscan-page .software-steps > .step-wrapper:nth-of-type(4) .step-icon {
order: -1; /* Visually move icon to the top in column layout */
}
/* .step-content in these wrappers will naturally follow due to default order 0 */
.ford-forscan-page .forscan-license-final-note {
padding: 15px;
}
.ford-forscan-page .forscan-license-final-note p {
font-size: 13px;
}
/* Hide product badges on mobile */
.ford-forscan-page .product-badge.badge-new,
.ford-forscan-page .product-badge.badge-popular {
display: none !important; /* Added !important */
}
}
@media (min-width: 769px) {
/* Ensure product badges are visible on larger screens */
.ford-forscan-page .product-badge.badge-new,
.ford-forscan-page .product-badge.badge-popular {
display: inline-flex; /* Or 'flex', 'block' depending on their original display style if different */
}
/* Styles for step-content.right on desktop are implicitly handled by default flex behavior */
}
@media (max-width: 576px) {
.ford-forscan-page .container {
padding: 0 16px;
}
.ford-forscan-page .hero-title {
font-size: 32px;
}
.ford-forscan-page .hero-image-wrapper {
max-width: 300px;
}
.ford-forscan-page .section-title,
.ford-forscan-page .product-title,
.ford-forscan-page .software-title {
font-size: 28px;
}
.ford-forscan-page .feature-card {
padding: 30px;
}
.ford-forscan-page .gallery-thumb {
width: 60px;
height: 60px;
}
.ford-forscan-page .gallery-main {
height: 250px;
}
.ford-forscan-page .software-buttons {
flex-direction: column;
width: 100%;
}
.ford-forscan-page .software-buttons .btn {
width: 100%;
}
}
/* Desktop ekranlarda iki sütun yapısı */
@media (min-width: 768px) {
.ford-forscan-page .faq-columns {
display: flex;
justify-content: space-between;
gap: 24px;
}
.ford-forscan-page .faq-column {
flex: 0 0 calc(50% - 12px);
}
}
Ford Araçlarınız İçin Kablosuz FORScan Arıza Tespit Cihazı
FORScan Bluetooth Arıza Tespit Cihazı, Ford araçlarınızdaki elektronik sistemlerdeki hataları "pic18f25k80" çipi ile eksiksiz okur. HS-CAN/MS-CAN switch modifiyeli ve güncellenebilir yazılımlı bu cihaz, kapsamlı kablosuz tanılama çözümünüzdür.
Ürünü İnceleyin
Ürün Videosu
360° Görünüm
BLUETOOTH ARIZA TESPİT ÖZELLİKLERİ
Ford İçin Kapsamlı Kablosuz Tanılama
FORScan Bluetooth arıza tespit cihazımız, Ford araçlarınızdaki elektronik sistemlerin detaylı analizini kablosuz olarak yapar, güncel yazılım desteği sunar ve birçok kontrol modülüne erişim sağlar.
PIC18F25K80 Çip
İçerisindeki "pic18f25k80" microchip işlemci sayesinde aracınızdaki birçok modülü eksiksiz okur ve komutları yazar.
HS-CAN/MS-CAN Switch
Firmamız tarafından modifiye edilmiş HS-CAN/MS-CAN switch desteği ile gövde donanımları dahil birçok modüle bağlanın.
Windows & Android Uyumlu
Bluetooth bağlantısı sayesinde Windows ve Android cihazlarınızla uyumlu çalışır. (Firmamız sadece Windows için yazılım/destek sağlar; iOS desteği yoktur).
Güncellenebilir Yazılım
Sürekli güncellenen yazılım desteği sayesinde en yeni Ford modelleriyle uyumludur. Windows yazılım linki tarafınıza iletilir.
Geniş Arıza Tarama
Ford modellerinde motor, şanzıman, ABS, airbag ve diğer birçok kontrol modülündeki arızaları tarayın.
Kablosuz Bağlantı
Bluetooth teknolojisi ile Windows PC'nize veya Android cihazınıza kolayca bağlanın. Eşleştirme kodu "1234". (Firmamız sadece Windows için destek sağlar).
Modifiyeli
Bluetooth Versiyon





FORD UYUMLU (BLUETOOTH)
FORScan Bluetooth Arıza Tespit Cihazı
FORScan Bluetooth cihazımız, Ford araçlar için "pic18f25k80" çip ile donatılmış, HS-CAN/MS-CAN switch modifiyeli ve Bluetooth bağlantılıdır. Birçok modüle kablosuz erişim ve güncel araç desteği sunar.
Geniş Modül Erişimi (Bluetooth): "pic18f25k80" çip ve HS/MS-CAN switch ile birçok ECU'ya kablosuz bağlanır.
Ford Desteği: Geniş Ford model yelpazesiyle uyumludur.
Güncellenebilir Yazılım: Yeni modellere destek için Windows yazılım güncellemeleri.
Windows & Android Uyumlu Cihaz: Cihaz Windows ve Android ile çalışır. Firmamız Windows için yazılım/destek sağlar. iOS desteği yoktur.
Kolay Kurulum: FORScan yazılımını resmi web sitesinden veya sipariş durumu sorgulama sayfanızdan indirebilirsiniz. Kurulumu basittir ve Windows bilgisayarlar için uygundur. Eşleştirme kodu: 1234.
FORScan Bluetooth Cihazı Kullanım Adımları
1
FORScan Yazılımını İndirin
FORScan'in güncel sürümünü resmi web sitesinden veya sipariş durumu sorgulama ekranınızdan indirebilirsiniz. Bilgisayarınıza kurun.
2
Cihazı Araca Takın
FORScan Bluetooth arıza tespit cihazınızı aracınızın OBD2 portuna takın.
3
Bluetooth ile Eşleştirin
Windows bilgisayarınızın Bluetooth ayarlarından cihazı bulun ve "1234" kodu ile eşleştirin.
4
Arıza Tespiti ve Veri İzleme
FORScan yazılımını çalıştırın, araca bağlanın ve arıza kodlarını okuyabilir/silebilir, canlı verileri izleyebilirsiniz.
FORSCAN YAZILIMI (BLUETOOTH)
Ford İçin Kablosuz Tanılama
FORScan, Ford araçlar için özel olarak tasarlanmış, Windows tabanlı profesyonel bir tanılama yazılımıdır. Bluetooth cihazımız bu yazılımla tam uyumlu çalışarak kapsamlı kablosuz analiz imkanı sunar.
Türkçe Dil Desteği: FORScan yazılımı tam Türkçe dil desteği sunar.
Windows & Android Uyumlu Cihaz: Cihaz Windows ve Android ile çalışabilir. Firmamız Windows için yazılım/destek sağlar.
Kullanım Kolaylığı: Sezgisel arayüzü sayesinde kolay kullanım sağlar.
Sürekli Güncellemeler: Yazılım düzenli olarak güncellenir ve yeni araç desteği eklenir.
Not: Firmamız sadece Windows işletim sistemleri için yazılım desteği ve linki sağlamaktadır. Cihaz Android ile uyumlu olsa da, Android uygulamaları için destek ve yazılım linki tarafımızca sağlanmamaktadır. iOS desteği yoktur.
FORScan Lisans Bilgisi:
Firmamız, FORScan yazılımı ile kullanılmak üzere tasarlanmış Ford arıza tespit donanımının satışını yapmaktadır. FORScan yazılımının kendisi ve olası lisansları, doğrudan FORScan geliştiricileri (forscan.org) üzerinden temin edilmelidir. FORScan, bazı gelişmiş özellikleri için lisans gerektirebilir ve genellikle 2 aylık ücretsiz deneme sürümü sunulmaktadır.
SIKÇA SORULAN SORULAR (BLUETOOTH)
FORScan Bluetooth Cihazı Hakkında Merak Edilenler
FORScan Bluetooth arıza tespit cihazı ile ilgili en çok sorulan soruları ve cevaplarını derledik.
FORScan Bluetooth cihazı hangi araçlarla uyumludur?
FORScan Bluetooth cihazı, Ford marka araçların geniş bir yelpazesiyle uyumludur. Güncellenebilir yazılımı sayesinde yeni çıkan modelleri de destekler.
Cihazın standart OBD2 cihazlarından farkı nedir?
İçerisinde "pic18f25k80" çip bulunur ve firmamız tarafından yapılan HS-CAN/MS-CAN switch modifiyesi sayesinde aracınızdaki motor, şanzıman, ABS, airbag gibi standart modüllerin yanı sıra gövde donanımları gibi birçok kontrol ünitesine kablosuz erişim sağlar. Modifiyesiz ürünler bu kapsamlı erişimi sunmaz.
Yazılım güncellemeleri nasıl yapılır?
FORScan yazılımı sürekli güncellenmektedir. Cihazı satın aldıktan sonra FORScan resmi web sitesinden veya sipariş durumu sorgulama sayfanızdan Windows için en güncel yazılım sürümünü indirip kurabilirsiniz.
Hangi işletim sistemleriyle uyumludur?
Cihazımız Bluetooth üzerinden Windows ve Android işletim sistemleriyle uyumludur. Ancak firmamız sadece Windows için yazılım ve destek sağlamaktadır. iOS desteği bulunmamaktadır.
Mobil cihazımla (Android/iOS) kullanabilir miyim?
Cihaz Android cihazlarla teknik olarak uyumlu olsa da, firmamız mobil uygulamalar (Android dahil) için yazılım linki veya teknik destek sağlamamaktadır; desteğimiz sadece Windows PC'ler içindir. iOS ile uyumlu değildir ve iOS için destek verilmemektedir.
Kurulum için ne gereklidir?
Cihazı kullanmak için Bluetooth özellikli bir Windows PC gereklidir. FORScan yazılımını resmi web sitesinden veya sipariş durumu sorgulama sayfanızdan indirip kurduktan sonra, cihazı "1234" kodu ile eşleştirmeniz yeterlidir.
Kablolu USB modeli ile farkı nedir?
İşlevsel olarak kablolu USB modeli ile Bluetooth modeli arasında bir fark yoktur. Temel fark bağlantı türüdür; bu model Bluetooth ile kablosuz bağlanırken, diğeri USB kablosu ile bağlanır. Her ikisi de aynı "pic18f25k80" çipe ve HS/MS-CAN switch modifiyesine sahiptir.
Cihazın güç kaynağı nedir?
FORScan Bluetooth cihazı gücünü doğrudan aracın OBD2 portundan alır, ek bir pil veya şarj gerektirmez.
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
العربية