:root {
  --red: #ed1835;
  --red-deep: #b90d25;
  --ink: #142743;
  --ink-soft: #30445f;
  --muted: #6a7d96;
  --paper: #f6f8fc;
  --paper-strong: #ffffff;
  --line: rgba(27, 51, 89, 0.12);
  --line-strong: rgba(27, 51, 89, 0.18);
  --shadow-lg: 0 22px 60px rgba(24, 44, 78, 0.12);
  --shadow-md: 0 16px 34px rgba(24, 44, 78, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --scroll-progress: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -4%, rgba(237, 24, 53, 0.14), transparent 26%),
    radial-gradient(circle at 92% 6%, rgba(54, 100, 183, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f9fc, #eef2f8 45%, #f7f9fc);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.page-orb {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(4px);
  animation: drift 14s ease-in-out infinite;
}

.orb-a {
  left: -10rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(237, 24, 53, 0.18), rgba(237, 24, 53, 0) 70%);
}

.orb-b {
  right: -10rem;
  top: 16rem;
  background: radial-gradient(circle, rgba(66, 109, 181, 0.16), rgba(66, 109, 181, 0) 70%);
  animation-delay: -6s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.25rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(242, 246, 252, 0.72));
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #7385a0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 250, 253, 0.82);
  border-bottom: 1px solid rgba(22, 40, 70, 0.08);
  box-shadow: 0 12px 32px rgba(22, 40, 70, 0.06);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 252, 255, 0.95);
  border-bottom-color: rgba(22, 40, 70, 0.13);
  box-shadow: 0 16px 42px rgba(22, 40, 70, 0.09);
}

.header-shell {
  min-height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 8.6rem;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.16));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.15rem;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.header-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(237, 24, 53, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.header-phone,
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(22, 40, 70, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-soft);
}

.header-quote {
  padding: 0.72rem 1.28rem;
  color: white;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  box-shadow: 0 14px 28px rgba(237, 24, 53, 0.24);
}

.hero {
  padding-top: 4.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-lead {
  margin: 1.4rem 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.88rem 1.38rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.92),
    0 0 0 6px rgba(23, 49, 86, 0.14);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  box-shadow: 0 16px 30px rgba(237, 24, 53, 0.26);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(22, 40, 70, 0.14);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #0f8f5c, #23c16b);
  box-shadow: 0 14px 28px rgba(18, 165, 94, 0.22);
}

.whatsapp-icon {
  width: 1.02rem;
  height: 1.02rem;
  flex: 0 0 auto;
}

.hero-trustline {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-trustline span {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 40, 70, 0.1);
  color: #4c617d;
  font-size: 0.78rem;
}

.hero-panel {
  position: relative;
}

.hero-bike-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "stage"
    "chips";
  border-radius: var(--radius-xl);
  padding: 2rem;
  min-height: 31rem;
  gap: 1.2rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(237, 24, 53, 0.16), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(72, 112, 181, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 252, 0.92));
  border: 1px solid rgba(22, 40, 70, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-bike-copy {
  grid-area: copy;
  max-width: 26rem;
  position: relative;
  z-index: 1;
}

.mini-label {
  margin: 0;
  color: #6e84a2;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-bike-copy h2 {
  margin: 0.78rem 0 0;
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  line-height: 1.08;
  max-width: 13ch;
}

.hero-bike-copy p:last-child {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.68;
  max-width: 34ch;
}

.hero-bike-stage {
  grid-area: stage;
  position: relative;
  min-height: 16.5rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 25% 18%, rgba(237, 24, 53, 0.12), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(61, 104, 176, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 253, 0.92));
  border: 1px solid rgba(22, 40, 70, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(22, 40, 70, 0.08);
  pointer-events: none;
}

.hero-stage-ring.ring-a {
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
}

.hero-stage-ring.ring-b {
  width: 11rem;
  height: 11rem;
  border-style: dashed;
  opacity: 0.55;
}

.hero-bike {
  position: relative;
  width: min(26rem, 90%);
  max-height: 14rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(17, 34, 60, 0.18));
  animation: bikeFloat 7s ease-in-out infinite;
  z-index: 1;
}

