Ford FORScan Gizli Özellik Açma Cihazı / Bluetooth Modifiyeli
Ford araçlar için Bluetooth gizli özellik açma cihazı. Kablosuz bağlantı sayesinde kolayca kullanabileceğiniz bu cihaz, standart donanımlarda kapalı olan fonksiyonları aktifleştirmenize imkan tanır. Pic18f25k80 çipi ve HS-CAN/MS-CAN protokolü ile araç yazılımındaki gizli menülere erişim sağlar.
FORScan Bluetooth Gizli Özellik Aktivasyon 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);
}
/* 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;
}
/* 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;
}
.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;
}
/* 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;
}
/* Gizli Özellikler Bölümü */
.ford-forscan-page .ford-hidden-features {
padding: 80px 0;
background-color: var(--background-light);
position: relative;
overflow: hidden;
}
.ford-forscan-page .ford-hidden-features::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(24, 96, 235, 0.05);
}
.ford-forscan-page .ford-hidden-features::after {
content: '';
position: absolute;
bottom: -100px;
left: -100px;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(24, 96, 235, 0.05);
}
.ford-forscan-page .ford-features-header {
text-align: center;
margin-bottom: 60px;
position: relative;
z-index: 2;
}
.ford-forscan-page .ford-features-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 30px;
position: relative;
z-index: 2;
}
.ford-forscan-page .ford-feature-item {
background-color: var(--background);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
padding: 30px;
display: flex;
align-items: flex-start;
transition: all 0.4s ease;
border: 1px solid var(--border);
position: relative;
overflow: hidden;
}
.ford-forscan-page .ford-feature-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 0;
background-color: var(--primary);
border-radius: 0 0 5px 0;
transition: height 0.4s ease;
}
.ford-forscan-page .ford-feature-item:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-md);
}
.ford-forscan-page .ford-feature-item:hover::before {
height: 100%;
}
.ford-forscan-page .ford-feature-icon-container {
width: 80px;
height: 80px;
background-color: var(--primary-light);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin-right: 24px;
flex-shrink: 0;
transition: all 0.4s ease;
position: relative;
}
.ford-forscan-page .ford-feature-icon-container i {
font-size: 35px;
color: var(--primary);
transition: all 0.4s ease;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.ford-forscan-page .feature-icon-default {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.ford-forscan-page .feature-icon-hover {
opacity: 0;
transform: translate(-50%, -50%) scale(0.5);
}
.ford-forscan-page .ford-feature-item:hover .ford-feature-icon-container {
/* background-color: var(--primary); */ /* Removed blue background on hover */
}
.ford-forscan-page .ford-feature-item:hover .feature-icon-default {
opacity: 0;
transform: translate(-50%, -50%) scale(0.5);
}
.ford-forscan-page .ford-feature-item:hover .feature-icon-hover {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
color: var(--success); /* Changed icon color on hover to green */
}
.ford-forscan-page .ford-feature-content {
flex-grow: 1;
}
.ford-forscan-page .ford-feature-name {
font-size: 18px;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 10px;
transition: color 0.3s ease;
}
.ford-forscan-page .ford-feature-description {
font-size: 15px;
color: var(--text-light);
line-height: 1.5;
}
.ford-forscan-page .ford-feature-item:hover .ford-feature-name {
color: var(--primary);
}
.ford-forscan-page .ford-feature-more {
background-color: #f1f5ff;
border: 2px dashed var(--primary);
}
.ford-forscan-page .ford-feature-more .ford-feature-icon-container {
background-color: #d2e1ff;
}
.ford-forscan-page .ford-feature-more:hover {
background-color: #e4edff;
}
/* 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;
}
.ford-forscan-page .ford-features-grid {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}
@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 */
}
.ford-forscan-page .step-wrapper:not(:last-child):after {
left: 29px;
}
.ford-forscan-page .step-icon {
margin-bottom: 15px;
margin-right: 0;
margin-left: 0;
}
.ford-forscan-page .step-content {
text-align: center;
width: 100%;
}
.ford-forscan-page .step-content.right {
text-align: center;
}
.ford-forscan-page .step-content .step-number {
margin-left: auto;
margin-right: auto;
}
.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;
}
.ford-forscan-page .forscan-license-final-note {
padding: 15px;
}
.ford-forscan-page .forscan-license-final-note p {
font-size: 13px;
}
.ford-forscan-page .product-badge.badge-new,
.ford-forscan-page .product-badge.badge-popular {
display: none !important;
}
/* Gizli Özellikler Responsive */
.ford-forscan-page .ford-features-title {
font-size: 30px;
}
.ford-forscan-page .ford-features-subtitle {
font-size: 16px;
}
.ford-forscan-page .ford-features-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.ford-forscan-page .ford-feature-item {
padding: 20px;
}
.ford-forscan-page .ford-feature-icon-container {
width: 60px;
height: 60px;
margin-right: 16px;
}
.ford-forscan-page .ford-feature-icon-container i {
font-size: 28px;
}
.ford-forscan-page .ford-feature-name {
font-size: 16px;
}
.ford-forscan-page .ford-feature-description {
font-size: 14px;
}
}
@media (min-width: 769px) {
.ford-forscan-page .product-badge.badge-new,
.ford-forscan-page .product-badge.badge-popular {
display: inline-flex;
}
}
@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%;
}
}
@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ızdaki Gizli Özellikleri FORScan Bluetooth ile Keşfedin
FORScan Bluetooth Gizli Özellik Aktivasyon Cihazı, Ford araçlarınızdaki gizli kalmış özellikleri "pic18f25k80" çipi ile güvenle açar. HS-CAN/MS-CAN switch modifiyeli bu cihaz, aracınızı kişiselleştirmeniz için kablosuz çözümünüzdür.
Özellik Listesini Gör
Tanıtım Videosu
360° Görünüm
BLUETOOTH CİHAZ ÖZELLİKLERİ
Güvenilir Donanım, Kolay Kullanım
FORScan Bluetooth cihazımız, gizli özellikleri güvenle aktive etmeniz için gerekli donanım ve yazılım uyumluluğunu sunar.
PIC18F25K80 Çip
Stabil ve güvenilir "pic18f25k80" microchip işlemci ile aracınızdaki modüllere sorunsuz erişim sağlayın.
HS-CAN/MS-CAN Switch
Modifiyeli HS-CAN/MS-CAN switch desteği ile Ford'unuzun tüm sistemlerine erişerek kapsamlı kişiselleştirme yapın.
Windows & Android Uyumlu
Bluetooth ile Windows PC veya Android cihazlarınıza bağlanın. (Gizli özellik aktivasyonu için Windows ve FORScan tam sürüm önerilir).
Güvenli Kodlama
Doğru kullanıldığında, aracınızın elektronik sistemlerine zarar vermeden güvenli bir şekilde özellik aktivasyonu yapın.
Geniş Özellik Yelpazesi
Aracınızın model ve donanımına bağlı olarak onlarca farklı gizli özelliği açma potansiyeli.
Kablosuz Kolaylık
Kablolarla uğraşmadan, Bluetooth üzerinden rahatça bağlantı kurarak işlemlerinizi gerçekleştirin. Eşleştirme kodu "1234".
FORD GİZLİ ÖZELLİK LİSTESİ
Aktive Edilebilen Popüler Gizli
Özellikler
FORScan Bluetooth cihazınızla aracınızda aşağıdaki gibi birçok gizli özelliği aktive edebilirsiniz. Özelliklerin kullanılabilirliği araç modeline ve donanımına göre değişiklik gösterebilir.
Yokuş Kalkış Desteği
Yokuşta kalkış yaparken aracın geri kaymasını önleyen sistem.
Hız Sabitleme (Cruise Control)
Uzun yolculuklarda sabit hız koruyan sürüş konforu özelliği.
Sis Farı Aktivasyonu
Düşük görüş koşullarında sürüş güvenliğini artıran sis farları.
Otomatik Kapı Kilitleme
Belirli bir hızın üzerinde otomatik olarak kapıları kilitleyen güvenlik sistemi.
Ford Eco Mod
Yakıt tasarrufu sağlayan ekonomik sürüş modu.
Lastik Basınç Göstergesi
Lastik basıncını gerçek zamanlı izleme özelliği.
Radyo Bilgi Ekranı
Gösterge panelinde radyo bilgilerini görüntüleme.
Alarm ve AUX Aktivasyonu
Güvenlik alarmı ve harici ses girişi aktivasyonu.
Otomatik Geri Kilitleme
Belirli bir süre içinde kapı açılmazsa otomatik yeniden kilitleme.
Kumandadan Cam Kontrolü
Uzaktan kumanda ile camları açıp kapatabilme.
Ayna Altı Aydınlatma
Yan aynaların altına yerleştirilen ışıklandırma sistemi.
Daha Fazla Özellik
Araç donanım modeline göre değişiklik gösterebilir.
Önemli Not: Listelenen gizli özellikler, aracınızın modeline, üretim yılına ve mevcut donanım paketine göre farklılık gösterebilir. Tüm özelliklerin her araçta etkinleştirilebileceği garanti edilmez.
Gizli Özellik
Bluetooth Kodlama





