/* ===== Variables ===== */
:root {
  --white: #ffffff;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --hero-accent: #e85d04;
  --hero-surface: #eceef0;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ===== Modern Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll-triggered - ẩn ban đầu, hiện khi vào viewport */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }

body {
  margin: 0;
  font-family: 'Be Vietnam Pro', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--green-100);
  padding: 16px 0;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gray-900);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 120;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.logo-brand {
  color: #9bfe6b;
  font-weight: 800;
}

.logo-accent {
  color: var(--green-700);
}

.section-kicker .logo-brand {
  color: #9bfe6b;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--gray-900);
  position: relative;
  z-index: 120;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  flex-shrink: 0;
}

/* Drawer mobile: full viewport, nửa trái trắng + nửa phải overlay (phải nằm ngoài .header vì backdrop-filter tạo containing block) */
.mobile-drawer {
  display: none;
}

.mobile-drawer__backdrop {
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(30, 30, 30, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50%;
  max-width: 420px;
  min-width: 260px;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

body.nav-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px 16px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.mobile-drawer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.mobile-drawer__brand .logo-text {
  font-size: 0.9rem;
  line-height: 1.3;
}

.mobile-drawer__brand .logo-img {
  width: 40px;
  height: 40px;
}

.mobile-drawer__close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6px -8px 0 0;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--gray-800);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-drawer__close:hover {
  background: var(--gray-100);
  color: #111;
}

.mobile-drawer__close:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav--desktop {
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav--mobile {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 24px;
}

.nav--mobile a {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1.0625rem;
  font-weight: 500;
}

.nav--mobile a::after {
  display: none;
}

.nav a {
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--green-600);
}

.nav a:hover::after {
  width: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-600);
}

.btn-outline:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
}

.btn-light {
  background: var(--white);
  color: var(--green-700);
}

.btn-light:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Hero (showcase — minimal + blob + carousel) ===== */
.hero--showcase {
  position: relative;
  min-height: auto;
  padding: 48px 0 64px;
  overflow: hidden;
}

.hero-carousel.hero--showcase {
  padding-bottom: 76px;
}

@media (min-width: 960px) {
  .hero--showcase {
    padding: 56px 0 80px;
    min-height: 560px;
  }

  .hero-carousel.hero--showcase {
    padding-bottom: 88px;
    min-height: 560px;
  }
}

.hero-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 11;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-carousel__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.hero-carousel__arrow:active {
  transform: translateY(-50%) scale(0.97);
}

.hero-carousel__arrow:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

.hero-carousel__arrow--prev {
  left: 8px;
}

.hero-carousel__arrow--next {
  right: 8px;
}

@media (min-width: 960px) {
  .hero-carousel__arrow {
    width: 48px;
    height: 48px;
  }

  .hero-carousel__arrow--prev {
    left: max(8px, calc(50% - 600px));
  }

  .hero-carousel__arrow--next {
    right: max(8px, calc(50% - 600px));
  }
}

@media (max-width: 480px) {
  .hero-carousel__arrow {
    width: 38px;
    height: 38px;
  }

  .hero-carousel__arrow--prev {
    left: 4px;
  }

  .hero-carousel__arrow--next {
    right: 4px;
  }

  .hero-carousel__arrow svg {
    width: 18px;
    height: 18px;
  }
}

.hero-carousel__track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-carousel.reduced-motion .hero-carousel__track {
  transition: none;
}

.hero-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.hero-carousel__nav {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c4c4c4;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-carousel__dot:hover {
  background: #888;
}

.hero-carousel__dot.is-active {
  background: #111;
  transform: scale(1.2);
}

.hero-carousel__dot:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 3px;
}

.hero-blob--adv {
  background: #dde8e3;
}

.hero-blob--xmax {
  background: #e2e0ea;
}

.hero-bg--minimal {
  position: absolute;
  inset: 0;
  background: #fafafa;
  z-index: 0;
}

.hero-bg--minimal::after {
  display: none;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-showcase-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.05fr);
    gap: 32px 24px;
    align-items: center;
  }
}

.hero-showcase-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

