/* ==========================================================================
   VinFast Site — Main Stylesheet
   Inspired by vinfastauto.id/en
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --vf-blue:      #003087;
    --vf-blue-mid:  #004ab3;
    --vf-white:     #ffffff;
    --vf-black:     #1a1a1a;
    --vf-gray-100:  #f8f8f8;
    --vf-gray-200:  #f0f0f0;
    --vf-gray-400:  #b0b0b0;
    --vf-gray-600:  #6b6b6b;
    --vf-border:    #e8e8e8;
    --vf-header-h:  72px;
    --vf-radius:    4px;
    --vf-shadow:    0 4px 24px rgba(0,0,0,0.08);
    --vf-transition: 0.2s ease;
    --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--vf-black);
    background: var(--vf-white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ==========================================================================
   Header
   ========================================================================== */

.vf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--vf-white);
    border-bottom: 1px solid var(--vf-border);
    height: var(--vf-header-h);
}

.vf-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Logo */
.vf-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
}

.vf-logo__mark { width: 28px; height: 28px; }

.vf-logo__word { height: 11px; width: auto; }

.vf-logo--white .vf-logo__word { filter: brightness(0) invert(1); }

/* Nav */
.vf-nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
    height: 100%;
}

.vf-nav__link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-black);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--vf-transition);
    position: relative;
}

.vf-nav__link {
    padding: 0 0.4rem;
    margin: 0 0.6rem;
}

.vf-nav__link::before {
    content: '';
    position: absolute;
    left: 0.4rem;
    right: 0.4rem;
    top: 50%;
    height: 36px;
    transform: translateY(-50%) scaleX(0.85);
    background: var(--vf-gray-100);
    border-radius: 999px;
    opacity: 0;
    transition: opacity var(--vf-transition), transform var(--vf-transition);
    z-index: -1;
}

.vf-nav__link::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0.8rem;
    right: 0.8rem;
    height: 2px;
    background: var(--vf-blue);
    transform: scaleX(0);
    transition: transform var(--vf-transition);
}

.vf-nav__link:hover,
.vf-nav__link--active { color: var(--vf-blue); }

.vf-nav__link:hover::before,
.vf-nav__link--active::before { opacity: 1; transform: translateY(-50%) scaleX(1); }

.vf-nav__link:hover::after,
.vf-nav__link--active::after { transform: scaleX(1); }

.vf-nav__chevron,
.vf-nav__arrow { font-size: 0.7rem; transition: transform var(--vf-transition); }

.vf-nav__dropdown--open .vf-nav__chevron { transform: rotate(180deg); }

.vf-nav__link--external { color: var(--vf-gray-600); }

/* Nav CTA */
.vf-nav__cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.5rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vf-white);
    background: var(--vf-blue);
    border-radius: 999px;
    transition: background var(--vf-transition), transform var(--vf-transition), box-shadow var(--vf-transition);
    box-shadow: 0 2px 10px rgba(0, 48, 135, 0.25);
}

.vf-nav__cta:hover,
.vf-nav__cta--active {
    background: var(--vf-blue-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 48, 135, 0.35);
}

.vf-nav__cta-icon { font-size: 0.85rem; }

/* Dropdown */
.vf-nav__dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.vf-nav__dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translate(-50%, -4px);
    min-width: 260px;
    background: var(--vf-white);
    border: 1px solid var(--vf-border);
    border-radius: 12px;
    box-shadow: var(--vf-shadow);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--vf-transition), transform var(--vf-transition), visibility var(--vf-transition);
    z-index: 200;
}

.vf-nav__dropdown--open .vf-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.vf-nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    color: var(--vf-black);
    transition: background var(--vf-transition), padding-left var(--vf-transition);
}

.vf-nav__dropdown-item:hover {
    background: var(--vf-gray-100);
    padding-left: 1rem;
}

.vf-nav__dropdown-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}

.vf-nav__dropdown-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vf-nav__dropdown-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.vf-nav__dropdown-tagline {
    font-size: 0.75rem;
    color: var(--vf-gray-600);
}

.vf-nav__dropdown-arrow {
    font-size: 0.85rem;
    color: var(--vf-gray-400);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity var(--vf-transition), transform var(--vf-transition);
}

.vf-nav__dropdown-item:hover .vf-nav__dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--vf-blue);
}