FORD GİZLİ ÖZELLİK (BLUETOOTH)
FORScan Bluetooth Gizli Özellik Aktivasyon Cihazı
FORScan Bluetooth cihazımız, Ford araçlarınızdaki gizli özellikleri açmak için "pic18f25k80" çip, HS-CAN/MS-CAN switch modifiyesi ve Bluetooth bağlantısı sunar. Aracınızı kişiselleştirin ve sürüş deneyiminizi zenginleştirin.
Kapsamlı Özellik Aktivasyonu: Aracınızın desteklediği onlarca gizli özelliği açın.
Geniş Ford Model Desteği: Popüler Ford modelleriyle uyumludur.
FORScan Yazılımı ile Uyumlu: Windows tabanlı FORScan yazılımı ile tam entegrasyon.
Gizli Özellik Aktivasyon 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. (Bazı özellikler için Genişletilmiş Lisans gerekebilir.)
2
Cihazı Araca Takın
FORScan Bluetooth aktivasyon 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
Gizli Özellikleri Aktive Edin
FORScan yazılımını çalıştırın, araca bağlanın ve istediğiniz gizli özellikleri menülerden bularak aktive edin.
FORSCAN İLE GİZLİ ÖZELLİK (BLUETOOTH)
Ford'unuzu Özelleştirin, Potansiyelini Açığa Çıkarın
FORScan, Ford araçlarındaki gizli özellikleri açmak için kullanılan, Windows tabanlı güçlü bir yazılımdır. Bluetooth cihazımız bu yazılımla tam uyumlu çalışarak aracınızı kişiselleştirmenizi sağlar.
Türkçe Dil Desteği: FORScan yazılımı tam Türkçe dil desteği sunar.
Geniş Uyumluluk: Cihaz Windows ve Android ile çalışır. Firmamız Windows için yazılım/destek sağlar.
Kolay Aktivasyon: Sezgisel arayüzü ile özellikleri kolayca açın.
Yeni Özellikler: Yazılım güncellemeleriyle yeni gizli özelliklere erişin.
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. Gizli özellik aktivasyonu için FORScan Genişletilmiş Lisansı gerekebilir.
FORScan Lisans Bilgisi:
Firmamız, FORScan yazılımı ile kullanılmak üzere tasarlanmış Ford gizli özellik aktivasyon 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, gizli özellik aktivasyonu gibi bazı gelişmiş işlemler için Genişletilmiş Lisans (Extended License) gerektirebilir. Bu lisans genellikle 2 aylık ücretsiz deneme sürümü ile veya ücretli olarak temin edilebilir.
GİZLİ ÖZELLİK AKTİVASYONU SSS (BLUETOOTH)
FORScan Bluetooth ile Gizli Özellikler Hakkında Merak Edilenler
FORScan Bluetooth ile gizli özellik aktivasyonu hakkında en çok sorulan soruları ve cevaplarını derledik.
Hangi Ford modellerinde gizli özellik açabilirim?
FORScan Bluetooth cihazı ve yazılımı, birçok Ford modelinde gizli özellik aktivasyonunu destekler. Desteklenen özellikler modele ve yıla göre değişebilir.
Bu cihazla hangi gizli özellikleri açabilirim?
Amerikan park, alarm aktivasyonu, korna ile selamlama, otomatik kapı kilitleme, lastik basınç sensörü (TPMS) kalibrasyonu gibi birçok popüler özelliği ve daha fazlasını aracınızın desteklediği ölçüde açabilirsiniz. "pic18f25k80" çip ve HS/MS-CAN switch modifiyesi sayesinde geniş modül erişimi sunar.
Gizli özellik açmak için ek lisans gerekir mi?
Evet, çoğu gizli özellik aktivasyonu için FORScan yazılımında Genişletilmiş Lisans (Extended License) gereklidir. Bu lisansı FORScan'in resmi web sitesinden ücretsiz deneme sürümü olarak veya ücretli olarak alabilirsiniz.
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.
Android ile gizli özellik açabilir miyim?
Cihazımız Android ile uyumludur. FORScan Lite gibi Android uygulamaları ile bazı temel özellikler ve arıza okuma yapılabilir, ancak kapsamlı gizli özellik aktivasyonu için genellikle Windows tabanlı FORScan yazılımı ve Genişletilmiş Lisans önerilir. Firmamız Windows için destek sağlar.
Gizli özellik açma işlemi güvenli midir?
Doğru adımlar izlendiğinde ve güvenilir kaynaklardan bilgi alındığında genellikle güvenlidir. Ancak, yanlış parametre değişiklikleri sorunlara yol açabilir. İşlem yapmadan önce mutlaka yedekleme yapmanız ve dikkatli olmanız önerilir. Cihazımız "pic18f25k80" çip ile stabil bağlantı sunar.
Bluetooth modeli gizli özellik için yeterli mi?
Evet, Bluetooth modelimiz kablolu model ile aynı "pic18f25k80" çip ve HS/MS-CAN switch modifiyesine sahiptir. Gizli özellik aktivasyonu için kablosuz bağlantı kolaylığı sunar ve aynı işlevselliğe 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
العربية