@media (min-width: 960px) {
  .hero-showcase-left {
    text-align: left;
    justify-content: space-between;
    min-height: min(520px, 70vh);
    padding: 12px 0 8px;
    gap: 0;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.hero-eyebrow--dark {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.hero-showcase-title {
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-title-line2 {
  display: block;
  margin-top: 0.12em;
  color: #9afc69;
}

.hero-title-deco {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.hero-deco-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.95rem;
  background: #111;
  color: #fff;
  line-height: 1;
}

.hero-deco-icon--ring {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  font-size: 1rem;
}

.hero-spec-block {
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hero-spec-block {
    margin: 0;
  }
}

.hero-spec-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-spec-code {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-spec-tag {
  font-size: 0.9375rem;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-spec-desc {
  margin: 0 0 20px;
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.hero-spec-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  justify-content: center;
}

@media (min-width: 960px) {
  .hero-spec-actions {
    justify-content: flex-start;
  }
}

.hero-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hero-accent);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}

.hero-cta-arrow:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.45);
}

.hero-spec-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-spec-link:hover {
  color: var(--hero-accent);
}

/* Visual column + blob + bike */
.hero-showcase-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 0 8px;
}

@media (min-width: 960px) {
  .hero-showcase-visual {
    min-height: 480px;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }
}

.hero-blob {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(92%, 480px);
  aspect-ratio: 1.08;
  background: var(--hero-surface);
  border-radius: 56px;
  z-index: 0;
}

@media (min-width: 960px) {
  .hero-blob {
    right: -5%;
    width: min(95%, 520px);
    border-radius: 64px;
  }
}

.hero-bike-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 520px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hero-bike-img {
    max-width: 560px;
    max-height: none;
    margin-right: -4%;
  }
}

.hero-floating {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.hero-floating--social {
  top: 4%;
  right: 0;
  left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  max-width: calc(100% - 16px);
}

@media (min-width: 960px) {
  .hero-floating--social {
    top: 10%;
    right: -4%;
    max-width: 280px;
  }
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 2px solid #fff;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-social-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-social-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #111;
  line-height: 1.25;
}

.hero-stars {
  font-size: 0.75rem;
  color: #d4a012;
  letter-spacing: 1px;
}

.hero-floating--card {
  bottom: 4%;
  right: 4%;
  left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: calc(100% - 24px);
}

.hero-floating--card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

@media (min-width: 960px) {
  .hero-floating--card {
    bottom: 14%;
    right: -2%;
    max-width: 240px;
  }
}

.hero-mini-thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.hero-mini-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  color: var(--gray-600);
  text-align: left;
}

.hero-mini-text strong {
  font-size: 0.92rem;
  color: #111;
}

/* Trust strip */
.trust-strip {
  background: var(--gray-900);
  color: var(--gray-100);
  padding: 20px 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.trust-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head--tight {
  margin-bottom: 32px;
}

.section-kicker {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-600);
  margin-bottom: 10px;
}

.section-head .section-title {
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  text-align: center;
}

.service-content .section-head .section-title {
  text-align: center;
}

.section-head .section-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.65;
  text-align: center;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--green-200);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--gray-900);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 24px 24px 24px 24px;
  padding-top: 52px;
  box-shadow: var(--shadow);
}

.step-num {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-600);
  color: var(--white);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 10px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gray-900);
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.65;
  font-style: normal;
}

.testimonial-card figcaption {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.testimonial-card strong {
  color: var(--gray-900);
}

/* Content split */
.content-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .content-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

.content-split .intro-block {
  max-width: none;
  margin: 0;
}

.destination-list {
  margin: 0 0 12px;
  padding-left: 1.2rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.destination-list li {
  margin-bottom: 6px;
}

.muted {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0;
}

/* FAQ accordion */
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.faq .faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  padding: 0;
  border-left: none;
}

.faq .faq-item:hover {
  margin-left: 0;
  padding-left: 0;
  background: var(--white);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-trigger:hover {
  background: var(--green-50);
}

.faq-trigger[aria-expanded='true'] {
  background: var(--green-50);
}

.faq-trigger[aria-expanded='true'] .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green-600);
  border-bottom: 2px solid var(--green-600);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}

.faq-panel {
  padding: 0 20px 18px;
  border-top: 1px solid var(--green-100);
}

.faq-panel p {
  margin: 16px 0 0;
  font-size: 0.975rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.faq-panel[hidden] {
  display: none;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Contact layout */
.contact-layout {
  max-width: 720px;
  margin: 0 auto;
}

.contact-lead {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin: 0 0 28px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  justify-content: stretch;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--green-100);
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a.contact-item span strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-700);
  margin-bottom: 4px;
}

.contact-address {
  margin: 28px 0 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  text-align: center;
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
  }
}

.footer-brand p {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.55;
  max-width: 320px;
}

.footer-heading {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--gray-300);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 4px 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== Intro / SEO block ===== */
.section.intro-content {
  background: var(--white);
}

.intro-block {
  max-width: 800px;
  margin: 0 auto 48px;
}

.intro-block:last-child {
  margin-bottom: 0;
}