.hero-stage-tag {
  position: absolute;
  z-index: 2;
  max-width: 11.5rem;
  border-radius: 1rem;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 40, 70, 0.1);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-stage-tag p {
  margin: 0;
  font-size: 0.68rem;
  color: #7385a0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-stage-tag strong {
  display: block;
  margin-top: 0.36rem;
  font-size: 0.8rem;
  line-height: 1.34;
}

.hero-stage-tag-top {
  top: 1rem;
  right: 1rem;
}

.hero-stage-tag-bottom {
  left: 1rem;
  bottom: 1rem;
}

.hero-chip-group {
  grid-area: chips;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-self: start;
}

.hero-chip {
  border-radius: 1.2rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(22, 40, 70, 0.1);
  box-shadow: var(--shadow-md);
}

.hero-chip p {
  margin: 0;
  font-size: 0.7rem;
  color: #7385a0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-chip strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

@keyframes bikeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-intro {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.76;
}

.promise-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(237, 24, 53, 0.1), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(61, 104, 176, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(242, 246, 252, 0.88));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.about-summary,
.timeline-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.about-summary {
  padding: 1.6rem;
  position: sticky;
  top: 7rem;
}

.about-milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.about-milestones span {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 40, 70, 0.1);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.about-summary h3 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

.about-summary p:not(.mini-label) {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.4rem;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(237, 24, 53, 0.44), rgba(61, 104, 176, 0.24));
}

.timeline-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 1.45rem;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 1.5rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(237, 24, 53, 0.08);
  color: var(--red-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 0.9rem 0 0;
  font-size: 1.2rem;
}

.timeline-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.promise-card,
.support-card,
.visit-card,
.models-note,
.doc-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.promise-card,
.support-card {
  padding: 1.5rem;
}

.promise-card span {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(237, 24, 53, 0.12);
  color: var(--red-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.promise-card h3,
.support-card h3,
.visit-card h3,
.doc-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.18rem;
}

.promise-card p,
.support-card p,
.visit-card p,
.doc-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.models-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(237, 24, 53, 0.1), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(57, 99, 172, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(244, 248, 253, 0.82));
}

.models-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.35rem;
}

.models-note span {
  color: var(--ink-soft);
}

.models-note a {
  color: var(--red-deep);
  font-weight: 700;
  text-decoration: none;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.model-card {
  appearance: none;
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(237, 24, 53, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 252, 0.95));
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 24, 53, 0.24);
  box-shadow: 0 24px 38px rgba(24, 44, 78, 0.14);
}

.model-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -30%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.model-card:hover::after {
  opacity: 1;
}

.model-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.model-accent,
.model-official {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.model-accent {
  color: var(--red-deep);
  background: rgba(237, 24, 53, 0.1);
}

.model-official {
  color: #667c98;
  background: rgba(22, 40, 70, 0.06);
}

.model-image-wrap {
  min-height: 15rem;
  display: grid;
  place-items: center;
  margin: 1rem 0 0.3rem;
}

.model-image-wrap img {
  width: 100%;
  max-width: 20rem;
  height: 14rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(20, 32, 56, 0.16));
  transition: transform 260ms ease;
}

.model-card:hover .model-image-wrap img {
  transform: translateY(-4px) scale(1.02);
}

.model-card h3 {
  margin: 0.3rem 0 0;
  font-size: 1.4rem;
}

.model-card p {
  margin: 0.55rem 0 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.model-content span {
  display: inline-flex;
  align-items: center;
  color: var(--red-deep);
  font-weight: 700;
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: center;
}

.care-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.care-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.care-points {
  margin: 1.2rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.care-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.care-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(22, 40, 70, 0.08);
}

.care-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-wide {
  aspect-ratio: 16 / 9;
}

.care-gallery-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
}

