Kia GDS Arıza Tespit Cihazı
Kia GDS VCi Arıza Tespit Cihazı, Yetkili servisin kullandığı Hyundai ve Kia marka araçlarda Arıza Tespit yapabilmeniz için imal edilmiş bir Arıza Tespit Cihazıdır.
KIA GDS Arıza Tespit Cihazı - Profesyonel Teşhis
/* KIA GDS - Optimize Edilmiş Tasarım */
:root {
--primary: #c5282f; /* KIA Red */
--primary-dark: #a0222a;
--primary-light: #e63946;
--accent: #2d2d2d; /* Dark Accent */
--accent-light: #454545;
--success: #27ae60;
--light-bg: #f8fafb;
--gradient-bg: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
--text-dark: #0f172a;
--text-light: #64748b;
--border-color: #e2e8f0;
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--border-radius: 12px;
--border-radius-lg: 16px;
--transition: all 0.3s ease;
--font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}
.kia-page * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.kia-page, .kia-page button, .kia-page input, .kia-page select, .kia-page textarea {
font-family: var(--font-family);
}
.kia-page {
font-family: var(--font-family);
color: var(--text-dark);
background: var(--light-bg);
overflow-x: hidden;
line-height: 1.6;
font-size: 20px;
}
/* Ortak Animasyonlar */
@keyframes patternMove {
0% { transform: translateX(0); }
100% { transform: translateX(70px); }
}
@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}
@keyframes lightboxZoom {
from { transform: scale(0.9); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
@keyframes slidePattern {
0% { transform: translateX(-100px); }
100% { transform: translateX(100px); }
}
/* Ortak Bileşenler */
.icon-wrapper, .feature-icon-wrapper, .details-feature-icon, .capability-icon,
.software-icon, .content-icon, .support-icon, .contact-icon, .notice-icon {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: var(--transition);
}
.card-base, .feature-card, .details-feature, .capability-card, .software-card,
.content-item, .support-card, .faq-item, .spec-category {
background: white;
border-radius: var(--border-radius);
border: 1px solid var(--border-color);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.card-base:hover, .feature-card:hover, .details-feature:hover, .capability-card:hover,
.software-card:hover, .content-item:hover, .support-card:hover, .spec-category:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.gradient-text {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Hero Section */
.hero-section {
position: relative;
min-height: 100vh;
background: linear-gradient(135deg, #fef7f7 0%, #fdf2f2 100%);
display: flex;
align-items: center;
overflow: hidden;
}
.hero-pattern {
position: absolute;
width: 100%;
height: 100%;
opacity: 0.03;
background-image:
repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(197,40,47,.05) 35px, rgba(197,40,47,.05) 70px),
repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(197,40,47,.03) 35px, rgba(197,40,47,.03) 70px);
animation: patternMove 20s linear infinite;
}
.kia-page .hero-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 10;
}
/* Sol taraf - Metin içeriği */
.kia-page .hero-content {
animation: fadeInLeft 0.8s ease-out;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.kia-page .hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
padding: 0.5rem 1.2rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1.5rem;
box-shadow: var(--shadow-md);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.kia-page .hero-title {
font-size: clamp(2.2rem, 4.5vw, 3rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.5rem;
color: var(--text-dark);
letter-spacing: -0.02em;
}
.kia-page .hero-title .gradient-text {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.kia-page .hero-description {
font-size: 1.125rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 2rem;
font-weight: 400;
}
/* Özellikler Grid */
.kia-page .features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
margin-bottom: 2.5rem;
}
.kia-page .feature-card {
background: white;
padding: 1.2rem;
border-radius: 12px;
border: 1px solid var(--border-color);
display: flex;
align-items: center;
gap: 1rem;
transition: all 0.3s ease;
cursor: default;
}
.kia-page .feature-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-light);
}
.kia-page .feature-icon-wrapper {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-light), var(--primary));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.kia-page .feature-icon-wrapper i {
color: white;
font-size: 1.1rem;
}
.kia-page .feature-text {
font-size: 0.875rem;
font-weight: 500;
color: var(--text-dark);
line-height: 1.4;
}
/* CTA Butonları */
.kia-page .hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 2rem;
justify-content: center;
}
.kia-page .btn {
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
cursor: pointer;
border: none;
position: relative;
overflow: hidden;
}
.kia-page .btn-primary {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
box-shadow: 0 4px 14px rgba(197, 40, 47, 0.25);
}
.kia-page .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(197, 40, 47, 0.35);
}
.kia-page .btn-secondary {
background: white;
color: var(--primary);
border: 2px solid var(--border-color);
box-shadow: var(--shadow-sm);
}
.kia-page .btn-secondary:hover {
background: var(--light-bg);
border-color: var(--primary);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.kia-page .btn-whatsapp {
background: linear-gradient(135deg, #25d366, #128c7e);
color: white;
box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.kia-page .btn-whatsapp:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
/* Trust Badges */
.kia-page .trust-badges {
display: flex;
gap: 1.5rem;
align-items: center;
flex-wrap: wrap;
justify-content: center;
}
.kia-page .trust-badge {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--text-light);
font-weight: 500;
}
.kia-page .trust-badge i {
color: var(--accent);
font-size: 1.1rem;
}
/* Sağ taraf - Ürün görseli */
.kia-page .hero-visual {
position: relative;
animation: fadeInRight 0.8s ease-out;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.kia-page .product-showcase {
position: relative;
background: white;
border-radius: 24px;
padding: 1.5rem;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
border: 1px solid var(--border-color);
max-width: 500px;
margin: 0 auto;
}
.kia-page #media-display {
position: relative;
width: 100%;
padding-top: 100%; /* 1:1 en-boy oranı */
margin-bottom: 1rem;
border-radius: 16px;
overflow: hidden;
}
.kia-page #media-display iframe,
.kia-page #media-display img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
object-fit: cover;
}
.kia-page .showcase-badge {
position: absolute;
top: 10px;
right: 10px;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
color: white;
padding: 0.4rem 1rem;
border-radius: 50px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
box-shadow: var(--shadow-md);
z-index: 10;
max-width: calc(100% - 20px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Thumbnail Gallery - Yeni tasarım */
.kia-page .thumbnail-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
gap: 0.75rem;
justify-content: center;
margin-bottom: 1.5rem;
}
.kia-page .thumbnail {
width: 100%;
padding-top: 100%; /* Kare thumbnail'ler için */
position: relative;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
border: 3px solid transparent;
transition: all 0.3s ease;
}
.kia-page .thumbnail img, .kia-page .thumbnail .icon-360 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: var(--primary);
background-color: #fdf2f2;
}
.kia-page .thumbnail::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.1);
opacity: 0;
transition: opacity 0.3s ease;
}
.kia-page .thumbnail:hover::after {
opacity: 1;
}
.kia-page .thumbnail[data-type="360"]:hover::after {
opacity: 0;
}
.kia-page .thumbnail.active {
border-color: var(--primary);
box-shadow: 0 0 0 2px rgba(197, 40, 47, 0.2);
}
.kia-page .thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Floating Elements */
.kia-page .floating-element {
position: absolute;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-light), var(--primary));
opacity: 0.1;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}
.kia-page .float-1 {
width: 100px;
height: 100px;
top: 10%;
left: 5%;
animation-delay: 0s;
}
.kia-page .float-2 {
width: 150px;
height: 150px;
bottom: 10%;
right: 5%;
animation-delay: 2s;
}
.kia-page .float-3 {
width: 80px;
height: 80px;
top: 50%;
right: 10%;
animation-delay: 4s;
}
/* Software Notice - Yeni tasarım */
.kia-page .notice-card {
background: linear-gradient(135deg, #fff5f5, #fef2f2);
border: 1px solid #fecaca;
border-radius: 16px;
padding: 1.5rem;
margin-top: 2rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
text-align: center;
}
.kia-page .notice-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, #ef4444, #dc2626);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.kia-page .notice-icon i {
color: white;
font-size: 1.5rem;
}
.kia-page .notice-content {
text-align: center;
}
.kia-page .notice-title {
font-size: 0.875rem;
font-weight: 700;
color: #dc2626;
margin-bottom: 0.25rem;
text-align: center;
}
.kia-page .notice-text {
font-size: 0.875rem;
color: #7f1d1d;
line-height: 1.5;
text-align: center;
}
/* VAT Notice - Alt bilgi */
.kia-page .bottom-notice {
text-align: center;
margin-top: 1.5rem;
}
.kia-page .bottom-notice p {
font-size: 0.875rem;
color: var(--text-light);
margin: 0;
font-weight: 500;
}
/* Lightbox - Modern tasarım */
.kia-page .lightbox {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 1000;
backdrop-filter: blur(10px);
}
.kia-page .lightbox.active {
opacity: 1;
visibility: visible;
}
.kia-page .lightbox-content {
position: relative;
max-width: 90vw;
max-height: 90vh;
animation: lightboxZoom 0.3s ease;
}
@keyframes lightboxZoom {
from {
transform: scale(0.9);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
.kia-page .lightbox-image {
max-width: 100%;
max-height: 90vh;
border-radius: 16px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.kia-page .lightbox-close {
position: absolute;
top: -40px;
right: 0;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.kia-page .lightbox-close:hover {
background: rgba(255, 255, 255, 0.2);
transform: rotate(90deg);
}
.kia-page .lightbox-close i {
color: white;
font-size: 1.2rem;
}
.kia-page .lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.kia-page .lightbox-nav:hover {
background: rgba(255, 255, 255, 0.2);
}
.kia-page .lightbox-nav i {
color: white;
font-size: 1.2rem;
}
.kia-page .lightbox-prev {
left: 20px;
}
.kia-page .lightbox-next {
right: 20px;
}
/* Responsive Design */
@media (max-width: 1024px) {
.kia-page .hero-container {
grid-template-columns: 1fr;
gap: 3rem;
padding: 2rem 1.5rem;
}
.kia-page .hero-content {
text-align: center;
}
.kia-page .features-grid {
grid-template-columns: 1fr;
}
.kia-page .hero-actions {
justify-content: center;
}
.kia-page .trust-badges {
justify-content: center;
}
.kia-page .hero-visual {
max-width: 600px;
margin: 0 auto;
}
}
@media (max-width: 768px) {
.kia-page .hero-title {
font-size: 2rem;
}
.kia-page .hero-description {
font-size: 1rem;
}
.kia-page .product-showcase {
padding: 1.2rem;
}
.kia-page .thumbnail-gallery {
grid-template-columns: repeat(5, 1fr);
gap: 0.5rem;
margin-bottom: 1rem;
}
.kia-page .thumbnail {
padding-top: 100%;
}
.kia-page .btn {
padding: 0.875rem 1.5rem;
font-size: 0.875rem;
}
.kia-page .hero-actions {
flex-direction: column;
width: 100%;
}
.kia-page .btn {
width: 100%;
justify-content: center;
}
.kia-page .notice-card {
flex-direction: column;
text-align: center;
}
.kia-page .notice-content {
text-align: center;
}
.kia-page .bottom-notice {
padding: 0.5rem 1rem;
width: calc(100% - 2rem);
}
.kia-page .bottom-notice p {
font-size: 0.75rem;
}
}
@media (max-width: 480px) {
.kia-page .hero-section {
min-height: auto;
padding: 2rem 0 4rem;
}
.kia-page .hero-container {
padding: 0 1rem;
}
.kia-page .hero-badge {
font-size: 0.75rem;
padding: 0.375rem 1rem;
}
.kia-page .trust-badge {
font-size: 0.75rem;
}
.kia-page .feature-card {
padding: 1rem;
}
.kia-page .feature-text {
font-size: 0.8125rem;
}
.kia-page .showcase-badge {
font-size: 0.625rem;
padding: 0.375rem 1rem;
}
.kia-page .product-showcase {
padding: 1rem;
}
.kia-page .thumbnail-gallery {
grid-template-columns: repeat(5, 1fr);
gap: 0.4rem;
margin-bottom: 1rem;
}
.kia-page .thumbnail {
border-radius: 8px;
border-width: 2px;
}
.kia-page .thumbnail img,
.kia-page .thumbnail .icon-360 {
border-radius: 6px;
font-size: 1.5rem;
}
.kia-page .notice-card {
padding: 1rem;
margin-top: 1rem;
}
.kia-page .notice-icon {
width: 40px;
height: 40px;
}
.kia-page .notice-icon i {
font-size: 1.2rem;
}
.kia-page .notice-title {
font-size: 0.8rem;
}
.kia-page .notice-text {
font-size: 0.8rem;
}
}
/* Details Section - Orijinal Tasarım Korundu */
.details-section {
padding: 5rem 2rem;
background: linear-gradient(135deg, #fef7f7 0%, #fdf2f2 100%);
position: relative;
overflow: hidden;
margin-bottom: 0;
}
.details-section:nth-child(even) {
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}
.details-section:last-of-type {
background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}
.details-section::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
opacity: 0.03;
background-image:
repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(197,40,47,.05) 35px, rgba(197,40,47,.05) 70px),
repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(197,40,47,.03) 35px, rgba(197,40,47,.03) 70px);
animation: patternMove 20s linear infinite;
}
/* Why Choose Section - Orijinal Tasarım */
.why-icom-section-new {
background: #ffffff;
position: relative;
}
.details-container {
max-width: 1400px;
margin: 0 auto;
position: relative;
z-index: 10;
}
.details-header {
text-align: center;
margin-bottom: 4rem;
margin-top: 2rem;
}
.details-header h2 {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 900;
margin-top: 2rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
letter-spacing: -0.02em;
}
.details-header .gradient-text {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.details-header p {
font-size: 1.125rem;
line-height: 1.7;
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
font-weight: 400;
}
.details-main {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 3rem;
margin-bottom: 4rem;
align-items: center;
}
.details-content {
padding: 0;
}
.details-content h3 {
font-size: 2rem;
font-weight: 700;
margin-top: 2rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
text-align: center;
}
.details-content p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-light);
margin-bottom: 2rem;
text-align: center;
}
.details-content .additional-text {
font-size: 1rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 2rem;
text-align: center;
}
.details-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.details-feature {
background: var(--light-bg);
padding: 1.2rem;
border-radius: 12px;
border: 1px solid var(--border-color);
display: flex;
align-items: center;
gap: 1rem;
transition: all 0.3s ease;
}
.details-feature:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-light);
background: white;
}
.details-feature-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-light), var(--primary));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.details-feature-icon i {
color: white;
font-size: 1.1rem;
}
.details-feature-text {
font-size: 0.875rem;
font-weight: 500;
color: var(--text-dark);
line-height: 1.4;
}
.details-visual {
position: relative;
background: white;
border-radius: 20px;
padding: 1rem;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
border: 1px solid var(--border-color);
max-width: 350px;
}
.details-visual img {
width: 100%;
border-radius: 12px;
margin-bottom: 1rem;
}
.visual-info-cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.visual-info-card {
background: var(--light-bg);
padding: 1rem;
border-radius: 12px;
text-align: center;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.visual-info-card:hover {
background: white;
box-shadow: var(--shadow-md);
transform: translateY(-2px);
}
.visual-info-card i {
font-size: 1.5rem;
color: var(--primary);
margin-bottom: 0.5rem;
display: block;
}
.visual-info-card-title {
font-size: 0.75rem;
color: var(--text-light);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.25rem;
}
.visual-info-card-value {
font-size: 0.875rem;
color: var(--text-dark);
font-weight: 700;
}
.stats-section {
background: white;
border-radius: 24px;
padding: 3rem;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
border: 1px solid var(--border-color);
text-align: center;
}
.stats-section h3 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 2rem;
color: var(--text-dark);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.stat-item {
padding: 1.5rem;
background: var(--light-bg);
border-radius: 16px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.stat-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--success), var(--accent));
transform: scaleX(0);
transition: transform 0.4s ease;
}
.stat-item:hover::before {
transform: scaleX(1);
}
.stat-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
background: white;
}
.stat-number {
font-size: 2.5rem;
font-weight: 900;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
display: block;
}
.stat-label {
font-size: 1rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.stat-description {
font-size: 0.875rem;
color: var(--text-light);
line-height: 1.5;
}
/* Timeline Styles */
.timeline-container {
position: relative;
max-width: 1200px;
margin: 0 auto;
}
.timeline-progress {
position: relative;
height: 4px;
background: var(--border-color);
border-radius: 2px;
margin-bottom: 3rem;
overflow: hidden;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
width: 25%;
border-radius: 2px;
transition: width 0.8s ease;
}
.timeline-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}
.timeline-step {
position: relative;
opacity: 0.6;
transition: all 0.4s ease;
}
.timeline-step.active {
opacity: 1;
}
.step-circle {
position: relative;
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background: white;
border-radius: 50%;
border: 3px solid var(--border-color);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s ease;
box-shadow: var(--shadow-md);
}
.timeline-step.active .step-circle {
border-color: var(--primary);
background: linear-gradient(135deg, var(--primary), var(--primary-light));
transform: scale(1.1);
}
.step-icon {
position: absolute;
font-size: 1.5rem;
color: var(--text-light);
transition: all 0.4s ease;
}
.timeline-step.active .step-icon {
color: white;
}
.step-number {
position: absolute;
bottom: -8px;
right: -8px;
width: 24px;
height: 24px;
background: var(--accent);
color: white;
border-radius: 50%;
font-size: 0.75rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-sm);
}
.step-content {
text-align: center;
}
.step-content h3 {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-dark);
}
.step-content p {
font-size: 0.95rem;
line-height: 1.6;
color: var(--text-light);
margin-bottom: 1.5rem;
}
.step-features {
list-style: none;
padding: 0;
margin: 0;
}
.step-features li {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
font-size: 0.85rem;
margin-bottom: 0.8rem;
color: var(--text-dark);
}
.step-features i {
color: var(--success);
font-size: 0.9rem;
}
/* Step Features Grid Styles */
.step-features-grid {
margin-top: 1rem;
}
.feature-row {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}
.feature-row span {
background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
color: var(--primary);
padding: 0.25rem 0.75rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.feature-row span:hover {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
transform: translateY(-2px);
}
@media (max-width: 1024px) {
.timeline-steps {
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}
.timeline-progress {
display: none;
}
.details-main {
grid-template-columns: 1fr;
gap: 3rem;
}
.details-visual {
order: -1;
max-width: 500px;
margin: 0 auto;
}
.details-features {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.timeline-steps {
grid-template-columns: 1fr;
gap: 2rem;
}
.details-section {
padding: 3rem 1.5rem;
}
.step-circle {
width: 60px;
height: 60px;
}
.step-icon {
font-size: 1.2rem;
}
.details-header h2 {
font-size: 2rem;
}
.details-content h3 {
font-size: 1.5rem;
text-align: center;
}
.details-content p,
.details-content .additional-text {
font-size: 1rem;
text-align: center;
}
.details-visual {
max-width: 100%;
}
.visual-info-cards {
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
}
.visual-info-card {
padding: 0.75rem;
}
.visual-info-card i {
font-size: 1.2rem;
}
.visual-info-card-title {
font-size: 0.7rem;
}
.visual-info-card-value {
font-size: 0.8rem;
}
}
/* Specifications Grid Styles */
.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.spec-category {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.spec-category::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
transform: scaleX(0);
transition: transform 0.4s ease;
}
.spec-category:hover::before {
transform: scaleX(1);
}
.spec-category:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.spec-category-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid var(--light-bg);
}
.spec-category-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.spec-category-icon i {
color: white;
font-size: 1.5rem;
}
.spec-category-header h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--text-dark);
margin: 0;
}
.spec-items {
display: flex;
flex-direction: column;
gap: 1rem;
}
.spec-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
background: var(--light-bg);
border-radius: 10px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.spec-item:hover {
background: white;
box-shadow: var(--shadow-md);
transform: translateX(5px);
}
.spec-label {
font-size: 0.9rem;
font-weight: 600;
color: var(--text-dark);
}
.spec-value {
font-size: 0.9rem;
font-weight: 500;
color: var(--primary);
text-align: right;
}
@media (max-width: 1024px) {
.specs-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
@media (max-width: 768px) {
.specs-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.spec-category {
padding: 1.5rem;
}
.spec-category-header {
margin-bottom: 1.5rem;
}
.spec-category-icon {
width: 40px;
height: 40px;
}
.spec-category-icon i {
font-size: 1.2rem;
}
.spec-category-header h3 {
font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.details-section {
padding: 5rem 2rem;
background: linear-gradient(135deg, #fef7f7 0%, #fdf2f2 100%);
position: relative;
overflow: hidden;
margin-bottom: 4rem;
border-bottom: 3px solid rgba(197, 40, 47, 0.1);
}
.details-section:last-of-type {
margin-bottom: 0;
}
.specs-grid {
gap: 1rem;
}
.spec-category {
padding: 1rem;
}
.spec-category-header {
flex-direction: column;
text-align: center;
gap: 0.75rem;
margin-bottom: 1rem;
}
.spec-category-icon {
width: 35px;
height: 35px;
}
.spec-category-icon i {
font-size: 1rem;
}
.spec-category-header h3 {
font-size: 1rem;
}
.spec-item {
flex-direction: column;
text-align: center;
gap: 0.5rem;
padding: 0.75rem;
}
.spec-label {
font-size: 0.8rem;
}
.spec-value {
font-size: 0.8rem;
text-align: center;
}
.details-header h2 {
font-size: 1.8rem;
line-height: 1.2;
}
.details-header p {
font-size: 1rem;
}
.details-content {
text-align: center;
}
.details-content h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
}
.details-content p,
.details-content .additional-text {
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.details-features {
gap: 0.75rem;
}
.details-feature {
padding: 1rem;
flex-direction: column;
text-align: center;
gap: 0.75rem;
}
.details-feature-icon {
width: 35px;
height: 35px;
}
.details-feature-icon i {
font-size: 1rem;
}
.details-feature-text {
font-size: 0.8rem;
text-align: center;
}
.details-visual {
padding: 0.75rem;
border-radius: 16px;
}
.details-visual img {
border-radius: 8px;
}
.visual-info-cards {
grid-template-columns: 1fr;
gap: 0.5rem;
}
.visual-info-card {
padding: 0.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
text-align: left;
}
.visual-info-card i {
font-size: 1.5rem;
margin-bottom: 0;
flex-shrink: 0;
}
.visual-info-card-content {
flex: 1;
}
.visual-info-card-title {
font-size: 0.65rem;
margin-bottom: 0.1rem;
}
.visual-info-card-value {
font-size: 0.75rem;
}
.step-content h3 {
font-size: 1.1rem;
}
.step-content p {
font-size: 0.85rem;
margin-bottom: 1rem;
}
.step-features li {
font-size: 0.75rem;
margin-bottom: 0.5rem;
}
.step-features i {
font-size: 0.8rem;
}
.step-number {
width: 20px;
height: 20px;
font-size: 0.65rem;
bottom: -6px;
right: -6px;
}
}
/* Capabilities Grid Styles */
.capabilities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.2rem;
}
.capability-card {
background: white;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
text-align: center;
position: relative;
overflow: hidden;
}
.capability-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
transform: scaleX(0);
transition: transform 0.4s ease;
}
.capability-card:hover::before {
transform: scaleX(1);
}
.capability-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.capability-card.special {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
}
.capability-card.special .capability-icon {
background: rgba(255, 255, 255, 0.2);
border: 2px solid rgba(255, 255, 255, 0.3);
}
.capability-card.special .capability-icon i {
color: white;
}
.capability-card.special h3 {
color: white;
}
.capability-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
border: 2px solid var(--border-color);
transition: all 0.3s ease;
}
.capability-card:hover .capability-icon {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-color: var(--primary);
transform: scale(1.1);
}
.capability-card:hover .capability-icon i {
color: white;
}
.capability-icon i {
font-size: 1.5rem;
color: var(--primary);
transition: all 0.3s ease;
}
.capability-card h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
line-height: 1.4;
margin: 0;
}
@media (max-width: 768px) {
.capabilities-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.capability-card {
padding: 1.5rem;
}
.capability-icon {
width: 50px;
height: 50px;
margin-bottom: 1rem;
}
.capability-icon i {
font-size: 1.2rem;
}
.capability-card h3 {
font-size: 1rem;
}
.video-frame {
padding-top: 56.25%;
height: auto;
min-height: unset;
}
}
@media (max-width: 480px) {
.capabilities-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.capability-card {
padding: 1.2rem;
}
.capability-icon {
width: 45px;
height: 45px;
}
.capability-icon i {
font-size: 1.1rem;
}
.capability-card h3 {
font-size: 0.9rem;
}
}
/* Price Info Section */
.price-info-section {
padding: 4rem 2rem;
}
.price-info-container {
max-width: 900px;
margin: 0 auto;
background: white;
border-radius: var(--border-radius-lg);
padding: 2.5rem;
box-shadow: var(--shadow-lg);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2.5rem;
align-items: center;
}
.price-info-left .vat-notice {
background: #fffbeb;
border: 1px solid #fde68a;
border-radius: var(--border-radius);
padding: 1.5rem;
display: flex;
align-items: center;
gap: 1rem;
height: 100%;
}
.vat-notice .icon {
font-size: 1.5rem;
color: #f59e0b;
}
.vat-notice p {
margin: 0;
color: #b45309;
font-weight: 500;
line-height: 1.6;
}
.price-info-right .price-features {
display: flex;
justify-content: space-around;
text-align: center;
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--border-color);
}
.price-feature .icon {
width: 50px;
height: 50px;
border-radius: 50%;
background: #fdf2f2;
color: var(--primary);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
margin-bottom: 0.75rem;
}
.price-feature p {
font-weight: 600;
color: var(--text-dark);
}
.price-info-right .btn-whatsapp-price {
display: block;
width: 100%;
background: #25d366;
color: white;
text-align: center;
padding: 1rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: var(--transition);
}
.price-info-right .btn-whatsapp-price:hover {
background: #128c7e;
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}
.btn-whatsapp-price i {
margin-right: 0.75rem;
}
@media (max-width: 768px) {
.price-info-container {
grid-template-columns: 1fr;
padding: 2rem;
gap: 2rem;
}
.price-info-right .price-features {
margin-bottom: 1.5rem;
}
}
@media (max-width: 480px) {
.price-info-section {
padding: 2rem 1rem;
}
.price-info-container {
padding: 1.5rem;
}
.price-info-right .price-features {
flex-direction: column;
gap: 1.5rem;
align-items: center;
}
.vat-notice {
flex-direction: column;
text-align: center;
}
}
/* Software Compatibility Section Styles */
.software-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
max-width: 900px;
margin: 0 auto 3rem;
}
.software-card {
background: white;
border-radius: 16px;
padding: 0;
text-align: center;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
cursor: pointer;
display: flex;
flex-direction: column;
}
.software-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
transform: scaleX(0);
transition: transform 0.4s ease;
}
.software-card:hover::before {
transform: scaleX(1);
}
.software-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.software-image {
position: relative;
width: 100%;
height: 200px;
overflow: hidden;
border-radius: 16px 16px 0 0;
}
.software-image img {
width: 100%;
height: 100%;
object-fit: contain;
transition: transform 0.3s ease;
background: #fdf2f2;
}
.software-card:hover .software-image img {
transform: scale(1.02);
}
.software-icon-fallback {
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
display: flex;
align-items: center;
justify-content: center;
border: 2px solid var(--border-color);
}
.software-icon-fallback i {
font-size: 3rem;
color: var(--primary);
}
.software-content {
padding: 2rem;
flex: 1;
display: flex;
flex-direction: column;
position: relative;
}
.software-badge {
position: absolute;
top: -1rem;
right: 1rem;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
box-shadow: var(--shadow-md);
}
.software-content h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 1rem;
line-height: 1.3;
margin-top: 0.5rem;
}
.software-content p {
font-size: 1rem;
line-height: 1.6;
color: var(--text-light);
margin: 0;
flex: 1;
}
.software-notice {
background: linear-gradient(135deg, #f8fafc, #f1f5f9);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 2rem;
text-align: center;
}
.software-notice p {
font-size: 1rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 1rem;
}
.software-notice p:last-child {
margin-bottom: 0;
}
.software-notice a {
color: var(--primary);
text-decoration: none;
font-weight: 600;
}
.software-notice a:hover {
text-decoration: underline;
}
.software-notice .important-notice {
font-weight: 600;
color: var(--text-dark);
}
@media (max-width: 1024px) {
.software-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
@media (max-width: 768px) {
.software-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.software-card {
padding: 1.5rem;
}
.software-icon {
width: 60px;
height: 60px;
margin-bottom: 1rem;
}
.software-icon i {
font-size: 1.5rem;
}
.software-card h3 {
font-size: 1.1rem;
}
.software-card p {
font-size: 0.9rem;
}
.software-notice {
padding: 1.5rem;
}
}
@media (max-width: 480px) {
.software-card {
padding: 1.2rem;
}
.software-icon {
width: 50px;
height: 50px;
}
.software-icon i {
font-size: 1.2rem;
}
.software-card h3 {
font-size: 1rem;
}
.software-card p {
font-size: 0.85rem;
}
.software-notice {
padding: 1rem;
}
.software-notice p {
font-size: 0.9rem;
}
}
/* Box Contents Section Styles */
.box-contents-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-bottom: 3rem;
}
.content-item {
background: white;
border-radius: 16px;
padding: 2rem;
text-align: center;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.content-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
transform: scaleX(0);
transition: transform 0.4s ease;
}
.content-item:hover::before {
transform: scaleX(1);
}
.content-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.content-item.special {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
}
.content-item.special .content-icon {
background: rgba(255, 255, 255, 0.2);
border: 2px solid rgba(255, 255, 255, 0.3);
}
.content-item.special .content-icon i {
color: white;
}
.content-item.special h3 {
color: white;
}
.content-item.special p {
color: rgba(255, 255, 255, 0.9);
}
.content-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
border: 2px solid var(--border-color);
transition: all 0.3s ease;
}
.content-item:hover .content-icon {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-color: var(--primary);
transform: scale(1.1);
}
.content-item:hover .content-icon i {
color: white;
}
.content-icon i {
font-size: 2rem;
color: var(--primary);
transition: all 0.3s ease;
}
.content-item h3 {
font-size: 1.2rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 1rem;
line-height: 1.3;
}
.content-item p {
font-size: 0.95rem;
line-height: 1.6;
color: var(--text-light);
margin: 0;
}
.box-notice {
background: linear-gradient(135deg, #fdf2f2, #fef7f7);
border: 1px solid #fecaca;
border-radius: 16px;
padding: 2rem;
display: flex;
align-items: flex-start;
gap: 1.5rem;
text-align: left;
}
.box-notice .notice-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #e63946, #c5282f);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.box-notice .notice-icon i {
color: white;
font-size: 1.5rem;
}
.box-notice .notice-content h4 {
font-size: 1.1rem;
font-weight: 700;
color: #c5282f;
margin-bottom: 0.5rem;
}
.box-notice .notice-content p {
font-size: 1rem;
color: #a0222a;
line-height: 1.6;
margin: 0;
}
@media (max-width: 1024px) {
.box-contents-grid {
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
}
}
@media (max-width: 768px) {
.box-contents-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.content-item {
padding: 1.5rem;
}
.content-icon {
width: 60px;
height: 60px;
margin-bottom: 1rem;
}
.content-icon i {
font-size: 1.5rem;
}
.content-item h3 {
font-size: 1.1rem;
}
.content-item p {
font-size: 0.9rem;
}
.box-notice {
padding: 1.5rem;
flex-direction: column;
text-align: center;
gap: 1rem;
}
.box-notice .notice-icon {
width: 45px;
height: 45px;
margin: 0 auto;
}
.box-notice .notice-content h4 {
font-size: 1rem;
}
.box-notice .notice-content p {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.content-item {
padding: 1.2rem;
}
.content-icon {
width: 50px;
height: 50px;
}
.content-icon i {
font-size: 1.2rem;
}
.content-item h3 {
font-size: 1rem;
}
.content-item p {
font-size: 0.85rem;
}
.box-notice {
padding: 1rem;
}
.box-notice .notice-icon {
width: 40px;
height: 40px;
}
.box-notice .notice-icon i {
font-size: 1.2rem;
}
.box-notice .notice-content h4 {
font-size: 0.9rem;
}
.box-notice .notice-content p {
font-size: 0.85rem;
}
}
/* FAQ Section Styles */
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background: white;
border-radius: 12px;
margin-bottom: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
border: 1px solid var(--border-color);
overflow: hidden;
transition: all 0.3s ease;
}
.faq-item:hover {
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.faq-question {
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
position: relative;
}
.faq-question:hover {
background: var(--light-bg);
}
.faq-question h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
margin: 0;
line-height: 1.4;
flex: 1;
padding-right: 1rem;
}
.faq-question i {
color: var(--primary);
font-size: 1rem;
transition: transform 0.3s ease;
flex-shrink: 0;
}
.faq-item.active .faq-question i {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background: var(--light-bg);
}
.faq-item.active .faq-answer {
max-height: 200px;
}
.faq-answer p {
padding: 1.5rem;
margin: 0;
font-size: 1rem;
line-height: 1.6;
color: var(--text-light);
}
@media (max-width: 768px) {
.faq-question {
padding: 1.2rem;
}
.faq-question h3 {
font-size: 1rem;
padding-right: 0.75rem;
}
.faq-answer p {
padding: 1.2rem;
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.faq-question {
padding: 1rem;
flex-direction: column;
align-items: flex-start;
gap: 0.75rem;
}
.faq-question h3 {
font-size: 0.95rem;
padding-right: 0;
}
.faq-question i {
align-self: flex-end;
}
.faq-answer p {
padding: 1rem;
font-size: 0.85rem;
}
}
/* Support and Contact Section Styles */
.support-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.support-card {
background: white;
border-radius: 16px;
padding: 2rem;
text-align: center;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.support-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
transform: scaleX(0);
transition: transform 0.4s ease;
}
.support-card:hover::before {
transform: scaleX(1);
}
.support-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.support-card.special {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
}
.support-card.special .support-icon {
background: rgba(255, 255, 255, 0.2);
border: 2px solid rgba(255, 255, 255, 0.3);
}
.support-card.special .support-icon i {
color: white;
}
.support-card.special h3 {
color: white;
}
.support-card.special p {
color: rgba(255, 255, 255, 0.9);
}
.support-card.special .support-btn {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.support-card.special .support-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
.support-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--light-bg), #e2e8f0);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
border: 2px solid var(--border-color);
transition: all 0.3s ease;
}
.support-card:hover .support-icon {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-color: var(--primary);
transform: scale(1.1);
}
.support-card:hover .support-icon i {
color: white;
}
.support-icon i {
font-size: 2rem;
color: var(--primary);
transition: all 0.3s ease;
}
.support-card h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 1rem;
line-height: 1.3;
}
.support-card p {
font-size: 1rem;
line-height: 1.6;
color: var(--text-light);
margin-bottom: 1.5rem;
}
.support-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
padding: 0.75rem 1.5rem;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}
.support-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(197, 40, 47, 0.3);
}
.support-btn i {
font-size: 1rem;
}
.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
background: linear-gradient(135deg, #f8fafc, #f1f5f9);
border-radius: 16px;
padding: 2rem;
border: 1px solid var(--border-color);
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.contact-icon i {
color: white;
font-size: 1.5rem;
}
.contact-details h4 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.contact-details p {
font-size: 1rem;
color: var(--text-light);
line-height: 1.6;
margin: 0;
}
@media (max-width: 1024px) {
.support-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
@media (max-width: 768px) {
.support-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.support-card {
padding: 1.5rem;
}
.support-icon {
width: 60px;
height: 60px;
margin-bottom: 1rem;
}
.support-icon i {
font-size: 1.5rem;
}
.support-card h3 {
font-size: 1.1rem;
}
.support-card p {
font-size: 0.9rem;
}
.contact-info {
grid-template-columns: 1fr;
gap: 1.5rem;
padding: 1.5rem;
}
.contact-icon {
width: 45px;
height: 45px;
}
.contact-icon i {
font-size: 1.2rem;
}
.contact-details h4 {
font-size: 1rem;
}
.contact-details p {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.support-card {
padding: 1.2rem;
}
.support-icon {
width: 50px;
height: 50px;
}
.support-icon i {
font-size: 1.2rem;
}
.support-card h3 {
font-size: 1rem;
}
.support-card p {
font-size: 0.85rem;
}
.support-btn {
padding: 0.6rem 1.2rem;
font-size: 0.85rem;
}
.contact-info {
padding: 1rem;
gap: 1rem;
}
.contact-item {
flex-direction: column;
text-align: center;
gap: 0.75rem;
}
.contact-icon {
width: 40px;
height: 40px;
margin: 0 auto;
}
.contact-icon i {
font-size: 1rem;
}
.contact-details h4 {
font-size: 0.9rem;
}
.contact-details p {
font-size: 0.8rem;
}
}
/* 360 Video Section Styles */
.video-section {
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
position: relative;
overflow: hidden;
}
.video-section::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
opacity: 0.03;
background-image:
repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(197,40,47,.05) 35px, rgba(197,40,47,.05) 70px),
repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(197,40,47,.03) 35px, rgba(197,40,47,.03) 70px);
animation: patternMove 20s linear infinite;
}
.video-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 10;
}
.video-wrapper {
position: relative;
}
.video-badge i {
font-size: 0.9rem;
}
.video-frame {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 aspect ratio */
border-radius: 16px;
overflow: hidden;
background: #f8fafc;
min-height: 250px;
}
.video-frame iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
border-radius: 16px;
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
border-radius: 16px;
pointer-events: none;
}
.play-indicator {
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.play-indicator i {
font-size: 2rem;
color: var(--primary);
margin-left: 3px;
}
.video-info h3 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--text-dark);
line-height: 1.2;
}
.video-info p {
font-size: 1.1rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 2rem;
}
.why-choose-list {
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.why-choose-item {
display: flex;
align-items: flex-start;
gap: 1rem;
background: white;
padding: 1.5rem;
border-radius: 12px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
}
.why-choose-item:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-light);
}
.why-choose-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.why-choose-icon i {
font-size: 1.5rem;
color: white;
}
.why-choose-content h4 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 0.5rem;
line-height: 1.3;
}
.why-choose-content p {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.6;
margin: 0;
}
@media (max-width: 1024px) {
.video-container {
grid-template-columns: 1fr;
gap: 3rem;
}
.video-wrapper {
order: -1;
max-width: 700px;
margin: 0 auto;
}
}
@media (max-width: 768px) {
.video-wrapper {
padding: 1rem;
max-width: 100%;
}
.video-badge {
font-size: 0.7rem;
padding: 0.4rem 1rem;
}
.video-info h3 {
font-size: 1.5rem;
}
.video-info p {
font-size: 1rem;
}
.why-choose-list {
gap: 1rem;
}
.why-choose-item {
padding: 1.2rem;
flex-direction: column;
text-align: center;
gap: 1rem;
}
.why-choose-icon {
width: 45px;
height: 45px;
margin: 0 auto;
}
.why-choose-icon i {
font-size: 1.2rem;
}
.why-choose-content h4 {
font-size: 1rem;
}
.why-choose-content p {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.video-wrapper {
padding: 0.75rem;
}
.video-badge {
font-size: 0.65rem;
padding: 0.3rem 0.8rem;
top: -8px;
left: 15px;
}
.video-info h3 {
font-size: 1.3rem;
text-align: center;
}
.video-info p {
font-size: 0.9rem;
margin-bottom: 1.5rem;
text-align: center;
}
.play-indicator {
width: 60px;
height: 60px;
}
.play-indicator i {
font-size: 1.5rem;
}
.why-choose-item {
padding: 1rem;
}
.why-choose-icon {
width: 40px;
height: 40px;
}
.why-choose-icon i {
font-size: 1rem;
}
.why-choose-content h4 {
font-size: 0.9rem;
}
.why-choose-content p {
font-size: 0.85rem;
}
}
KIA GDS VCI
Arıza Tespit Cihazı
Yetkili servisin kullandığı KIA marka araçlarda arıza tespit yapabilmeniz için imal edilmiş profesyonel bir arıza tespit cihazıdır. GDS VCI cihazı, 2002 yılından 2017 yılına kadar olan tüm araç modellerini destekler.
KIA Uyumlu
CAN-BUS Protokol Desteği
GDS Yazılımı Uyumlu
Yetkili Servis Düzeyi Teşhis
Hemen Satın Al
WhatsApp'tan Sor
6 Ay Garanti
Hızlı Kargo
Kaliteli Ürün
KIA GDS





Yazılım Gereklidir
Bu ürün yalnızca donanımdır. GDS yazılımı ayrıca satın alınmalıdır.
KIA GDS ile Profesyonel Teşhis
KIA GDS, KIA araçlar için geliştirilmiş orijinal teşhis sistemidir. Modern araçların karmaşık elektronik sistemlerine güvenli erişim sağlayarak yetkili servis düzeyinde işlemler yapmanıza olanak tanır.
Gelişmiş Teşhis Teknolojisi
KIA GDS cihazı, KIA araçlarda bulunan tüm elektronik kontrol ünitelerine erişim sağlar. Otomatik aracı tanıma sistemi sayesinde araç marka ve model bilgilerini çekip size sunar. Motor, Hava Yastığı, Fren, Gösterge, Şanzıman, Gövde gibi birçok donanıma bağlanarak işlem yapabilirsiniz.
Enjektör basınç değerleri, turbo basınç değerleri, yağ sıcaklığı, gaz pedal konum sensör değerleri, yağ seviyesi gibi araç üzerinde sensörlerin kayıt ettiği tüm sensör değerlerini görüntüleyebilirsiniz. Yazılım dili Türkçedir ve Windows 7 64 bit işletim sistemi ile tam uyumludur. Araçta detaylı diagnostik için GDS Trigger Modülüne ihtiyacınız varsa ayrıca satın almanız gerekir.
CAN-BUS ve K-Line Protokol
GDS Yazılımı Uyumlu
Geniş Araç Model Desteği
Güvenli ve Hızlı Bağlantı

Bağlantı
USB / Serial
Protokol
CAN / K-Line
Cihazın Kapsamlı Yetenekleri
GDS yazılımı ile tam sistem tanılama ve programlama arayüzü olup, Bakım Bilgi Sistemleri, Teknik Brifingler, Devre Şemaları, Bileşen Testleri de dahil olmak üzere kapsamlı işlemler yapabilirsiniz. Araç üzerinde ne kadar elektronik beyin var ise tüm arızaları size listeleyip, arızanın hangi parçada oluştuğunu teknik şemaları ile size sunar.
Araç Yapılandırmasını Okuma
Sistem Parçalarını Aktifleştirme ve Adaptasyon
Motor, Şase, Gövde ve Gösterge Modülü Kodlama
Şasi Numarası Otomatik Tarayarak Bağlantı
Modüllerden Hata Kodları Okuma ve Silme
Elektrikli Direksiyon Adaptasyonu
Canlı Verileri Görüntüleme
EGR Testi ve DPF Rejenerasyonu
Enjektör Kodlama ve Enjektör Testi
Hava Yastığı Modül Active-Deaktive Testi
Vites Kutusu (Şanzıman) Testi
ESP / ASR / ETS / ABS / BAS / SBC Fren Sistemleri
Aktif Güvenlik (SRS) / Airbag Sistemleri
Gaz Kelebeği Adaptasyonu ve Hassaslık Testi
Instrument Paketi Güvenlik Sistemi
ECU Yazılımının Değiştirilmesi ve Yeniden Yazılması
Mekanik Bileşenlerinin Tüm Sensörlerini Okuma
Otomatik Şanzıman Adaptasyonu
Servis Prosedürlerini İnceleme
Adaptasyon, Kalibrasyon ve Kodlama
Dizel Partikül Filtresi Jenerasyonu
Servis Tarih ve Bakım Sıfırlama
Elektronik Ateşleme Sistemi (EIS) Testi
Ve Daha Fazla Özellik...
KIA GDS 360° İncelemesi
KIA GDS yazılımının yeteneklerini ve kullanım kolaylığını videomuzda görün.
Neden KIA GDS Tercih Edilir?
KIA araçlar için özel olarak tasarlanmış bu sistem, yetkili servis kalitesinde teşhis imkanı sunar.
Yüksek Performans
Gelişmiş işlemci teknolojisi ile hızlı veri işleme ve stabil bağlantı.
Hızlı Teşhis
Gelişmiş algoritma ile hızlı ve doğru arıza tespiti.
Kapsamlı İşlemler
Teşhisten programlamaya kadar tüm servis işlemleri.
Güvenli Kullanım
Araç elektronik sistemlerine zarar vermeden güvenli erişim.
Uyumlu Yazılım
KIA GDS cihazı, KIA'nın orijinal teşhis yazılımı ile sorunsuz çalışır.

KIA GDS (Global Diagnostic System)
KIA araçlar için geliştirilmiş orijinal teşhis yazılımı. Tüm elektronik sistemlere erişim ve kapsamlı teşhis imkanı sağlar.
Not: Bu ürün yalnızca KIA GDS donanımını içerir. GDS yazılımı pakete dahil değildir ve ayrıca lisanslanması gerekmektedir.
Kutu İçeriği
KIA GDS paketi, teşhis işlemlerine hemen başlamanız için gerekli temel donanımları içerir.
KIA GDS Adaptör
KIA araçlar için orijinal teşhis ve programlama arayüzü.
OBD2 Ana Kablosu
Araca bağlantı için kullanılan standart OBD2 kablosu.
USB Kablosu
Cihazı bilgisayarınıza bağlamak için kullanılan USB kablosu.
Sıkça Sorulan Sorular
KIA GDS hakkında merak ettiğiniz soruların yanıtları burada.
Bu cihaz hangi araçları destekler?
KIA GDS, tüm KIA marka araçlarla uyumludur. 2002 yılından 2017 yılına kadar üretilen modelleri destekler. Uyumlu GDS yazılımı ile birlikte kullanıldığında, geniş bir araç yelpazesinde teşhis ve programlama işlemleri gerçekleştirebilirsiniz.
GDS yazılımı cihaza dahil mi?
Hayır, bu ürün sadece donanım arayüzünü içerir. KIA'nın orijinal GDS teşhis yazılımını ayrıca temin etmeniz gerekmektedir.
ECU programlama yapabilir miyim?
Evet, KIA GDS cihazı ECU programlama işlemlerini destekler. Ancak bu işlem için orijinal GDS yazılımı ve gerekli yetkiler gereklidir.
Garanti süresi ne kadar?
KIA GDS arayüzü, fabrikasyon üretim hatalarına karşı 6 ay garantilidir. Kullanıcı kaynaklı hasarlar garanti kapsamı dışındadır.
Destek ve İletişim
KIA GDS ile ilgili tüm sorularınız için bizimle iletişime geçin. Uzman ekibimiz size yardımcı olmaya hazır.
WhatsApp Destek
7/24 WhatsApp üzerinden anlık destek alın. Hızlı yanıt garantisi ile sorularınızı çözüme kavuşturun.
Telefon Desteği
Teknik konularda detaylı bilgi almak için telefon üzerinden uzmanlarımızla görüşebilirsiniz.
E-posta Desteği
Detaylı sorularınızı e-posta ile gönderin. 24 saat içinde uzman ekibimizden yanıt alın.
Teknik Destek
Kurulum, yazılım konfigürasyonu ve kullanım konularında profesyonel teknik destek hizmeti.
لم يتم طرح أي أسئلة حول هذا المنتج بعد.
كن أول من يسأل!اطرح سؤالاً
لا توجد تقييمات بعد
هل جربت هذا المنتج؟ شارك تجربتك وساعد العملاء الآخرين في اتخاذ القرار الصحيح. سيتم نشر مراجعتك بعد الموافقة.
Türkçe
English
العربية