  :root {
    --red: #B81C22;
    --red-deep: #8B0F14;
    --red-dark: #5A0A0D;
    --red-light: #E8323A;
    --cream: #FAF6EE;
    --paper: #FFFFFF;
    --ink: #1A1A1A;
    --gray-50: #F7F5F1;
    --gray-100: #EDE9E1;
    --gray-300: #C7BFB3;
    --gray-500: #8A8378;
    --gray-700: #4A453E;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.75;
    font-weight: 400;
    overflow-x: hidden;
    letter-spacing: 0.02em;
  }
 
  img { max-width: 100%; display: block; }
 
  /* ===== NAVIGATION ===== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    transition: all 0.4s ease;
  }
 
  nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 3rem;
    border-bottom: 1px solid rgba(184, 28, 34, 0.08);
  }
 
  nav .nav-logo {
    height: 36px;
    transition: all 0.3s;
  }
 
  nav .nav-logo.dark { display: none; }
  nav.scrolled .nav-logo.light { display: none; }
  nav.scrolled .nav-logo.dark { display: block; }
 
  nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--cream);
    transition: color 0.4s;
  }
 
  nav.scrolled ul { color: var(--ink); }
 
  nav a {
    color: inherit;
    text-decoration: none;
    padding: 0.3rem 0;
    position: relative;
    transition: opacity 0.3s;
  }
 
  nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }
 
  nav a:hover::after { width: 100%; }
 
  nav .nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--red);
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
  }
 
  nav .nav-cta:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
  }
 
  nav .nav-cta::after { display: none; }
 
  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--red-dark);
    color: var(--cream);
    overflow: hidden;
    display: flex;
    align-items: center;
  }
 
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
 
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    mix-blend-mode: screen;
    filter: contrast(1.1) brightness(1.6);
  }
 
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(90, 10, 13, 0.4) 0%, rgba(90, 10, 13, 0.85) 100%),
      radial-gradient(ellipse at 70% 30%, rgba(232, 50, 58, 0.25), transparent 60%);
  }
 
  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 8rem 5vw 4rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
 
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(250, 246, 238, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    margin-bottom: 2rem;
    color: rgba(250, 246, 238, 0.85);
  }
 
  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
 
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
 
  .hero-logo-img {
    width: 100%;
    max-width: 560px;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.4));
  }
 
  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }
 
  .hero h1 .accent {
    display: inline-block;
    position: relative;
    color: #fff;
  }
 
  .hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--red-light);
    z-index: -1;
    opacity: 0.7;
  }
 
  .hero-sub {
    font-size: 1rem;
    line-height: 2;
    color: rgba(250, 246, 238, 0.85);
    max-width: 28rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
  }
 
  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
 
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.3rem;
    background: var(--red-light);
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--red-light);
  }
 
  .btn-primary:hover {
    background: white;
    color: var(--red-deep);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
 
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.4);
  }
 
  .btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
  }
 
  .hero-bike {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  .hero-bike::before {
    content: '';
    position: absolute;
    width: 110%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(232, 50, 58, 0.3) 0%, transparent 60%);
    z-index: 0;
  }
 
  .hero-bike img {
    width: 100%;
    max-width: 580px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
  }
 
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
 
  .hero-stats {
    position: absolute;
    bottom: 3rem;
    left: 5vw;
    right: 5vw;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(250, 246, 238, 0.15);
    font-size: 0.8rem;
    color: rgba(250, 246, 238, 0.6);
    letter-spacing: 0.15em;
  }
 
  .hero-stats .stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }
 
  .hero-stats .stat-num {
    color: var(--red-light);
    font-size: 1.4rem;
    font-weight: 700;
  }
 
  /* ===== SECTION COMMON ===== */
  section {
    padding: 7rem 5vw;
    max-width: 1400px;
    margin: 0 auto;
  }
 
  .full-width {
    max-width: 100%;
    padding: 7rem 5vw;
  }
 
  .full-width-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
 
  .section-head {
    margin-bottom: 4rem;
  }
 
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--red);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
 
  .section-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--red);
  }
 
  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: 0.01em;
  }
 
  .section-title .red { color: var(--red); }
 
  .section-desc {
    margin-top: 1.2rem;
    font-size: 1rem;
    color: var(--gray-700);
    max-width: 40rem;
    line-height: 2;
  }
 
  /* ===== ABOUT ===== */
  .about {
    background: var(--paper);
    position: relative;
  }
 
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
  }
 
  .about-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--gray-50);
    overflow: hidden;
  }
 
  .about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.05);
  }
 
  .about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(184, 28, 34, 0.15) 100%);
  }
 
  .about-visual .badge-float {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--red);
    color: white;
    padding: 1.5rem 2rem;
    max-width: 280px;
  }
 
  .about-visual .badge-float .big {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
 
  .about-visual .badge-float .small {
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.1em;
  }
 
  .about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--ink);
  }
 
  .about-text h2 .red { color: var(--red); }
 
  .about-text p {
    font-size: 1rem;
    line-height: 2.1;
    color: var(--gray-700);
    margin-bottom: 1.2rem;
  }
 
  /* ===== WHO ===== */
  .who {
    background: var(--gray-50);
  }
 
  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
 
  .who-card {
    background: var(--paper);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--gray-100);
    overflow: hidden;
  }
 
  .who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--red);
    transition: width 0.4s ease;
  }
 
  .who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(184, 28, 34, 0.1);
    border-color: transparent;
  }
 
  .who-card:hover::before { width: 100%; }
 
  .who-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 1.5rem;
  }
 
  .who-icon {
    width: 64px;
    height: 64px;
    background: rgba(184, 28, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
  }
 
  .who-card:hover .who-icon {
    background: var(--red);
  }
 
  .who-icon svg {
    width: 30px;
    height: 30px;
    color: var(--red);
    transition: color 0.3s;
  }
 
  .who-card:hover .who-icon svg {
    color: white;
  }
 
  .who-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ink);
    letter-spacing: 0.02em;
  }
 
  .who-card p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--gray-700);
  }
 
  /* ===== FLEET ===== */
  .fleet {
    background: var(--paper);
  }
 
  .fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
  }
 
  .fleet-card {
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
  }
 
  .fleet-card:hover {
    transform: translateY(-6px);
  }
 
  .fleet-card-img {
    position: relative;
    aspect-ratio: 16/11;
    background:
      linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .fleet-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(184,28,34,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184,28,34,0.07) 1px, transparent 1px);
    background-size: 30px 30px;
  }
 
  .fleet-card-img img {
    width: 85%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    transition: transform 0.5s ease;
  }
 
  .fleet-card:hover .fleet-card-img img {
    transform: scale(1.05);
  }
 
  .fleet-badge-stock {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--red);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 2;
  }
 
  .fleet-badge-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: rgba(250, 246, 238, 0.5);
    z-index: 2;
  }
 
  .fleet-card-body {
    padding: 2.5rem;
  }
 
  .fleet-card-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
    color: var(--cream);
  }
 
  .fleet-card-spec {
    font-size: 0.85rem;
    color: var(--red-light);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
 
  .fleet-card-desc {
    font-size: 0.92rem;
    line-height: 1.9;
    color: rgba(250, 246, 238, 0.75);
    margin-bottom: 1.8rem;
    min-height: 3.6em;
  }
 
  .fleet-price-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 246, 238, 0.1);
  }
 
  .fleet-price-block .price-cell .label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(250, 246, 238, 0.5);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }
 
  .fleet-price-block .price-cell .value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cream);
  }
 
  .fleet-price-block .price-cell .value .yen {
    font-size: 1rem;
    color: var(--red-light);
    margin-right: 0.2rem;
  }
 
  /* ===== STEPS ===== */
  .steps {
    background: var(--gray-50);
  }
 
  .steps-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
  }
 
  .steps-timeline::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--red) 0 8px, transparent 8px 14px);
    opacity: 0.25;
  }
 
  .step-item {
    text-align: center;
    position: relative;
  }
 
  .step-circle {
    width: 5rem;
    height: 5rem;
    background: var(--paper);
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s;
  }
 
  .step-item:hover .step-circle {
    background: var(--red);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(184, 28, 34, 0.3);
  }
 
  .step-circle svg {
    width: 28px;
    height: 28px;
    color: var(--red);
    transition: color 0.4s;
  }
 
  .step-item:hover .step-circle svg {
    color: white;
  }
 
  .step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 2rem;
    height: 2rem;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
  }
 
  .step-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
  }
 
  .step-note {
    font-size: 0.8rem;
    color: var(--gray-500);
  }
 
  /* ===== PRICING ===== */
  .pricing {
    background: var(--paper);
  }
 
  .pricing-table {
    margin-top: 3rem;
    border: 1px solid var(--gray-100);
    overflow: hidden;
  }
 
  .pricing-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--red-dark);
    color: var(--cream);
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
  }
 
  .pricing-header > div:nth-child(2),
  .pricing-header > div:nth-child(3) { text-align: center; }
 
  .pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 1.8rem 2.5rem;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.3s;
  }
 
  .pricing-row:last-child { border-bottom: none; }
  .pricing-row:hover { background: var(--gray-50); }
 
  .pricing-name {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
 
  .pricing-name-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 8px;
  }
 
  .pricing-name-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
 
  .pricing-name-text .name-main {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--ink);
  }
 
  .pricing-name-text .name-sub {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 0.2rem;
  }
 
  .price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    text-align: center;
  }
 
  .price-value .yen {
    font-size: 0.9rem;
    color: var(--red);
    margin-right: 0.15rem;
  }
 
  .option-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
 
  .option-card {
    padding: 1.8rem 2rem;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
  }
 
  .option-card:hover {
    border-color: var(--red);
    background: var(--paper);
  }
 
  .option-icon {
    width: 56px;
    height: 56px;
    background: rgba(184, 28, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .option-icon svg {
    width: 28px;
    height: 28px;
    color: var(--red);
  }
 
  .option-card .option-info { flex: 1; }
 
  .option-card .option-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
  }
 
  .option-card .option-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
  }
 
  .option-card .option-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
  }
 
  .option-card .option-price.free {
    color: var(--red);
    font-size: 1.2rem;
  }
 
  /* ===== INFO ===== */
  .info {
    background: var(--gray-50);
  }
 
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
 
  .info-card {
    background: var(--paper);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
  }
 
  .info-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  }
 
  .info-card-icon {
    width: 48px;
    height: 48px;
    color: var(--red);
    margin-bottom: 1.5rem;
  }
 
  .info-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--red);
    margin-bottom: 0.8rem;
  }
 
  .info-card-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
 
  .info-card-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
  }
 
  /* ===== CTA ===== */
  .cta-section {
    background: var(--red-dark);
    color: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 9rem 5vw;
  }
 
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(232, 50, 58, 0.25), transparent 50%),
      radial-gradient(circle at 80% 30%, rgba(232, 50, 58, 0.18), transparent 50%);
  }
 
  .cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(250, 246, 238, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(250, 246, 238, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
 
  .cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
 
  .cta-inner .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--red-light);
    margin-bottom: 2rem;
  }
 
  .cta-inner .eyebrow::before,
  .cta-inner .eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--red-light);
  }
 
  .cta-inner h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }
 
  .cta-inner h2 em {
    font-style: normal;
    color: var(--red-light);
  }
 
  .cta-inner p {
    font-size: 1.05rem;
    color: rgba(250, 246, 238, 0.75);
    margin-bottom: 3rem;
    line-height: 2;
  }
 
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
 
  /* ===== FAQ ===== */
  .faq {
    background: var(--paper);
  }
 
  .faq-list {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
 
  .faq-item {
    border-bottom: 1px solid var(--gray-100);
  }
 
  .faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    padding: 1.8rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.3s;
  }
 
  .faq-question:hover { color: var(--red); }
 
  .faq-q-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--red);
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
  }
 
  .faq-q-text { flex: 1; }
 
  .faq-toggle {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
  }
 
  .faq-toggle::before,
  .faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--red);
    transition: transform 0.3s;
  }
 
  .faq-toggle::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
  }
 
  .faq-toggle::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
  }
 
  .faq-item.open .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
  }
 
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
 
  .faq-answer-inner {
    padding: 0 0 1.8rem 3.5rem;
    color: var(--gray-700);
    line-height: 2;
    font-size: 0.95rem;
  }
 
  .faq-item.open .faq-answer {
    max-height: 400px;
  }
 
  /* ===== FOOTER ===== */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 5rem 5vw 2rem;
  }
 
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
 
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 246, 238, 0.1);
  }
 
  .footer-brand-logo {
    height: 50px;
    margin-bottom: 1.2rem;
  }
 
  .footer-tagline {
    font-size: 0.9rem;
    color: rgba(250, 246, 238, 0.6);
    line-height: 1.9;
    max-width: 22rem;
  }
 
  .footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--red-light);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
  }
 
  .footer-col p, .footer-col a {
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(250, 246, 238, 0.7);
    display: block;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 0.3rem;
  }
 
  .footer-col a:hover { color: var(--red-light); }
 
  .footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(250, 246, 238, 0.4);
  }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    nav ul { display: none; }
    nav .nav-logo { height: 28px; }
 
    .hero-inner {
      grid-template-columns: 1fr;
      padding: 6rem 1.5rem 3rem;
      gap: 2rem;
    }
    .hero-bike { order: -1; }
    .hero-bike img { max-width: 400px; }
    .hero-stats { display: none; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas a { justify-content: center; }
 
    section, .full-width { padding: 4rem 1.5rem; }
 
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { aspect-ratio: 3/2; max-height: 400px; }
 
    .who-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: 1fr; gap: 2rem; }
 
    .steps-timeline { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
    .steps-timeline::before { display: none; }
 
    .pricing-header { display: none; }
    .pricing-row {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 1.5rem;
      text-align: center;
    }
    .pricing-name { flex-direction: column; text-align: center; gap: 0.8rem; }
    .price-value { display: flex; justify-content: space-between; align-items: center; font-size: 1.3rem; }
    .price-value::before {
      content: attr(data-label);
      font-size: 0.75rem;
      color: var(--gray-500);
      font-weight: 500;
    }
 
    .option-section { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
 
    .cta-section { padding: 5rem 1.5rem; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons a { justify-content: center; }
 
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  }
 
  @media (max-width: 500px) {
    .footer-top { grid-template-columns: 1fr; }
  }
 
  /* ===== ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
 
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
