/* Simple reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
:root{
  --navy: #0b2b4b; /* main brand color */
  --accent: #d93228; /* red check accent */
  --accent-dark: #b72720;
  --muted: #6b788a;
  --bg: #fff;
}
body { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; color: #122; line-height: 1.6; background: var(--bg); }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section { padding: 4rem 0; }
.section h2{ font-size: clamp(1.6rem, 2.8vw,1.9rem); color: var(--navy); margin-bottom: .6rem }
.section h2::after{ content:''; display:block; width:64px; height:4px; background: linear-gradient(90deg,var(--accent),var(--navy)); border-radius:4px; margin-top:.6rem }
.lead { color: #495; font-size: 1.1rem; margin-bottom: 1.5rem; }

/* Header / Nav */
.site-header { position: relative; z-index: 10; transition: all .28s ease; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; transition: padding .22s ease; }
.logo img.brand-logo{height:120px;width:auto;display:block}
.logo { display:flex; align-items:center; gap:1rem; }
.nav-links { list-style: none; display:flex; gap:1rem; align-items:center; }
.nav-links a{ color: #000; transition: color .15s ease; }
.nav-links a:hover{ color: var(--accent); }
.site-header.sticky .nav-links a{ color: var(--navy) !important; }
/* Remove sticky visual behavior (will not set position:fixed). Keep helper classes for future use */
.nav-links a { color: #000; text-decoration: none; padding: .5rem .8rem; border-radius: 10px; opacity: 0.95; }
.nav-links a.cta { background: var(--accent); color:#fff; font-weight:600; box-shadow: 0 6px 20px rgba(217,50,40,0.18); }
.nav-toggle { display:none; }

/* Hero */
.hero { position: relative; height: 72vh; min-height: 520px; display:flex; align-items:center; color: #fff; padding-top: 2rem; }
.parallax-bg { position:absolute; inset:0; background-size:cover; background-position:center; transform: translateZ(0); z-index:0; filter: saturate(1.06) contrast(.95) blur(.0px); }
.hero-content { position:relative; z-index:1; padding: 4rem 0 3.5rem; max-width: 900px; }
.hero h1 { font-size: clamp(2rem, 3.7vw, 3.4rem); line-height: 1.02; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.65rem; }
.hero .subtitle { font-size: 1.05rem; opacity: 0.95; margin-bottom: 1.6rem; color: rgba(255,255,255,0.95); }
.hero-actions { display:flex; gap: .8rem; }
.hero-pill{ display:flex; gap:10px; align-items:center; margin-top:18px; background: rgba(255,255,255,0.12); padding:10px; border-radius: 12px; max-width: 420px }
.pill-price { color:#fff; opacity:0.96; }
.pill-price strong{ color:var(--accent); font-weight:800 }
.pill-cta .btn-primary{ padding:.5rem .9rem }
.btn-primary { background: var(--accent); color: #fff; padding: .78rem 1.2rem; border-radius: 10px; text-decoration:none; font-weight:700; box-shadow: 0 12px 30px rgba(217,50,40,0.14); transition: transform .18s ease, box-shadow .18s ease; }
.btn-primary:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px rgba(217,50,40,0.18); }
.btn-ghost { background: transparent; color:#fff; padding:.78rem 1.2rem; border-radius:10px; text-decoration:none; border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(2px); }
.site-header.sticky .btn-ghost{ color: var(--navy); background: rgba(255,255,255,0.95); border-color: rgba(10,10,10,0.06); }

.hero-stats { display:flex; gap:1rem; margin-top:2.4rem; align-items:center; flex-wrap:wrap; }
.stat { background: rgba(255,255,255,0.06); padding: .8rem 1rem; border-radius: 12px; text-align:center; border: 1px solid rgba(255,255,255,0.06); min-width: 160px; }
.stat .number { font-weight:700; font-size:1.2rem; display:block; color: var(--accent); }

/* Cards and Grids */
.grid { display:grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius: 12px; padding: 1rem; box-shadow: 0 6px 30px rgba(0,0,0,0.08); }
.card .card-icon { display:inline-block; font-weight:700; background: var(--navy); color:#fff; width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:.8rem; }

.feature-card { background: #fff; border-radius: 8px; padding: 1.5rem 1.2rem; text-align:center; box-shadow: none; border: 1px solid rgba(0,0,0,0.05); transition: transform .28s ease, box-shadow .22s ease; }
.feature-card img { width:56px; height:56px; object-fit:contain; margin-bottom: 1rem; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(2,6,23,0.08); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.feature-card .feature-icon img { width:56px; height:56px; object-fit:contain; margin-bottom: 0.8rem; display:inline-block }
.feature-card .feature-icon { display:block; margin: 0 auto 0.8rem; }
.feature-card h4{ margin-bottom: 0.6rem; color: var(--accent); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2px; }
.feature-card p{ color:var(--muted); font-size:0.85rem; line-height: 1.4; margin: 0; }

.tech-bg { background: #2a2a2a; margin: 0 -200vw; padding: 4rem calc(200vw - 45vw); }
.tech-bg h2 { color: #fff; text-align: center; }
.tech-bg h2::after { background: linear-gradient(90deg, #fff, rgba(255,255,255,0.3)); margin: 0.6rem auto; }
.tech img { width: 100%; border-radius: 8px; object-fit:cover; height: auto; }
.tech-grid { display: flex; gap: 1.5rem; justify-content: center; align-items: flex-start; margin-top: 2.5rem; flex-wrap: wrap; }
.tech-item { text-align: center; flex: 0 0 calc(20% - 1.2rem); min-width: 140px; }
.tech-item img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; margin-bottom: 0.8rem; display: block; }
.tech-item p { color: #fff; font-size: 0.9rem; font-weight: 600; margin: 0; }
.tech-card{ display:none; }
.tech-card figcaption{ display:block; text-align:center; margin-top:8px; font-size:.9rem; color:var(--muted) }
.tech-card figcaption strong{ display:block; color:var(--navy); font-weight:700 }
.tech-card .tag{ display:inline-block; margin-top:6px; padding:3px 8px; background:rgba(11,43,75,0.06); color:var(--navy); border-radius:18px; font-size:0.78rem }
.tech-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 60px rgba(2,6,23,0.12); }
.numbers-bg { background: #c21e1e; margin: 0 -200vw; padding: 4rem calc(200vw - 45vw); }
.numbers-bg h2 { color: #fff; text-align: center; }
.numbers-bg h2::after { background: linear-gradient(90deg, #fff, rgba(255,255,255,0.3)); margin: 0.6rem auto; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; }
.number-block { text-align: center; padding: 1rem; }
.number-block h3 { font-size: 3.2rem; color: #fff; font-weight: 800; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.number-block p { color: rgba(255,255,255,0.9); font-size: 0.95rem; line-height: 1.5; margin: 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; }
.testimonial-card { text-align: center; }
.car-image { position: relative; margin-bottom: 1.2rem; overflow: hidden; border-radius: 8px; }
.car-image img { width: 100%; height: 180px; object-fit: cover; display: block; }
.like-icon { position: absolute; top: 10px; right: 10px; font-size: 1.5rem; background: rgba(255,255,255,0.9); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.testimonial-card h3 { font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 0.8rem; }
.quote-mark { color: var(--accent); font-size: 1.8rem; margin-right: 0.3rem; }
.testimonial-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; margin: 0; }
.brands-section { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
.brands-scroll { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; opacity: 0.5; }
.brands-scroll img { height: 40px; object-fit: contain; }
.carousel-prev, .carousel-next { display: none; }
.review { display: none; }
.review.active{ display: none; }
.review .review-header{ display:flex; gap:12px; align-items:center; margin-bottom:.8rem }
.review .avatar{ width:56px; height:56px; border-radius:12px; object-fit:cover; }
.review .name{ font-weight:700; color:var(--navy) }
.review .stars{ color:var(--accent); font-weight:600; margin-top:4px }
.review .quote{ font-size:1.02rem; color:#222; margin:0 }

/* Steps layout with gray background */
.steps{ background: #f5f6f8; margin: 0 -200vw; padding: 4rem calc(200vw - 45vw); }
.steps .container { max-width: 1200px; }
.steps-grid{ display:grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: center; margin-top: 3rem; }
.step-card{ text-align: center; padding: 0 1.5rem; }
.step-image{ margin-bottom: 1.6rem; }
.step-image img{ width: 100%; max-width: 140px; height: auto; object-fit: contain; border-radius: 8px; display: block; margin: 0 auto; }
.step-card h3{ color: var(--accent); font-size: 1.08rem; font-weight: 700; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.3px; }
.step-card p{ color: var(--muted); font-size: 0.95rem; line-height: 1.5; margin: 0; }
.step-connector{ display: flex; align-items: center; justify-content: center; padding: 0 1rem; min-height: 60px; }
.connector-line{ opacity: 0.8; }
.connector-line path{ stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.connector-line.play path{ animation: drawLine 1.2s ease forwards; }

@media (max-width:880px){
  .steps{ margin: 0; padding: 2.5rem 0; }
  .steps-grid{ grid-template-columns: 1fr; gap: 2rem; }
  .step-connector{ display: none; }
  .step-card{ padding: 0; }
}

@media (max-width:880px){
  .steps{ margin: 0; padding: 2rem 0; }
  .steps-grid{ grid-template-columns: 1fr; gap: 1.5rem }
  .connector-svg, .step-connector{ display:none }
  .step-card{ gap:1rem; }
  .features-grid{ grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .feature-card h4{ font-size: 0.9rem; }
  .feature-card p{ font-size: 0.8rem; }
  .tech-bg{ margin: 0; padding: 2rem 0; }
  .tech-grid{ gap: 1rem; }
  .tech-item{ flex: 0 0 calc(50% - 0.5rem); min-width: 120px; }
  .tech-item img{ height: 100px; }
  .tech-item p{ font-size: 0.8rem; }
  .numbers-bg{ margin: 0; padding: 2rem 0; }
  .numbers-grid{ grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .number-block h3{ font-size: 2rem; }
  .number-block p{ font-size: 0.85rem; }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .car-image img{ height: 140px; }
  .testimonial-card h3{ font-size: 0.95rem; }
  .testimonial-card p{ font-size: 0.85rem; }
  .brands-scroll{ gap: 1rem; }
  .brands-scroll img{ height: 30px; }
}

/* contact */
.contact-bg { background: #f0f2f5; margin: 0 -200vw; padding: 4rem calc(200vw - 45vw); }
.contact-bg h2 { color: var(--navy); text-align: center; margin-bottom: 3rem; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.contact-info-box { background: #fff; padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.contact-form-box { background: #fff; padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.contact-info-box h3,
.contact-form-box h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 1.5rem; font-weight: 700; }
.contact-intro { color: #666; margin-bottom: 2rem; line-height: 1.6; }
.contact-item { display: flex; gap: 1.2rem; margin-bottom: 1.8rem; }
.contact-item svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }
.contact-item strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 0.3rem; }
.contact-item p { color: #666; margin: 0; font-size: 0.95rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.85rem; border-radius: 6px; border: 1px solid #ddd; font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form .form-group { margin-bottom: 1.2rem; }
.contact-form label { display: block; color: var(--navy); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-contact-submit { width: 100%; padding: 1rem; background: var(--accent); color: #fff; font-weight: 700; border: none; border-radius: 6px; cursor: pointer; transition: all 0.3s; }
.btn-contact-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217,50,40,0.2); }

@media (max-width: 880px) {
  .contact-bg { margin: 0; padding: 2rem 0; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info-box, .contact-form-box { padding: 1.5rem; }
}

/* Form Redirect Section */
.form-redirect { background: linear-gradient(135deg, var(--navy) 0%, #0f3a6b 100%); margin: 0 -200vw; padding: 5rem calc(200vw - 45vw); text-align: center; }
.form-redirect h2 { color: #fff; margin-bottom: 1rem; }
.form-redirect .lead { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.form-redirect-content { display: flex; flex-direction: column; align-items: center; }
.btn-form-large { display: inline-block; padding: 1.2rem 2.5rem; font-size: 1.05rem; font-weight: 700; background: var(--accent); color: #fff; text-decoration: none; border-radius: 8px; transition: all 0.3s; box-shadow: 0 10px 30px rgba(217,50,40,0.3); }
.btn-form-large:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(217,50,40,0.4); background: var(--accent-dark); }

@media (max-width: 880px) {
  .form-redirect { margin: 0; padding: 3rem 0; }
  .form-redirect h2 { font-size: 1.6rem; }
  .form-redirect .lead { font-size: 1rem; }
  .btn-form-large { padding: 1rem 2rem; font-size: 1rem; }
}

/* Footer */
.site-footer { background: #3a3a3a; color: #ccc; }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { padding-right: 2rem; }
.footer-logo h3 { color: #fff; font-size: 2rem; font-weight: 800; margin: 0 0 0.5rem 0; letter-spacing: -0.02em; }
.logo-underline { width: 40px; height: 3px; background: var(--accent); margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; color: #999; margin-bottom: 1.5rem; }
.footer-brand h4 { font-size: 0.95rem; font-weight: 700; color: #ccc; margin: 1.5rem 0 1rem 0; }
.footer-countries { display: flex; gap: 1.5rem; }
.country { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #999; }
.flag { font-size: 1.3rem; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; color: #fff; margin: 0 0 1rem 0; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: #999; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-socials { grid-column: 3; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; transition: all 0.2s; }
.social-icon:hover { background: var(--accent); transform: translateY(-3px); }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 1.5rem 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-content p { margin: 0; color: #777; font-size: 0.85rem; }
.footer-logo-small img { height: 30px; opacity: 0.6; }

/* Small screens */
@media (max-width: 880px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { height: auto; padding: 2.5rem 0; }
  .nav-links { display:none; }
  .nav-toggle { display:block; background:none; border:0; color:#fff; font-size:1.2rem; }
  .site-header.sticky .nav-toggle{ color: var(--navy); }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { padding-right: 0; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-socials { grid-column: 1; margin-top: 2rem; }
  .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
}
.sticky { position: static !important; }
.shadow-sm{box-shadow:0 6px 24px rgba(2,6,23,0.05)}

/* Tilt and reveal helpers */
.tilt { transform-style: preserve-3d; perspective: 1200px; }
.reveal { opacity:0; transform: translateY(12px); transition: all .7s cubic-bezier(.15,.8,.2,1); }
.reveal.show { opacity:1; transform: translateY(0px); }

/* Micro-animations */
@keyframes popIn { 0% { transform: scale(.85); opacity: 0; } 60% { transform: scale(1.06); opacity: 1 } 100% { transform: scale(1); } }
@keyframes floatUp { 0% { transform: translateY(10px) } 50% { transform: translateY(0) } 100% { transform: translateY(10px) } }
@keyframes drawLine { from { stroke-dashoffset: 1000 } to { stroke-dashoffset: 0 } }
@keyframes fadeSlideIn { from { transform: translateY(12px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.play-pop { animation: popIn .5s cubic-bezier(.2,.9,.22,1) both }
.float-slow { animation: floatUp 4s ease-in-out infinite }
.play-slide { animation: fadeSlideIn .6s cubic-bezier(.2,.9,.22,1) both }

/* small optimization and hover */
.step-icon{ will-change: transform; transform-origin:center; }
.step-icon:hover{ transform: scale(1.03); }
.tech-card .play-pop{ animation: popIn .45s cubic-bezier(.2,.9,.22,1) both }

/* connector SVG stroke */
.connector-svg path{ stroke: rgba(217,50,40,0.9); stroke-width: 4; fill:none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1000; stroke-dashoffset: 1000 }
.connector-svg.play path{ animation: drawLine 1s ease forwards }
.connector-svg{ display:block }

/* tech-card icon micro-animation */
.tech-card img{ transition: transform .28s cubic-bezier(.16,.8,.2,1); }
.tech-card:hover img{ transform: rotate(-6deg) scale(1.06) }
.tech-card .tag{ transition: transform .18s ease, opacity .2s ease }
.tech-card:hover .tag{ transform: translateY(-2px); opacity: 0.95 }

/* steps icon pop on reveal */
.step-icon.play-pop{ animation: popIn .52s cubic-bezier(.22,.9,.28,1) both }


/* Subtle glass overlay on hero */
.hero::after { content: ''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,43,75,0.55), rgba(217,50,40,0.12)); z-index:0; mix-blend-mode:multiply }

/* accessibility */
a:focus { outline: 3px dashed rgba(0,168,107,0.6); }
button:focus { outline: 3px dashed rgba(0,168,107,0.6); }

/* WhatsApp Floating Button */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 64px; height: 64px; background: linear-gradient(135deg, #25D366, #20BA5D); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1); z-index: 999; animation: float 3s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45); }
.whatsapp-float svg { width: 32px; height: 32px; stroke-width: 1.5; }

@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }

@media (max-width: 880px) { .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 60px; height: 60px; } .whatsapp-float svg { width: 28px; height: 28px; } }