/* Hamburger */
.vf-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.vf-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--vf-black);
    transition: all var(--vf-transition);
    transform-origin: center;
}

.vf-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vf-hamburger--open span:nth-child(2) { opacity: 0; }
.vf-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.vf-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--vf-white);
    border-top: 1px solid var(--vf-border);
    padding: 1rem 0;
}

.vf-mobile-nav--open { display: flex; }

.vf-mobile-nav__link,
.vf-mobile-nav__sub,
.vf-mobile-nav__label {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    color: var(--vf-black);
    display: block;
}

.vf-mobile-nav__label {
    font-weight: 600;
    color: var(--vf-gray-600);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 1rem;
}

.vf-mobile-nav__sub { padding-left: 3rem; color: var(--vf-gray-600); }
.vf-mobile-nav__link:hover,
.vf-mobile-nav__sub:hover { color: var(--vf-blue); background: var(--vf-gray-100); }

/* ==========================================================================
   Hero
   ========================================================================== */

.vf-hero {
    position: relative;
    min-height: calc(100vh - var(--vf-header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--vf-black);
}

.vf-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.vf-hero:hover .vf-hero__bg { transform: scale(1); }

.vf-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.vf-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem;
    max-width: 600px;
    margin-left: clamp(2rem, 8vw, 10rem);
}

.vf-hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.vf-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--vf-white);
    margin-bottom: 1.25rem;
}

.vf-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.vf-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.vf-hero--photo {
    background: var(--vf-white);
    min-height: auto;
    justify-content: center;
    padding: 0;
}

.vf-hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    max-height: 75vh;
    overflow: hidden;
}

.vf-hero__photo {
    box-shadow: -40px 0 60px -20px rgba(0,0,0,0.35), 40px 0 60px -20px rgba(0,0,0,0.35);
}

.vf-hero-slider__slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.vf-hero-slider__slide--active {
    opacity: 1;
    pointer-events: auto;
}

.vf-hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vf-black);
    box-shadow: var(--vf-shadow);
    transition: background var(--vf-transition), transform var(--vf-transition);
}

.vf-hero-slider__nav:hover {
    background: var(--vf-white);
    transform: translateY(-50%) scale(1.08);
}

.vf-hero-slider__nav--prev { left: 1.5rem; }
.vf-hero-slider__nav--next { right: 1.5rem; }

.vf-hero-slider__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.vf-hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--vf-transition), transform var(--vf-transition);
}

.vf-hero-slider__dot--active {
    background: var(--vf-blue);
    transform: scale(1.3);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.vf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--vf-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--vf-transition);
    text-decoration: none;
}

.vf-btn--primary {
    background: var(--vf-blue);
    color: var(--vf-white);
    border-color: var(--vf-blue);
}

.vf-btn--primary:hover {
    background: var(--vf-blue-mid);
    border-color: var(--vf-blue-mid);
}

.vf-btn--outline {
    background: transparent;
    color: var(--vf-white);
    border-color: var(--vf-white);
}

.vf-btn--outline:hover {
    background: var(--vf-white);
    color: var(--vf-blue);
}

.vf-btn--white {
    background: var(--vf-white);
    color: var(--vf-black);
    border-color: var(--vf-white);
}

.vf-btn--white:hover { background: var(--vf-gray-200); }

.vf-btn--outline-white {
    background: transparent;
    color: var(--vf-white);
    border-color: rgba(255,255,255,0.6);
}

.vf-btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--vf-white);
}

.vf-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-black);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--vf-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.vf-link:hover { color: var(--vf-blue); }
.vf-link--external { color: var(--vf-gray-600); }

/* ==========================================================================
   Sections
   ========================================================================== */

.vf-section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.vf-section--gray {
    max-width: 100%;
    background: var(--vf-gray-100);
    padding: 5rem 2rem;
}

.vf-section--gray > * { max-width: 1280px; margin: 0 auto; }

.vf-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.vf-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vf-blue);
    margin-bottom: 0.75rem;
}

.vf-section__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--vf-black);
    margin-bottom: 0.75rem;
}

.vf-section__subtitle {
    font-size: 1rem;
    color: var(--vf-gray-600);
    max-width: 520px;
    margin: 0 auto;
}

/* ==========================================================================
   Bike Cards
   ========================================================================== */

