:root {
    --accent: #E83849;
    --accent-dark: #C72F3F;
    --accent-light: #FFE7ED;
    --text-primary: #1C1931;
    --bg-light: #F7F6FD;
    --white: #FFFEFF;
    --gray-100: #FAF8FD;
    --gray-200: #EBEBF2;
    --gray-600: #6E7480;
    --shadow: 0 2px 8px rgba(2, 0, 3, 0.1);
    --radius: 12px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.top-bar {
    background: var(--accent);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.top-bar .top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar .top-bar-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-bar .top-bar-content span svg {
    flex-shrink: 0;
    stroke: var(--white);
}

.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
}

.logo .logo-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo .logo-name span {
    color: var(--accent);
}

.logo .logo-slogan {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.site-footer .logo .logo-name {
    color: var(--white);
}

.site-footer .logo .logo-slogan {
    color: rgba(255, 255, 255, 0.6);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: color 0.2s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    background: var(--gray-100);
}

.header-actions .btn-icon:hover {
    background: var(--gray-200);
}

.header-actions .btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-whatsapp-header {
    background: #25D366 !important;
    color: var(--white);
}

.btn-whatsapp-header:hover {
    background: #1DA851 !important;
}

.btn-whatsapp-header svg {
    fill: var(--white);
}

.btn-call-header {
    background: var(--accent) !important;
    color: var(--white);
}

.btn-call-header:hover {
    background: var(--accent-dark) !important;
}

.btn-call-header svg {
    stroke: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1DA851;
}

.btn-whatsapp svg {
    fill: var(--white);
}

.btn-call {
    background: var(--accent);
    color: var(--white);
}

.btn-call:hover {
    background: var(--accent-dark);
}

.btn-call svg {
    stroke: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.usp-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.usp-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.usp-item .usp-icon {
    font-size: 1.1rem;
}

.usp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.usp-card {
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.usp-card .usp-icon {
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
}

.usp-card .usp-icon svg {
    stroke: var(--white);
    flex-shrink: 0;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88), rgba(230, 57, 70, 0.65)),
                url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 80px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.accordion {
    margin-top: 24px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
    border: none;
    background: none;
    color: inherit;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 20px 16px;
}

.sss-accordion .accordion-body {
    max-height: 0;
    overflow: hidden;
}

.sss-accordion .accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 20px 16px;
}

.sss-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--text-primary);
}

.sss-accordion .accordion-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: inherit;
}