.photo-support {
  aspect-ratio: 5 / 4;
}

.care-highlight {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 20%, rgba(237, 24, 53, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 246, 252, 0.92));
  border: 1px solid rgba(22, 40, 70, 0.08);
  box-shadow: var(--shadow-md);
}

.care-highlight h3 {
  margin: 0.7rem 0 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.care-highlight p:last-child {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.visit-section {
  padding-bottom: 6.5rem;
}

.visit-shell {
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at 12% 14%, rgba(237, 24, 53, 0.11), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(63, 103, 173, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 251, 0.92));
  border: 1px solid rgba(22, 40, 70, 0.08);
  box-shadow: var(--shadow-lg);
}

.visit-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.visit-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
  line-height: 1.78;
}

.visit-cards {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.visit-card {
  padding: 1.3rem;
}

.visit-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer {
  padding: 0 0 5.5rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #647994;
  font-size: 0.88rem;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  transform: translate(-50%, 18px);
  z-index: 25;
  display: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr) minmax(0, 0.92fr);
  align-items: center;
  width: min(24rem, calc(100% - 1rem));
  gap: 0.48rem;
  padding: 0.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(22, 40, 70, 0.1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobile-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  width: 100%;
  min-width: 0;
  min-height: 2.9rem;
  padding: 0.72rem 0.68rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none !important;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.mobile-dock a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.mobile-dock a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.mobile-dock a:active {
  transform: scale(0.985);
  outline: none !important;
  box-shadow: none !important;
}

.mobile-dock a.is-call {
  color: #fff;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  box-shadow: 0 10px 18px rgba(237, 24, 53, 0.18) !important;
}

.mobile-dock a.is-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #0f8f5c, #23c16b);
  box-shadow: 0 10px 18px rgba(18, 165, 94, 0.18) !important;
}

.mobile-dock a.is-inquiry {
  color: var(--ink);
  background: rgba(242, 246, 252, 0.95);
  border: 1px solid rgba(22, 40, 70, 0.08);
}

.mobile-dock .whatsapp-icon {
  width: 0.96rem;
  height: 0.96rem;
  flex: 0 0 auto;
}

body.modal-open .mobile-dock {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
}

.model-modal {
  width: min(1100px, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 1.8rem;
  background: transparent;
}

.model-modal::backdrop {
  background: rgba(13, 22, 39, 0.56);
  backdrop-filter: blur(12px);
}

.modal-shell {
  overflow: auto;
  max-height: calc(100dvh - 2rem);
  border-radius: 1.8rem;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(237, 24, 53, 0.08), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(54, 100, 183, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 253, 0.96));
  box-shadow: 0 28px 70px rgba(17, 30, 54, 0.22);
}

.modal-close {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 40, 70, 0.12);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-weight: 700;
}

.modal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 0.8rem;
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.modal-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.modal-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-figure {
  margin: 0;
  min-height: 24rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 14%, rgba(237, 24, 53, 0.14), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(65, 108, 179, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 252, 0.94));
  border: 1px solid rgba(22, 40, 70, 0.08);
}

.modal-figure img {
  width: min(26rem, 100%);
  height: 22rem;
  object-fit: contain;
}