.vf-bikes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vf-bikes--full {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.vf-bike-card {
    background: var(--vf-white);
    border: 1px solid var(--vf-border);
    border-radius: var(--vf-radius);
    overflow: hidden;
    transition: box-shadow var(--vf-transition), transform var(--vf-transition);
}

.vf-bike-card:hover {
    box-shadow: var(--vf-shadow);
    transform: translateY(-2px);
}

.vf-bike-card__image-wrap {
    background: var(--vf-gray-100);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vf-bike-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.vf-bike-card:hover .vf-bike-card__image { transform: scale(1.04); }

.vf-bike-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-bike-card__info {
    padding: 1.5rem;
}

.vf-bike-card__name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.vf-bike-card__tagline {
    font-size: 0.875rem;
    color: var(--vf-gray-600);
    margin-bottom: 1.25rem;
}

.vf-bike-card__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

/* Horizontal card (listing page) */
.vf-bike-card--horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.vf-bike-card--horizontal .vf-bike-card__image-wrap {
    aspect-ratio: unset;
    height: 100%;
}

.vf-bike-card--horizontal .vf-bike-card__body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vf-bike-card__desc {
    font-size: 0.9rem;
    color: var(--vf-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Mini specs inside listing card */
.vf-mini-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--vf-border);
    border-bottom: 1px solid var(--vf-border);
}

.vf-mini-spec {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vf-mini-spec__value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vf-black);
}

.vf-mini-spec__label {
    font-size: 0.75rem;
    color: var(--vf-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Features Grid (Home)
   ========================================================================== */

.vf-features {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.vf-feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.vf-feature__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vf-feature__desc {
    font-size: 0.875rem;
    color: var(--vf-gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   Multi-Location Dealer
   ========================================================================== */

.vf-locations { display: flex; flex-direction: column; gap: 0; }

.vf-location-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--vf-border);
    border-radius: var(--vf-radius) var(--vf-radius) 0 0;
    overflow: hidden;
}

.vf-location-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--vf-gray-100);
    border: none;
    border-right: 1px solid var(--vf-border);
    cursor: pointer;
    text-align: left;
    transition: background var(--vf-transition), color var(--vf-transition);
    font-family: var(--font);
}

.vf-location-tab:last-child { border-right: none; }

.vf-location-tab:hover { background: var(--vf-gray-200); }

.vf-location-tab--active {
    background: var(--vf-white);
    border-bottom: 2px solid var(--vf-blue);
}

.vf-location-tab__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--vf-border);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vf-gray-600);
    flex-shrink: 0;
    transition: background var(--vf-transition), color var(--vf-transition);
}

.vf-location-tab--active .vf-location-tab__number {
    background: var(--vf-blue);
    color: var(--vf-white);
}

.vf-location-tab__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vf-gray-600);
    line-height: 1.3;
}

.vf-location-tab--active .vf-location-tab__name { color: var(--vf-black); }

.vf-location-panels {
    border: 1px solid var(--vf-border);
    border-top: none;
    border-radius: 0 0 var(--vf-radius) var(--vf-radius);
}

.vf-location-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.vf-location-panel--active { display: grid; }

.vf-location-panel__info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-right: 1px solid var(--vf-border);
}

.vf-location-panel__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.vf-location-panel__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.vf-location-panel__map { overflow: hidden; }
.vf-location-panel__map iframe { display: block; height: 100%; min-height: 280px; }

@media (max-width: 768px) {
    .vf-location-tabs { grid-template-columns: repeat(2, 1fr); }
    .vf-location-panel { grid-template-columns: 1fr; }
    .vf-location-panel__info { border-right: none; border-bottom: 1px solid var(--vf-border); }
    .vf-location-panel__map iframe { min-height: 240px; }
}

@media (max-width: 480px) {
    .vf-location-tabs { grid-template-columns: 1fr 1fr; }
    .vf-location-tab { padding: 0.75rem 1rem; }
}

/* ==========================================================================
   Dealer Section
   ========================================================================== */

.vf-dealer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.vf-dealer__name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.vf-dealer__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--vf-gray-600);
    margin-bottom: 0.75rem;
}

.vf-dealer__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

.vf-dealer__map-placeholder {
    background: var(--vf-gray-200);
    border-radius: var(--vf-radius);
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--vf-gray-400);
    font-size: 3rem;
}

.vf-dealer__map-placeholder p { font-size: 0.875rem; }