.intro-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0 0 20px;
  line-height: 1.3;
}

.intro-block p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0 0 16px;
}

.intro-block p:last-child {
  margin-bottom: 0;
}

.why-rent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.why-rent-item {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-rent-item:hover {
  transform: translateY(-4px);
  border-color: var(--green-300);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.15);
}

.why-rent-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0 0 12px;
}

.why-rent-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* ===== Service Content - Price List (T-MOTOR style) ===== */
.service-content {
  padding: 72px 0 0;
  background: var(--white);
}

/* Header Price List - nền xanh nhạt cong */
.price-list-header {
  background: linear-gradient(180deg, var(--green-100) 0%, var(--green-50) 100%);
  border-radius: 0 0 60px 60px;
  padding: 48px 32px 56px;
  margin: 0 -24px 40px;
  text-align: center;
}

.price-list-brand {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.price-list-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0 0 16px;
}

.price-list-tagline {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tiện ích kèm thuê — thẻ icon + mô tả ngắn */
.service-perks {
  margin-bottom: 32px;
}

.service-perks__kicker {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  text-align: center;
}

@media (min-width: 768px) {
  .service-perks__kicker {
    text-align: left;
  }
}

.service-perks__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

@media (min-width: 1100px) {
  .service-perks__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.service-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-perk:hover {
  background: #fff;
  border-color: #d0d0d0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.service-perk:focus-within {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--green-600);
}

.service-perk__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--green-700);
  border: 1px solid #e5e5e5;
}

.service-perk__icon svg {
  display: block;
}

.service-perk__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-perk__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  letter-spacing: -0.01em;
}

.service-perk__desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--gray-600);
}

/* Bảng giá — tabs + thẻ (kiểu catalog minimalist) */
.fleet-catalog {
  margin-bottom: 32px;
}

.fleet-catalog__hint {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 768px) {
  .fleet-catalog__hint {
    text-align: left;
  }
}

.fleet-grid-wrap {
  padding-top: 28px;
}

.fleet-card.fleet-card--hidden {
  display: none !important;
}

.fleet-tabs {
  display: flex;
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-tab {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 14px 10px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  background: #fff;
  border: none;
  border-right: 1px solid #ddd;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.fleet-tab:hover:not(.is-active) {
  background: #f6f6f6;
}

.fleet-tab.is-active {
  background: #1a1a1a;
  color: #fff;
}

.fleet-tab:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: -2px;
  z-index: 1;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}

.fleet-card {
  border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.fleet-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
}

.fleet-card__media {
  position: relative;
  min-height: 200px;
  padding: 28px 20px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card__media img {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-card__media img {
  transform: scale(1.04);
}

.fleet-card__body {
  padding: 16px 18px 20px;
}

.fleet-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.fleet-card__name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
}

.fleet-card__meta {
  font-size: 0.8125rem;
  color: #888;
  white-space: nowrap;
  font-weight: 500;
}

.fleet-card__price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 4px;
}

.fleet-card__price-line .fleet-card__price {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333;
}

.fleet-card__price-line .fleet-card__price--month {
  font-weight: 500;
  color: #5a5a5a;
}

.fleet-card__price {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #444;
}

/* Placeholder khi ảnh lỗi */
.motor-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--green-600);
  font-size: 2rem;
  font-weight: 600;
  gap: 8px;
}

.motor-placeholder span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.motor-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.motor-note code {
  background: var(--green-100);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

/* Footer bar dịch vụ - nền xanh lá */
.service-footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--green-600);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.service-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.service-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.service-contact a,
.service-contact span {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-contact a:hover {
  opacity: 0.9;
}

.footer-icon {
  font-size: 1rem;
}

/* ===== Promo ===== */
.promo {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-700) 50%, var(--green-800) 100%);
  background-size: 200% 200%;
  animation: promoGradient 6s ease infinite;
}

@keyframes promoGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.promo-inner {
  text-align: center;
}

.promo-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0 0 24px;
}

/* ===== FAQ section shell ===== */
.faq.section-alt {
  padding: 72px 0;
}

/* ===== Contact ===== */
.contact {
  padding: 72px 0;
  background: var(--green-50);
}

.contact-info {
  text-align: center;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

a.contact-item:hover {
  border-color: var(--green-400);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.2);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0 28px;
  background: var(--gray-900);
  color: var(--gray-200);
}

/* ===== Floating popup buttons ===== */
.float-buttons {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: float-wiggle 2.1s ease-in-out infinite;
}

.float-buttons .float-btn:nth-child(1) {
  animation-delay: 0s;
}