.modal-tabs {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tab-button {
  appearance: none;
  border: 1px solid rgba(22, 40, 70, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  padding: 0.72rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.tab-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  border-color: transparent;
}

.tab-panel {
  display: none;
  margin-top: 1rem;
}

.tab-panel.is-active {
  display: block;
}

.spec-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.spec-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.spec-card h3 {
  margin: 0;
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.spec-list {
  padding: 0.15rem 1rem 1rem;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(22, 40, 70, 0.07);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.spec-row span {
  color: var(--ink-soft);
  text-align: right;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.doc-card {
  padding: 1.3rem;
}

.doc-points {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.doc-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  border: 1px solid rgba(22, 40, 70, 0.12);
  background: rgba(245, 248, 252, 0.92);
}

.doc-link.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.delivery-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 1rem;
  align-items: center;
}

.delivery-copy {
  padding: 1rem 0;
}

.delivery-copy h3 {
  margin: 0;
  font-size: 1.4rem;
}

.delivery-copy p {
  margin: 0.9rem 0 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

#delivery-image {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 40, 70, 0.1);
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1120px) {
  .header-nav {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .care-grid,
  .modal-hero,
  .delivery-shell {
    grid-template-columns: 1fr;
  }

  .hero-bike-card {
    min-height: 30rem;
  }

  .hero-bike-stage {
    min-height: 18rem;
  }

  .hero-bike {
    width: min(22rem, 88%);
    max-height: 13rem;
  }

  .care-gallery {
    grid-template-columns: 1fr;
  }

  .care-gallery-row {
    grid-template-columns: 1fr;
  }

  .about-summary {
    position: static;
  }

}

@media (max-width: 900px) {
  .models-grid,
  .promise-grid,
  .support-grid,
  .spec-groups,
  .doc-grid,
  .visit-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .footer-shell {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header {
    background: rgba(248, 250, 253, calc(0.76 + (var(--scroll-progress) * 0.18)));
  }

  .section {
    padding: 4.2rem 0;
  }

  .header-shell {
    min-height: 5.2rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-logo {
    width: 5.4rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 11rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-copy h1 {
    max-width: 9.8ch;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .btn,
  .header-phone,
  .header-quote {
    width: 100%;
  }

  .hero-actions,
  .visit-actions,
  .modal-actions {
    flex-direction: column;
  }

  .models-grid,
  .promise-grid,
  .support-grid,
  .spec-groups,
  .doc-grid,
  .visit-cards,
  .care-gallery {
    grid-template-columns: 1fr;
  }

  .models-note {
    flex-direction: column;
  }

  .about-timeline {
    padding-left: 1.1rem;
  }

  .timeline-card::before {
    left: -1.05rem;
  }

  .hero-chip-group {
    grid-template-columns: 1fr;
  }

  .hero-stage-tag {
    position: static;
    max-width: none;
    margin-top: 0.7rem;
  }

  .hero-bike-stage {
    display: block;
    padding: 1rem;
  }

  .hero-bike {
    display: block;
    margin: 2rem auto 0;
  }

  .model-image-wrap {
    min-height: 12rem;
  }

  .model-image-wrap img {
    height: 12rem;
  }

  .visit-shell {
    padding: 1.35rem;
  }

  .visit-copy h2 {
    max-width: 10ch;
  }

  .site-footer {
    padding-bottom: 7rem;
  }

  .mobile-dock {
    display: grid;
  }

  .model-modal {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
  }

  .modal-shell {
    padding: 0.9rem;
    max-height: calc(100dvh - 1rem);
  }

  .modal-copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .modal-figure {
    min-height: 17rem;
  }

  .modal-figure img {
    height: 16rem;
  }

  .tab-button {
    flex: 1 1 calc(50% - 0.4rem);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .brand-logo {
    width: 4.7rem;
  }

  .brand-copy strong {
    max-width: 9rem;
    font-size: 0.88rem;
  }

  .hero-trustline {
    gap: 0.55rem;
  }

  .hero-trustline span {
    width: 100%;
    justify-content: center;
  }

  .model-card,
  .promise-card,
  .support-card {
    padding: 1rem;
  }

  .mobile-dock {
    width: calc(100% - 0.8rem);
    gap: 0.4rem;
    padding: 0.42rem;
  }

  .mobile-dock a {
    padding-inline: 0.5rem;
    font-size: 0.8rem;
  }

  .mobile-dock .whatsapp-icon {
    width: 0.9rem;
    height: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