/* ==========================================================================
   Page Hero (inner pages)
   ========================================================================== */

.vf-page-hero {
    background: var(--vf-blue);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--vf-white);
}

.vf-page-hero .vf-section__label { color: rgba(255,255,255,0.7); }

.vf-page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--vf-white);
    margin-bottom: 0.75rem;
}

.vf-page-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   Motorcycle Hero (detail page)
   ========================================================================== */

/* ==========================================================================
   Motorcycle Detail — Hero
   ========================================================================== */

.vf-moto-hero {
    overflow: hidden;
    background: var(--vf-white);
}

.vf-moto-hero__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.vf-moto-hero__content {
    padding: 4rem 3rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--vf-gray-400);
    margin-bottom: 2rem;
}
.vf-breadcrumb a:hover { color: var(--vf-blue); }
.vf-breadcrumb span { color: var(--vf-gray-400); }

.vf-moto-hero__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.vf-moto-hero__title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--vf-black);
}

.vf-moto-hero__tagline {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--vf-gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
    border-left: 3px solid var(--vf-border);
    padding-left: 1rem;
}

.vf-moto-hero__desc {
    font-size: 0.88rem;
    color: var(--vf-gray-600);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 420px;
}

.vf-moto-hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Right: visual panel */
.vf-moto-hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vf-moto-hero__accent-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    z-index: 3;
}

.vf-moto-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vf-moto-hero__circle {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.vf-moto-hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 32px 48px rgba(0,0,0,0.2));
    transition: transform 0.55s ease, opacity 0.2s ease;
    flex: 1;
    padding: 3rem 2rem 1.5rem;
}

.vf-moto-hero__image:hover { transform: scale(1.04) translateY(-6px); }

/* Color swatches — horizontal bar at bottom of image panel */
.vf-color-swatches {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 2rem;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,0,0,0.07);
}

.vf-color-swatches__list {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vf-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    outline: none;
    padding: 0;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vf-swatch img { width: 36px; height: 36px; object-fit: cover; border-radius: 50%; display: block; pointer-events: none; }

.vf-swatch:hover { transform: scale(1.12); box-shadow: 0 3px 10px rgba(0,0,0,0.2); }

.vf-swatch--active {
    border-color: var(--vf-blue) !important;
    box-shadow: 0 0 0 3px rgba(0,48,135,0.2);
}

.vf-color-swatches__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vf-gray-600);
    white-space: nowrap;
}

/* ==========================================================================
   Stats Strip
   ========================================================================== */

.vf-stats-strip {
    background: #0d0d0d;
    border-bottom: 3px solid transparent;
}

.vf-stats-strip__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    padding: 0 2rem;
}