.float-buttons .float-btn:nth-child(2) {
  animation-delay: 0.25s;
}

.float-buttons .float-btn:nth-child(3) {
  animation-delay: 0.5s;
}

.float-btn:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-btn:active {
  animation: none;
  transform: scale(0.95);
}

@keyframes float-wiggle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(-5px) rotate(-4deg);
  }
  30% {
    transform: translateY(-2px) rotate(4deg);
  }
  45% {
    transform: translateY(-6px) rotate(-3deg);
  }
  60% {
    transform: translateY(-3px) rotate(3deg);
  }
  75% {
    transform: translateY(-5px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-btn {
    animation: none;
  }
}

/* Wave rung động - hiệu ứng sóng */
.float-btn-wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: float-wave 2s ease-out infinite;
  pointer-events: none;
}

.float-btn-wave-2 {
  animation-delay: 1s;
}

@keyframes float-wave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.float-btn-icon {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.float-btn-fb {
  background: #1877f2;
}

.float-btn-fb .float-btn-wave {
  border: 2px solid #1877f2;
}

.float-btn-hotline {
  background: var(--green-600);
}

.float-btn-hotline .float-btn-wave {
  border: 2px solid var(--green-600);
}

.float-btn-hotline .float-btn-icon {
  font-size: 1.25rem;
  color: #fff;
}

.float-btn-icon--phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-btn-icon--phone svg {
  display: block;
  width: 22px;
  height: 22px;
  color: #fff;
}

.float-btn-zalo {
  background: #004fc9;
}

.float-btn-zalo .float-btn-wave {
  border: 2px solid #004fc9;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo-text {
    font-size: clamp(0.78rem, 2.8vw, 0.95rem);
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .header-cta {
    display: none;
  }

  .nav--desktop {
    display: none !important;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
    isolation: isolate;
  }

  body.nav-open .float-buttons {
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .mobile-drawer {
    pointer-events: auto;
    visibility: visible;
  }

  body.nav-open .nav-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero--showcase {
    padding: 36px 0 48px;
  }

  /* Xe + blob giống desktop: blob xám bo góc căn giữa, xe to hơn và nằm giữa */
  .hero-showcase-visual {
    overflow: visible;
    min-height: 320px;
    padding: 28px 12px 20px;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-blob {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(94vw, 480px);
    max-width: 100%;
    aspect-ratio: 1.08;
    border-radius: 56px;
  }

  .hero-bike-img {
    width: 100%;
    max-width: min(100%, 560px);
    max-height: clamp(300px, 74vw, 368px);
    margin: 0 auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-floating {
    border-radius: 999px;
  }

  .hero-floating--social {
    top: 12px;
    right: 10px;
    left: auto;
    max-width: min(calc(100% - 54px), 230px);
    padding: 8px 12px;
    gap: 8px;
  }

  .hero-floating--card {
    bottom: 18px;
    right: 10px;
    left: auto;
    margin-top: 0;
    max-width: min(calc(100% - 20px), 228px);
    padding: 8px 12px;
  }

  .hero-social-text {
    font-size: 0.72rem;
  }

  .hero-stars {
    font-size: 0.68rem;
  }

  .hero-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
    margin-left: -8px;
  }

  .hero-mini-thumb {
    width: 40px;
    height: 40px;
    font-size: 1.12rem;
    border-radius: 12px;
  }

  .hero-mini-text {
    font-size: 0.72rem;
  }

  .hero-mini-text strong {
    font-size: 0.8rem;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fleet-card {
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow:
      0 14px 36px rgba(0,0,0,0.08),
      0 2px 8px rgba(0,0,0,0.04);
  }

  .fleet-card__media {
    min-height: clamp(232px, 58vw, 300px);
    padding: 12px 8px 8px;
    background:
      radial-gradient(ellipse 95% 80% at 50% 72%, rgba(255,255,255,0.55) 0%, transparent 55%),
      linear-gradient(165deg, #f6f7f9 0%, #eceef2 38%, #e0e4ea 100%);
  }

  .fleet-card__media img {
    max-height: min(260px, 64vw);
    max-width: 100%;
    width: auto;
  }

  .fleet-tab {
    padding: 12px 6px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .service-perks__grid {
    grid-template-columns: 1fr;
  }

  .price-list-header {
    margin: 0 -16px 40px;
    padding: 32px 20px 40px;
  }

  .price-list-brand {
    font-size: 2.25rem;
  }

  .service-footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .service-contact {
    justify-content: center;
  }

  .float-buttons {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn-icon {
    font-size: 1.25rem;
  }
}