.sss-accordion .accordion-header:hover {
    background: var(--gray-100);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 30px;
    padding: 12px 20px;
    box-shadow: var(--shadow);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-badge svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.feature-cards.feature-cards-compact {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    flex-direction: unset !important;
    gap: 16px !important;
    max-width: 100% !important;
    counter-reset: none !important;
}
.feature-card.feature-card-toggle {
    padding: 0 !important;
    cursor: pointer;
    user-select: none;
    display: block !important;
    flex-direction: unset !important;
    text-align: left !important;
}
.feature-card.feature-card-toggle::before {
    display: none !important;
}
.feature-card-toggle .feature-card-header {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}
.feature-card-toggle .feature-card-header .icon {
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card-toggle .feature-card-header .icon svg {
    width: 22px;
    height: 22px;
}
.feature-card-toggle .feature-card-header h3 {
    margin-bottom: 0;
    font-size: 0.95rem;
    flex: 1;
}
.feature-toggle-icon {
    font-size: 12px;
    color: var(--gray-600);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.feature-card-toggle.active .feature-toggle-icon {
    transform: rotate(180deg);
}
.feature-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}
.feature-card-toggle.active .feature-card-body {
    max-height: 200px;
    padding: 0 20px 16px;
}
.feature-card-body p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    overflow: hidden;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 100%;
    width: 100%;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vehicle-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    max-width: 100%;
    flex-shrink: 0;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    display: block;
}

.vehicle-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-category {
    background: var(--accent);
    color: var(--white);
}

.badge-insurance {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.badge-office {
    background: #FFF3CD;
    color: #856404;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
}

.vehicle-card-body {
    padding: 16px;
}

.vehicle-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vehicle-specs span svg {
    flex-shrink: 0;
    stroke: var(--accent);
}

.spec-item .spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spec-item .spec-icon svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.vehicle-prices {
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
    margin-bottom: 12px;
}

.vehicle-prices .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.vehicle-prices .price-row .label {
    color: var(--gray-600);
}

.vehicle-prices .price-row .value {
    font-weight: 700;
    color: var(--text-primary);
}

.vehicle-prices .price-row .value.highlight {
    color: var(--accent);
    font-size: 1.1rem;
}

.vehicle-card-actions {
    display: flex;
    gap: 8px;
}

.vehicle-card-actions .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.vehicle-card-actions .btn svg {
    flex-shrink: 0;
}

.filter-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.filter-group select {
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.filter-group select:focus {
    border-color: var(--accent);
}

.filter-toggle {
    display: none;
    width: 100%;
    padding: 10px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
}

.btn-reset {
    margin-left: auto;
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.btn-reset:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

.info-box {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin: 40px 0;
}

.info-box h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.info-box p {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    padding: 40px 0;
}

.cta-section .btn {
    min-width: 220px;
}

.site-footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-group.has-error .form-control {
    border-color: var(--accent);
}

.page-header {
    background: linear-gradient(135deg, var(--text-primary), #2d2d4e);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
}

.page-header p {
    margin-top: 8px;
    opacity: 0.8;
    font-size: 1rem;
}

.page-content {
    padding: 48px 0;
}

.page-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 32px 0 12px;
    color: var(--text-primary);
}

.page-content h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 24px 0 8px;
    color: var(--text-primary);
}

.page-content p {
    margin-bottom: 14px;
    color: #444;
    line-height: 1.75;
}

.page-content ul,
.page-content ol {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 6px;
    color: #444;
    line-height: 1.6;
}

.steps-list {
    max-width: 720px;
    margin: 32px auto 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.step-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.65;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--accent);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 4px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 32px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.vehicle-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.vehicle-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.vehicle-detail-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.vehicle-detail-info h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.vehicle-detail-brand {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 16px;
}

.vehicle-detail-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vehicle-detail-info .brand {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.vehicle-detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 0.9rem;
}

.spec-item .spec-label {
    color: var(--gray-600);
}

.spec-item .spec-value {
    font-weight: 700;
    margin-left: auto;
}

.vehicle-detail-pricing {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.vehicle-detail-pricing .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.vehicle-detail-pricing .price-row:last-child {
    border-bottom: none;
}

.vehicle-detail-pricing .price-row .label {
    color: var(--gray-600);
}

.vehicle-detail-pricing .price-row .value {
    font-weight: 700;
    color: var(--text-primary);
}

.vehicle-detail-pricing .price-row .value.highlight {
    color: var(--accent);
    font-size: 1.2rem;
}

.vehicle-detail-pricing .price-row-office {
    background: #FFF3CD;
    margin: 0 -24px;
    padding: 10px 24px;
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom: none;
}

.vehicle-detail-pricing .price-row-office .label {
    color: #856404;
    font-weight: 600;
}

.vehicle-detail-pricing .price-row-office .office-price {
    color: #856404;
    font-size: 1.1rem;
}

.vehicle-detail-pricing .price-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

.vehicle-detail-pricing .price-line:last-child {
    border-bottom: none;
}

.vehicle-detail-pricing .price-line .amount {
    font-weight: 700;
}

.vehicle-detail-pricing .price-line .amount.main-price {
    color: var(--accent);
    font-size: 1.2rem;
}

.vehicle-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.vehicle-detail-features {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.vehicle-detail-features h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.vehicle-detail-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.vehicle-detail-features ul li {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.vehicle-detail-actions .btn {
    flex: 1;
}

.related-vehicles {
    margin-top: 60px;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: var(--text-primary);
    color: var(--white);
    padding: 24px 0;
    flex-shrink: 0;
}

.admin-sidebar h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 20px;
    margin-bottom: 24px;
}

.admin-sidebar nav a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-main {
    flex: 1;
    padding: 32px;
    background: var(--bg-light);
}

.admin-main h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.admin-table th {
    font-weight: 700;
    background: var(--gray-100);
    color: var(--text-primary);
}

.admin-table tr:hover {
    background: var(--gray-100);
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }

@media (max-width: 768px) {

    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    
    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    .feature-cards.feature-cards-compact {
        grid-template-columns: 1fr !important;
    }

    .feature-badges {
        gap: 10px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    
    .top-bar .top-bar-content {
        gap: 12px;
        font-size: 0.75rem;
    }

    
    .usp-bar {
        gap: 10px;
    }

    .usp-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .usp-cards {
        grid-template-columns: 1fr;
    }

    
    .hero {
        padding: 60px 0 48px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-section .btn {
        width: 100%;
        min-width: auto;
    }

    
    .filter-toggle {
        display: block;
    }

    .filter-bar-inner {
        display: none;
        flex-direction: column;
        align-items: stretch;
        margin-top: 12px;
    }

    .filter-bar-inner.active {
        display: flex;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group select {
        width: 100%;
    }

    .btn-reset {
        margin-left: 0;
        width: 100%;
    }

    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    
    .contact-grid {
        grid-template-columns: 1fr;
    }

    
    .vehicle-detail {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-detail-features ul {
        grid-template-columns: 1fr;
    }

    .vehicle-detail-actions {
        flex-direction: column;
    }

    .vehicle-detail-actions .btn {
        width: 100%;
    }

    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    
    .page-header {
        padding: 32px 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    
    .stats-grid {
        gap: 24px;
    }

    .stat-item .number {
        font-size: 1.8rem;
    }

    
    .admin-sidebar {
        width: 100%;
        position: static;
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-main {
        padding: 20px;
    }

    .admin-table {
        font-size: 0.8rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 8px 10px;
    }
}

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 16px;
    animation: fadeIn .3s ease;
}
.form-alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}
.form-alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.floating-btn-whatsapp {
    background: #25D366;
}

.floating-btn-whatsapp:hover {
    background: #1DA851;
}

.floating-btn-call {
    background: #2196F3;
}

.floating-btn-call:hover {
    background: #1976D2;
}

.floating-btn svg {
    flex-shrink: 0;
}

.floating-btn-call svg {
    stroke: #fff;
}

.floating-buttons {
    transition: opacity 0.3s ease;
}

.legal-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--dark);
}

.legal-content h3 {
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: #444;
}

.legal-content ul {
    margin: 12px 0 16px 24px;
    list-style: disc;
}

.legal-content ul li {
    line-height: 1.7;
    margin-bottom: 6px;
    color: #444;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.footer-business-details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.business-info-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    line-height: 1.7;
    word-break: break-word;
}

.business-info-item strong {
    color: rgba(255,255,255,0.9);
}

.vehicle-price-boxes {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: left;
    border: 2px solid #e2e5e9;
    background: #f8f9fb;
    transition: transform 0.15s, box-shadow 0.2s;
    cursor: default;
}

.price-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

.price-box .price-box-label {
    font-size: 0.78rem;
    color: #6c757d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.price-box .price-box-value {
    font-weight: 900;
    font-size: 1.05rem;
    color: #1A1A2E;
    white-space: nowrap;
}

.price-box.price-box-highlight {
    background: #E63946;
    border-color: #E63946;
    box-shadow: 0 4px 16px rgba(230,57,70,0.25);
}

[data-theme] .price-box.price-box-highlight {
    background: var(--accent, #E63946);
    border-color: var(--accent, #E63946);
}

.price-box.price-box-highlight .price-box-label {
    color: rgba(255,255,255,0.9);
}

.price-box.price-box-highlight .price-box-value {
    color: #fff;
    font-size: 1.1rem;
}

.price-box.price-box-monthly {
    background: linear-gradient(135deg, #E63946 0%, #c5303c 100%);
    border-color: #E63946;
    box-shadow: 0 4px 20px rgba(230,57,70,0.3);
}

[data-theme] .price-box.price-box-monthly {
    background: linear-gradient(135deg, var(--accent, #E63946) 0%, var(--accent-dark, #c5303c) 100%);
    border-color: var(--accent, #E63946);
}

.price-box.price-box-monthly .price-box-label {
    color: rgba(255,255,255,0.92);
    font-size: 0.8rem;
}

.price-box.price-box-monthly .price-box-value {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
}

.price-box.price-box-monthly .price-box-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.price-box.price-box-deposit {
    position: relative;
    background: #fff;
    border: 2px dashed #d1d5db;
}

.price-box.price-box-deposit:hover {
    border-color: #9ca3af;
}

.price-box.price-box-deposit .price-box-value {
    color: #6c757d;
    font-weight: 700;
}

.deposit-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent, #E63946);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
    margin-left: 6px;
    transition: background 0.2s, transform 0.15s;
}

.deposit-info-btn:active {
    transform: scale(0.9);
}

.deposit-info-btn:hover {
    background: var(--accent-dark);
}

.km-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 4px;
}

.km-badge svg {
    flex-shrink: 0;
}

.deposit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.deposit-modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}

.deposit-modal h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.deposit-modal p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.deposit-modal ul {
    margin: 12px 0 0 20px;
    list-style: disc;
}

.deposit-modal ul li {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 6px;
}

.deposit-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}

.deposit-modal-close:hover {
    color: #333;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .vehicle-price-boxes {
        gap: 5px;
    }

    .price-box {
        padding: 8px 12px;
    }

    .price-box .price-box-label {
        font-size: 0.7rem;
    }

    .price-box .price-box-value {
        font-size: 0.9rem;
    }

    .deposit-modal {
        padding: 24px;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .vehicle-price-boxes {
        gap: 4px;
    }

    .price-box {
        padding: 7px 10px;
    }

    .price-box .price-box-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .price-box .price-box-value {
        font-size: 0.82rem;
    }

    .deposit-info-btn {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}


/* LOGO-PATCH-V6 - header 120px AI 140px !important, min-height 100px */
/* ==========================================================================
   LOGO - header & footer için kalıcı boyutlandırma (brand override-safe) v4
   ========================================================================== */

.logo .logo-img {
    max-height: 120px !important;
    max-width: 480px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    vertical-align: middle;
    flex-shrink: 0;
}

.logo .logo-img.logo-ai {
    max-height: 140px !important;
    max-width: 540px !important;
    image-rendering: -webkit-optimize-contrast;
}

.site-header,
.site-header .logo,
.site-header [class*="header-inner"] {
    min-height: 100px !important;
}

.site-footer .logo {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.site-footer .logo .logo-img,
.site-footer [class*="logo"] > .logo-img {
    max-height: 88px;
    max-width: 320px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

/* AI logo footer'da: ŞEFFAFLIK KORUNUR - badge yok */
.site-footer .logo .logo-img.logo-ai,
.site-footer [class*="logo"] > .logo-img.logo-ai,
.site-footer .ai-logo-wrap .logo-img.logo-ai {
    max-height: 96px;
    max-width: 340px;
    filter: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* OPSIYONEL beyaz badge - body class'ı eklenirse aktif */
body.footer-logo-badge .site-footer .logo-img.logo-ai,
body.footer-logo-badge .site-footer .ai-logo-wrap .logo-img.logo-ai {
    background: rgba(255, 255, 255, 0.96);
    padding: 8px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.site-footer .logo .logo-img:not(.logo-ai) {
    filter: brightness(0) invert(1);
}

.ai-logo-wrap {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 16px !important;
}
.ai-logo-wrap .logo-img.logo-ai {
    max-height: 96px;
    max-width: 340px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo .logo-img { max-height: 80px !important; max-width: 280px !important; }
    .logo .logo-img.logo-ai { max-height: 92px !important; max-width: 320px !important; }
    .site-header,
    .site-header .logo,
    .site-header [class*="header-inner"] { min-height: 80px !important; }
    .site-footer .logo .logo-img,
    .site-footer [class*="logo"] > .logo-img { max-height: 70px; max-width: 240px; }
    .site-footer .logo .logo-img.logo-ai,
    .site-footer [class*="logo"] > .logo-img.logo-ai,
    .site-footer .ai-logo-wrap .logo-img.logo-ai {
        max-height: 76px; max-width: 260px;
        padding: 0;
    }
    .ai-logo-wrap .logo-img.logo-ai { max-height: 76px; max-width: 260px; }
}

:root {
    --accent: #111111;
    --accent-dark: #000000;
    --accent-light: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #5b6472;
    --bg-light: #f6f7f9;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e5e7eb;
    --gray-600: #667085;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 26px;
    --container-pad: clamp(16px, 4vw, 32px);
    --header-h: 76px;
    --ease-premium: cubic-bezier(.2, .8, .2, 1);
}

html {
    overflow-x: hidden;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    background: #fff;
    color: var(--text-primary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-bottom: env(safe-area-inset-bottom);
}

body.nav-open {
    overflow: hidden;
}

img, video, iframe, svg {
    max-width: 100%;
}

button, a, input, select, textarea {
    min-height: 44px;
}

button, input, select, textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(17, 17, 17, .25);
    outline-offset: 3px;
}

.container,
.wz8-hero-banner .wz8-container {
    width: min(100%, 1180px);
    padding-inline: var(--container-pad);
}

.section {
    padding: clamp(44px, 8vw, 96px) 0;
}

.section-title {
    margin-bottom: clamp(24px, 5vw, 44px);
    font-size: clamp(1.65rem, 6vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.top-bar {
    display: none;
}

.site-header {
    top: 0;
    isolation: isolate;
    background: rgba(255, 255, 255, .84);
    border-bottom: 1px solid rgba(17, 24, 39, .08);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .25s var(--ease-premium), box-shadow .25s var(--ease-premium), min-height .25s var(--ease-premium);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 36px rgba(15, 23, 42, .08);
}

.site-header,
.site-header .logo,
.site-header [class*="header-inner"] {
    min-height: var(--header-h) !important;
}

.site-header.scrolled,
.site-header.scrolled .logo,
.site-header.scrolled [class*="header-inner"] {
    min-height: 62px !important;
}

.header-inner {
    width: min(100%, 1180px);
    min-height: var(--header-h);
    padding: 8px var(--container-pad);
    gap: 14px;
}

.logo .logo-img,
.logo .logo-img.logo-ai {
    max-height: 58px !important;
    max-width: min(220px, 48vw) !important;
    transition: max-height .25s var(--ease-premium), max-width .25s var(--ease-premium);
}

.site-header.scrolled .logo .logo-img,
.site-header.scrolled .logo .logo-img.logo-ai {
    max-height: 44px !important;
    max-width: min(190px, 46vw) !important;
}

.nav-menu {
    gap: clamp(14px, 2vw, 28px);
}

.nav-menu a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #202631;
    font-size: .92rem;
    transition: color .2s var(--ease-premium), background .2s var(--ease-premium), transform .2s var(--ease-premium);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #000;
    background: rgba(17, 17, 17, .06);
}

.nav-menu a.active::after {
    display: none;
}

.header-actions {
    margin-left: auto;
}

.header-quote-btn,
.mobile-bottom-cta a,
.btn,
.wz8-hero-banner .wz8-button,
.p4w-btn,
.vehicle-card-actions .btn {
    min-height: 48px;
    border-radius: 999px;
    transition: transform .22s var(--ease-premium), box-shadow .22s var(--ease-premium), background .22s var(--ease-premium), color .22s var(--ease-premium);
}

.header-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: #111;
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    box-shadow: 0 12px 26px rgba(17, 17, 17, .18);
}

.header-quote-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(17, 17, 17, .24);
}

.hamburger {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 999px;
    background: #111;
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: #fff;
}

.wz8-hero-banner,
.hero {
    min-height: calc(100svh - var(--header-h));
    padding: clamp(76px, 18vw, 136px) 0 clamp(48px, 10vw, 92px) !important;
    background-position: center !important;
}

.wz8-hero-banner::before,
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .46) 48%, rgba(0, 0, 0, .2));
}

.wz8-hero-banner .wz8-container,
.hero .container {
    position: relative;
    z-index: 1;
}

.wz8-hero-banner .wz8-content-wrapper,
.hero-content {
    max-width: 720px;
}

.wz8-hero-banner .wz8-main-headline,
.hero h1 {
    max-width: 12ch;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 13vw, 5.8rem);
    line-height: .94;
    letter-spacing: 0;
}

.wz8-hero-banner .wz8-sub-headline,
.hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1rem, 3.8vw, 1.25rem);
}

.wz8-hero-banner .wz8-call-to-action,
.hero-actions {
    gap: 12px;
}

.wz8-hero-banner .wz8-button,
.btn {
    padding: 14px 22px;
    font-weight: 800;
}

.wz8-hero-banner .wz8-button-primary,
.btn-primary {
    background: #fff;
    color: #111;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.wz8-hero-banner .wz8-button-primary:hover,
.btn-primary:hover {
    background: #f4f4f5;
    color: #000;
}

.wz8-hero-banner .wz8-button-whatsapp,
.btn-whatsapp,
.floating-btn-whatsapp {
    background: #21c063;
}

.feature-card,
.vehicle-card,
.p4w-card,
.info-box,
.contact-info-item,
.filter-bar,
.deposit-modal,
.form-alert {
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.feature-card,
.vehicle-card,
.p4w-card {
    transform: translateZ(0);
    will-change: transform;
}

.feature-card:hover,
.vehicle-card:hover,
.p4w-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.grid,
.feature-cards,
.vehicle-grid,
.p4w-grid-container,
.footer-grid {
    min-width: 0;
}

.vehicle-grid,
.p4w-grid-container {
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
}

.vehicle-card,
.p4w-card {
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
}

.vehicle-card-image,
.p4w-image-wrapper {
    aspect-ratio: 16 / 10;
    height: auto !important;
    min-height: 188px;
    background: linear-gradient(145deg, #f8fafc, #eef1f5);
}

.vehicle-card-image img,
.p4w-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-card-body,
.p4w-content-area {
    padding: clamp(16px, 4.5vw, 24px);
}

.vehicle-card-body h3,
.p4w-title {
    font-size: clamp(1.05rem, 4vw, 1.25rem);
    line-height: 1.2;
}

.vehicle-specs,
.p4w-specs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.vehicle-specs span,
.p4w-spec-item {
    min-width: 0;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f4f5f7;
    color: #343b47;
    font-size: .82rem;
}

.vehicle-price-boxes,
.p4w-price-cluster {
    display: grid;
    gap: 8px;
}

.price-box,
.p4w-price-box,
.vehicle-prices .price-row {
    border-radius: 14px;
    border: 1px solid #e6e8ec;
    background: #fff;
    box-shadow: none;
}

.price-box.price-box-monthly,
.p4w-price-box--monthly,
.price-box.price-box-highlight {
    background: #111;
    border-color: #111;
    box-shadow: 0 14px 28px rgba(17, 17, 17, .16);
}

.p4w-price-box--monthly .p4w-price-label,
.p4w-price-box--monthly .p4w-price-value,
.price-box.price-box-monthly .price-box-label,
.price-box.price-box-monthly .price-box-value,
.price-box.price-box-highlight .price-box-label,
.price-box.price-box-highlight .price-box-value {
    color: #fff;
}

.vehicle-card-actions,
.p4w-action-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vehicle-card-actions .btn,
.p4w-btn {
    width: 100%;
    justify-content: center;
    font-weight: 800;
}

.filter-bar {
    position: relative;
    padding: 12px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.filter-toggle {
    min-height: 48px;
    border-radius: 999px;
    background: #111;
}

.filter-bar-inner {
    gap: 12px;
}

.filter-group {
    width: 100%;
}

.filter-group label {
    color: #4b5563;
}

.filter-group select,
.form-control,
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
textarea,
select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d8dde6;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    padding: 14px 16px;
    transition: border-color .2s var(--ease-premium), box-shadow .2s var(--ease-premium), background .2s var(--ease-premium);
}

.filter-group select:focus,
.form-control:focus,
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
textarea:focus,
select:focus {
    border-color: #111;
    box-shadow: 0 0 0 4px rgba(17, 17, 17, .08);
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 8px;
    color: #4b5563;
    font-size: .86rem;
    font-weight: 800;
}

.form-group.is-filled label,
.form-group:focus-within label {
    color: #111;
}

.form-group.has-error .form-control,
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .08);
}

.form-error,
.form-error.visible {
    min-height: 20px;
    margin-top: 6px;
    color: #b42318;
    font-size: .82rem;
}

.form-alert-success {
    background: #ecfdf3;
    color: #067647;
    border-color: #abefc6;
}

.form-alert-error {
    background: #fef3f2;
    color: #b42318;
    border-color: #fecdca;
}

.site-footer,
.ft-k9c-scope {
    background: #07090d !important;
    color: #fff;
}

.footer-grid {
    gap: 28px;
}

.footer-col p,
.footer-col ul li a,
.footer-contact-item,
.business-info-item,
.ft-k9c-description,
.footer-biz-item {
    color: rgba(255, 255, 255, .72);
}

.footer-col h4,
.ft-k9c-title {
    color: #fff;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, .1);
}

.floating-buttons {
    right: 14px !important;
    bottom: calc(84px + env(safe-area-inset-bottom)) !important;
    gap: 10px;
}

.floating-btn {
    width: 52px !important;
    height: 52px !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22) !important;
}

.floating-btn-call {
    background: #111 !important;
}

.mobile-bottom-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
    background: rgba(255, 255, 255, .88);
    border-top: 1px solid rgba(17, 24, 39, .1);
    box-shadow: 0 -16px 40px rgba(15, 23, 42, .1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mobile-bottom-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 900;
    font-size: .92rem;
}

.mobile-bottom-cta .mobile-bottom-cta-call {
    background: #111;
}

.mobile-bottom-cta .mobile-bottom-cta-whatsapp {
    background: #21c063;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease-premium), transform .65s var(--ease-premium);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .header-quote-btn {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 999;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: calc(var(--header-h) + 22px) var(--container-pad) 28px;
        background: rgba(255, 255, 255, .96);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .28s var(--ease-premium), visibility .28s var(--ease-premium), transform .28s var(--ease-premium);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        min-height: 56px;
        justify-content: space-between;
        padding: 0 18px;
        border-radius: 16px;
        background: #f5f6f8;
        font-size: 1.05rem;
        font-weight: 850;
    }

    .nav-menu a::after {
        content: ">";
        display: inline-flex;
        color: #98a2b3;
    }

    .hamburger {
        display: inline-flex;
        position: relative;
        z-index: 1001;
    }

    .wz8-hero-banner,
    .hero {
        text-align: left !important;
        background-position: 58% center !important;
    }

    .wz8-hero-banner .wz8-call-to-action,
    .hero-actions {
        flex-direction: column;
    }

    .wz8-hero-banner .wz8-button,
    .hero-actions .btn,
    .cta-section .btn {
        width: 100%;
    }

    .feature-card {
        text-align: left;
    }

    .feature-card .icon {
        margin-left: 0;
    }

    .filter-bar-inner {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        margin-top: 0;
        opacity: 0;
        transition: grid-template-rows .28s var(--ease-premium), opacity .28s var(--ease-premium), margin-top .28s var(--ease-premium);
    }

    .filter-bar-inner.active {
        display: grid;
        grid-template-rows: 1fr;
        margin-top: 12px;
        opacity: 1;
    }

    .filter-bar-inner > * {
        min-height: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-col,
    .site-footer .logo {
        text-align: left;
        align-items: flex-start;
    }

    .footer-bottom,
    .footer-bottom-links {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (min-width: 480px) {
    .vehicle-grid,
    .p4w-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    :root {
        --header-h: 84px;
    }

    .top-bar {
        display: block;
        background: #090b10;
    }

    .header-quote-btn {
        display: inline-flex;
    }

    .vehicle-grid,
    .p4w-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .filter-toggle {
        display: none;
    }

    .filter-bar {
        position: sticky;
        top: 86px;
        z-index: 10;
        padding: 16px;
    }

    .filter-bar-inner {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
        align-items: end;
    }

    .btn-reset {
        width: auto;
        margin-left: 0;
        align-self: end;
    }

    .mobile-bottom-cta {
        display: none;
    }

    .floating-buttons {
        bottom: 24px !important;
        right: 24px !important;
    }
}

@media (min-width: 1024px) {
    .vehicle-grid,
    .p4w-grid-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
    }
}

@media (min-width: 1440px) {
    .container,
    .header-inner,
    .wz8-hero-banner .wz8-container {
        width: min(100%, 1320px);
    }

    .vehicle-grid,
    .p4w-grid-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

html,
body {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    height: auto;
    max-width: 100%;
    overflow-x: clip;
}

body {
    position: relative;
    overscroll-behavior-x: none;
}

main,
section,
header,
footer,
.page-content,
.container,
.wz8-container,
.p4w-grid-container,
.vehicle-grid,
.footer-grid,
.contact-grid,
.grid {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

main {
    overflow-x: clip;
    overflow-y: visible;
}

.section,
.page-content {
    min-height: 0;
    height: auto;
}

.wz8-hero-banner,
.hero {
    min-height: clamp(520px, calc(100dvh - 76px), 760px) !important;
    max-height: 860px;
    height: auto !important;
    overflow: hidden;
    contain: layout paint;
}

.wz8-hero-banner .wz8-container,
.hero .container {
    min-height: 0;
}

.wz8-hero-banner .wz8-main-headline,
.hero h1 {
    overflow-wrap: anywhere;
}

.page-header {
    min-height: 0 !important;
    height: auto !important;
    max-height: none;
    padding-block: clamp(44px, 8vw, 92px) !important;
    overflow: hidden;
}

.p4w-grid-container,
.vehicle-grid {
    align-items: stretch;
    contain: layout;
}

.p4w-card,
.vehicle-card,
.feature-card,
.contact-info-item,
.info-box {
    min-height: 0;
}

.p4w-image-wrapper,
.vehicle-card-image,
.vehicle-detail-image {
    max-height: 320px;
}

.filter-bar {
    max-width: 100%;
}

.filter-bar-inner {
    min-height: 0;
}

.floating-buttons,
.mobile-bottom-cta {
    contain: layout paint;
}

@supports not (height: 100dvh) {
    .wz8-hero-banner,
    .hero {
        min-height: clamp(520px, calc(100vh - 76px), 760px) !important;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
        overflow-y: visible;
    }

    .wz8-hero-banner,
    .hero {
        min-height: clamp(480px, calc(100dvh - 76px), 680px) !important;
        max-height: 720px;
    }

    .section {
        padding-block: clamp(36px, 10vw, 64px);
    }

    .p4w-image-wrapper,
    .vehicle-card-image {
        max-height: 240px;
    }
}

@media (min-width: 768px) {
    .wz8-hero-banner,
    .hero {
        min-height: clamp(560px, calc(100dvh - 84px), 760px) !important;
    }
}

.logo img,
.logo .logo-img,
.logo .logo-img.logo-ai,
.navbar-brand img,
.site-header .logo img,
.site-footer .logo img,
.ft-k9c-logo img,
.ai-logo-wrap .logo-img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: min(190px, 42vw) !important;
    max-height: 42px !important;
    object-fit: contain !important;
    object-position: center;
    image-rendering: auto;
}

.site-header,
.site-header .logo,
.site-header [class*="header-inner"] {
    min-height: 66px !important;
}

.site-header.scrolled,
.site-header.scrolled .logo,
.site-header.scrolled [class*="header-inner"] {
    min-height: 58px !important;
}

.header-inner {
    min-height: 66px !important;
    align-items: center;
}

.site-header.scrolled .header-inner {
    min-height: 58px !important;
}

.site-footer .logo .logo-img:not(.logo-ai),
.site-footer .logo img {
    filter: none !important;
}

@media (max-width: 1024px) {
    .logo img,
    .logo .logo-img,
    .logo .logo-img.logo-ai,
    .navbar-brand img,
    .site-header .logo img,
    .site-footer .logo img,
    .ft-k9c-logo img,
    .ai-logo-wrap .logo-img {
        max-height: 36px !important;
        max-width: min(170px, 42vw) !important;
    }
}

@media (max-width: 768px) {
    .logo img,
    .logo .logo-img,
    .logo .logo-img.logo-ai,
    .navbar-brand img,
    .site-header .logo img,
    .site-footer .logo img,
    .ft-k9c-logo img,
    .ai-logo-wrap .logo-img {
        max-height: 30px !important;
        max-width: min(145px, 44vw) !important;
    }

    .site-header,
    .site-header .logo,
    .site-header [class*="header-inner"],
    .header-inner {
        min-height: 58px !important;
    }

    .hamburger {
        width: 42px;
        height: 42px;
    }
}

.admin-layout {
    min-height: 100dvh;
}

/* Premium navbar logo scale */
.site-header {
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 16px 46px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header,
.site-header .logo,
.site-header [class*="header-inner"],
.header-inner {
    min-height: 88px !important;
}

.header-inner {
    gap: clamp(20px, 4vw, 48px) !important;
    padding: 10px var(--container-pad) !important;
}

.navbar-brand,
.site-header .logo {
    align-items: center !important;
    border-radius: 18px;
    display: inline-flex !important;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 64px;
    padding: 8px 10px !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.navbar-brand:hover,
.site-header .logo:hover {
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
    transform: translateY(-1px);
}

.navbar-brand img,
.site-header .logo img,
.site-header .logo .logo-img,
.site-header .logo .logo-img.logo-ai {
    display: block;
    height: auto !important;
    image-rendering: auto;
    max-height: 64px !important;
    max-width: min(260px, 42vw) !important;
    object-fit: contain !important;
    object-position: center;
    transition: transform 0.3s ease, max-height 0.3s ease;
    width: auto !important;
}

.navbar-brand img:hover,
.site-header .logo img:hover {
    transform: scale(1.03);
}

.site-header.scrolled,
.site-header.scrolled .logo,
.site-header.scrolled [class*="header-inner"],
.site-header.scrolled .header-inner {
    min-height: 76px !important;
}

.site-header.scrolled .logo img,
.site-header.scrolled .logo .logo-img,
.site-header.scrolled .logo .logo-img.logo-ai,
.site-header.scrolled .navbar-brand img {
    max-height: 54px !important;
}

.site-header .nav-menu {
    align-items: center;
    gap: clamp(18px, 2.5vw, 34px);
}

.site-header .header-actions {
    align-items: center;
    display: flex;
    min-height: 52px;
}

@media (max-width: 1024px) {
    .site-header,
    .site-header .logo,
    .site-header [class*="header-inner"],
    .header-inner {
        min-height: 78px !important;
    }

    .navbar-brand,
    .site-header .logo {
        min-height: 54px;
        padding: 7px 8px !important;
    }

    .navbar-brand img,
    .site-header .logo img,
    .site-header .logo .logo-img,
    .site-header .logo .logo-img.logo-ai {
        max-height: 54px !important;
        max-width: min(230px, 44vw) !important;
    }
}

@media (max-width: 768px) {
    .site-header,
    .site-header .logo,
    .site-header [class*="header-inner"],
    .header-inner {
        min-height: 66px !important;
    }

    .header-inner {
        gap: 12px !important;
        padding: 8px var(--container-pad) !important;
    }

    .navbar-brand,
    .site-header .logo {
        border-radius: 14px;
        min-height: 48px;
        padding: 5px 6px !important;
    }

    .navbar-brand img,
    .site-header .logo img,
    .site-header .logo .logo-img,
    .site-header .logo .logo-img.logo-ai,
    .site-header.scrolled .logo img,
    .site-header.scrolled .logo .logo-img,
    .site-header.scrolled .logo .logo-img.logo-ai {
        max-height: 42px !important;
        max-width: min(188px, 54vw) !important;
    }

    .hamburger {
        height: 46px !important;
        width: 46px !important;
    }
}

.sr-only,
.seo-keyword-context {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}