.vf-stats-strip__item {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.vf-stats-strip__item:last-child { border-right: none; }

.vf-stats-strip__value {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.vf-stats-strip__label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.vf-stats-strip__note {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.vf-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: #fff8e1;
    border: 1px solid #f9a825;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6d4c00;
}

.vf-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 940px;
    margin: 0 auto;
}

.vf-price-card {
    background: var(--vf-white);
    border: 1.5px solid var(--vf-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow var(--vf-transition), transform var(--vf-transition);
}

.vf-price-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.vf-price-card--featured {
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transform: translateY(-6px);
}

.vf-price-card--featured:hover { transform: translateY(-10px); }

.vf-price-card__header {
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: var(--vf-gray-100);
}

.vf-price-card--featured .vf-price-card__header {
    border-bottom-color: transparent;
}

.vf-price-card__variant {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vf-black);
}

.vf-price-card--featured .vf-price-card__variant { color: var(--vf-white); }

.vf-price-card__badge {
    font-size: 0.6rem;
    font-weight: 800;
    background: #ffd600;
    color: #000;
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vf-price-card__body {
    padding: 1.75rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.vf-price-card__original {
    font-size: 0.82rem;
    color: var(--vf-gray-400);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.vf-price-card__price {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
}

.vf-price-card__saving {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2e7d32;
    background: #e8f5e9;
    border-radius: 2rem;
    padding: 0.25rem 0.8rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   Highlights (vertical card layout)
   ========================================================================== */

.vf-highlights {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.vf-highlight {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    background: var(--vf-white);
    border-radius: 12px;
    border: 1.5px solid var(--vf-border);
    transition: box-shadow var(--vf-transition), transform var(--vf-transition), border-color var(--vf-transition);
}

.vf-highlight:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    transform: translateY(-3px);
    border-color: rgba(0,0,0,0.15);
}

.vf-highlight__icon {
    font-size: 1.75rem;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.vf-highlight__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vf-black);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.vf-highlight__desc {
    font-size: 0.85rem;
    color: var(--vf-gray-600);
    line-height: 1.7;
}

.vf-highlight__check { font-size: 1.25rem; flex-shrink: 0; margin-bottom: 0.75rem; }
.vf-highlight__text  { font-size: 0.9rem; color: var(--vf-black); line-height: 1.5; font-weight: 500; }

/* ==========================================================================
   Specs Grid
   ========================================================================== */

.vf-specs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.vf-spec-card {
    padding: 1.75rem 1.25rem;
    background: var(--vf-white);
    border: 1.5px solid var(--vf-border);
    border-radius: var(--vf-radius);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-top-width: 3px;
    transition: box-shadow var(--vf-transition), transform var(--vf-transition);
}

.vf-spec-card:hover {
    box-shadow: var(--vf-shadow);
    transform: translateY(-2px);
}

.vf-spec-card__value {
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
}

.vf-spec-card__label {
    font-size: 0.7rem;
    color: var(--vf-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.vf-spec-card__note {
    font-size: 0.65rem;
    color: var(--vf-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
}

/* ==========================================================================
   Other Models
   ========================================================================== */

.vf-other-models {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vf-other-card {
    display: flex;
    flex-direction: column;
    background: var(--vf-white);
    border: 1.5px solid var(--vf-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow var(--vf-transition), transform var(--vf-transition);
}

.vf-other-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.vf-other-card__image-wrap {
    position: relative;
    padding: 2rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
}

.vf-other-card__accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.vf-other-card__image {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
    transition: transform 0.45s ease;
}

.vf-other-card:hover .vf-other-card__image { transform: scale(1.06) translateY(-4px); }

.vf-other-card__info {
    padding: 1.25rem 1.75rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid var(--vf-border);
}

.vf-other-card__brand {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vf-gray-400);
    margin-bottom: 0.2rem;
}

.vf-other-card__name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.vf-other-card__tagline {
    font-size: 0.78rem;
    color: var(--vf-gray-400);
    line-height: 1.4;
}

.vf-other-card__arrow {
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.vf-other-card:hover .vf-other-card__arrow { transform: translateX(4px); }

/* ==========================================================================
   Spec Table
   ========================================================================== */

.vf-spec-table-wrap {
    overflow-x: auto;
    border-radius: var(--vf-radius);
    border: 1.5px solid var(--vf-border);
}

.vf-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.vf-spec-table thead tr {
    background: #f8f8f8;
}

.vf-spec-table th {
    padding: 1.1rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--vf-black);
    text-align: left;
    border-bottom: 2px solid var(--vf-border);
}

.vf-spec-table th:not(.vf-spec-table__model) { font-size: 0.85rem; text-transform: none; letter-spacing: 0; }

.vf-spec-table tbody tr {
    border-bottom: 1px solid var(--vf-border);
    transition: background var(--vf-transition);
}

.vf-spec-table tbody tr:nth-child(even) { background: #fafafa; }
.vf-spec-table tbody tr:last-child { border-bottom: none; }
.vf-spec-table tbody tr:hover { background: #f0f4ff; }

.vf-spec-table__label {
    padding: 0.9rem 1.5rem;
    color: var(--vf-gray-600);
    font-weight: 500;
    font-size: 0.875rem;
    width: 33%;
}

.vf-spec-table__value {
    padding: 0.9rem 1.5rem;
    color: var(--vf-black);
    font-weight: 500;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .vf-pricing { grid-template-columns: 1fr; max-width: 360px; }
    .vf-spec-table__label { width: auto; }
    .vf-highlights { grid-template-columns: 1fr 1fr; }
    .vf-stats-strip__inner { flex-wrap: wrap; }
    .vf-stats-strip__item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ==========================================================================
   About Page
   ========================================================================== */

.vf-about__body {
    font-size: 0.95rem;
    color: var(--vf-gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Intro grid */
.vf-about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vf-about-intro__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vf-stat {
    padding: 1.75rem;
    border: 1px solid var(--vf-border);
    border-radius: var(--vf-radius);
    text-align: center;
}

.vf-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--vf-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.vf-stat__label {
    font-size: 0.75rem;
    color: var(--vf-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Misi Visi */
.vf-about-mv {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vf-mv-card {
    background: var(--vf-white);
    border: 1px solid var(--vf-border);
    border-radius: var(--vf-radius);
    padding: 2rem;
    text-align: center;
}

.vf-mv-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.vf-mv-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.vf-mv-card__body {
    font-size: 0.875rem;
    color: var(--vf-gray-600);
    line-height: 1.7;
}

/* Timeline */
.vf-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.vf-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--vf-border);
}

.vf-timeline__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.vf-timeline__item::before {
    content: '';
    position: absolute;
    left: 75px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--vf-blue);
    border: 2px solid var(--vf-white);
    box-shadow: 0 0 0 2px var(--vf-blue);
}

.vf-timeline__year {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vf-blue);
    padding-top: 0.1rem;
    text-align: right;
    padding-right: 0.5rem;
}

.vf-timeline__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.vf-timeline__desc {
    font-size: 0.875rem;
    color: var(--vf-gray-600);
    line-height: 1.7;
}

/* Dealer section on About page */
.vf-about-dealer {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .vf-about-intro { grid-template-columns: 1fr; }
    .vf-about-mv { grid-template-columns: 1fr; }
    .vf-about-dealer { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .vf-about-intro__stats { grid-template-columns: 1fr 1fr; }
    .vf-timeline::before { left: 60px; }
    .vf-timeline__item { grid-template-columns: 60px 1fr; }
    .vf-timeline__item::before { left: 55px; }
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.vf-cta-banner {
    padding: 5rem 2rem;
    text-align: center;
    color: var(--vf-white);
}

.vf-cta-banner__inner { max-width: 640px; margin: 0 auto; }

.vf-cta-banner__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.vf-cta-banner__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.vf-cta-banner__sub {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.vf-cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */

.vf-footer {
    background: #111;
    color: rgba(255,255,255,0.85);
}

.vf-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.vf-footer__tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.75rem;
}

.vf-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vf-footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.vf-footer__link {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.6rem;
    transition: color var(--vf-transition);
}

.vf-footer__link:hover { color: var(--vf-white); }

.vf-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    max-width: 1280px;
    margin: 0 auto;
}

/* ==========================================================================
   Main wrapper
   ========================================================================== */

.vf-main { min-height: 60vh; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .vf-bikes { grid-template-columns: 1fr; }
    .vf-bike-card--horizontal { grid-template-columns: 1fr; }
    .vf-bike-card--horizontal .vf-bike-card__image-wrap { aspect-ratio: 16/7; height: auto; }
    .vf-features { grid-template-columns: repeat(2, 1fr); }
    .vf-specs { grid-template-columns: repeat(3, 1fr); }
    .vf-dealer { grid-template-columns: 1fr; }
    .vf-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .vf-highlights { grid-template-columns: repeat(2, 1fr); }
    .vf-other-models { grid-template-columns: 1fr; }
    .vf-moto-hero__inner { grid-template-columns: 1fr; min-height: auto; }
    .vf-moto-hero__content { padding: 2.5rem 1.5rem; }
    .vf-moto-hero__visual { min-height: 320px; }
    .vf-moto-hero__image { max-height: 280px; padding: 1.5rem 1.5rem 0; }
    .vf-color-swatches { padding: 0.75rem 1.5rem; }
}

@media (max-width: 768px) {
    .vf-nav { display: none; }
    .vf-hamburger { display: flex; }
    .vf-hero__content { margin-left: 2rem; padding: 4rem 1rem; }
    .vf-section { padding: 3.5rem 1.25rem; }
    .vf-features { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .vf-specs { grid-template-columns: repeat(2, 1fr); }
    .vf-footer__links { grid-template-columns: 1fr 1fr; }
    .vf-mini-specs { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
    .vf-features { grid-template-columns: 1fr; }
    .vf-specs { grid-template-columns: 1fr 1fr; }
    .vf-footer__links { grid-template-columns: 1fr; }
    .vf-hero__title { font-size: 2rem; }
    .vf-bike-card--horizontal .vf-bike-card__body { padding: 1.5rem; }
    .vf-other-card { grid-template-columns: 1fr; }
    .vf-other-card__image { width: 100%; height: 160px; }
}
