@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #07090d;
  --bg-2: #0b0f16;
  --panel: #11151d;
  --panel-2: #141923;
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a7b0be;
  --red: #e0141f;
  --red-2: #ff2a36;
  --green: #7ad489;
  --container: 1280px;
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Saira Condensed", Arial, sans-serif;
  background: linear-gradient(180deg, #06080c 0%, #0a0d13 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.svg-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 800;
  transition: 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn .svg-icon {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(180deg, #ff232f 0%, #db101c 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(224, 20, 31, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ff2b37 0%, #e11420 100%);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050607;
  display: grid;
  place-items: center;
  animation: preloaderHide 0.65s ease forwards;
  animation-delay: 1.6s;
}

.preloader-inner {
  text-align: center;
  animation: preloaderPop 1.1s ease forwards;
}

.preloader img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(224, 20, 31, 0.45));
}

.preloader h2 {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
}

.preloader-line {
  width: 210px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: preloaderLine 1.2s ease infinite;
}

@keyframes preloaderPop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderLine {
  0% {
    opacity: 0.25;
    transform: scaleX(0.35);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.25;
    transform: scaleX(0.35);
  }
}

@keyframes preloaderHide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6, 8, 12, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.brand-mark span {
  display: block;
  width: 5px;
  background: linear-gradient(180deg, #ff2c38 0%, #d9111d 100%);
  border-radius: 4px;
  transform: skewX(-18deg);
  box-shadow: 0 0 14px rgba(224, 20, 31, 0.35);
}

.brand-mark span:nth-child(1) {
  height: 15px;
}

.brand-mark span:nth-child(2) {
  height: 21px;
}

.brand-mark span:nth-child(3) {
  height: 27px;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.brand-text .brand-white {
  color: #ffffff;
}

.brand-text .brand-red {
  color: var(--red-2);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-size: 16px;
  font-weight: 700;
  color: #eef2f8;
  position: relative;
  transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(224, 20, 31, 0.45);
}

.desktop-cta {
  min-width: max-content;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
  border-radius: 999px;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  padding: 0 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: #f4f6fa;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* HERO */
.hero-wrap {
  position: relative;
  padding: 24px 0 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(224, 20, 31, 0.18), transparent 28%),
    linear-gradient(180deg, #080b10 0%, #090c12 100%);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(90deg, rgba(6,8,12,0.98) 0%, rgba(7,10,16,0.88) 38%, rgba(8,10,16,0.35) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.16;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  min-height: 520px;
}

.hero-content {
  padding: 38px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-weight: 900;
  max-width: 580px;
}

.hero-content p {
  margin-top: 18px;
  max-width: 520px;
  font-size: 22px;
  line-height: 1.45;
  color: #c8d0db;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dce3ec;
  font-size: 17px;
  font-weight: 700;
}

.hero-point .dot-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(122, 212, 137, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
}

.hero-point .dot-icon .svg-icon {
  width: 12px;
  height: 12px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,8,12,0.12) 0%, rgba(6,8,12,0.04) 28%, rgba(6,8,12,0.08) 100%);
  z-index: 2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.22) 100%);
  z-index: 2;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-honda-sign {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 110px;
  font-weight: 900;
  color: #ff2935;
  text-shadow:
    0 0 10px rgba(255, 41, 53, 0.85),
    0 0 24px rgba(255, 41, 53, 0.65),
    0 0 48px rgba(255, 41, 53, 0.38);
  opacity: 0.92;
  line-height: 1;
}

.hero-japanese {
  position: absolute;
  right: 26px;
  top: 94px;
  z-index: 3;
  color: #ff2a36;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 5px;
  opacity: 0.78;
  text-shadow: 0 0 18px rgba(255, 42, 54, 0.28);
}

.hero-gradient-fade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(7,9,13,0.82) 0%, rgba(7,9,13,0.22) 22%, rgba(7,9,13,0.04) 46%, rgba(7,9,13,0.15) 100%);
}

.hero-glow {
  position: absolute;
  left: 52%;
  bottom: 18px;
  width: 340px;
  height: 80px;
  background: radial-gradient(circle, rgba(224, 20, 31, 0.34) 0%, rgba(224, 20, 31, 0.12) 45%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(20px);
  z-index: 2;
}

.hero-trustbar {
  position: relative;
  z-index: 3;
  margin-top: -18px;
}

.hero-trustgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(14,18,26,0.92) 0%, rgba(10,14,20,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.hero-trustitem {
  padding: 22px 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-trustitem:last-child {
  border-right: none;
}

.hero-trusticon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(224, 20, 31, 0.08);
  display: grid;
  place-items: center;
  color: var(--red-2);
  flex-shrink: 0;
}

.hero-trusticon .svg-icon {
  width: 24px;
  height: 24px;
}

.hero-trusttext h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-trusttext p {
  margin-top: 5px;
  color: #c2cad4;
  font-size: 16px;
  line-height: 1.4;
}

/* PAGE HERO */
.page-hero {
  padding: 70px 0 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(224, 20, 31, 0.16), transparent 25%),
    linear-gradient(180deg, #080b10 0%, #0b0f16 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero-content {
  max-width: 820px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(224,20,31,0.1);
  border: 1px solid rgba(224,20,31,0.22);
  color: #ffb8be;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 900;
}

.page-hero p {
  margin-top: 16px;
  color: #c8d0db;
  font-size: 22px;
  line-height: 1.5;
  max-width: 720px;
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 42px;
  letter-spacing: -1px;
  font-weight: 900;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--red);
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
  margin-top: 10px;
  font-size: 20px;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, #10141c 0%, #0d1118 100%);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 20, 31, 0.34);
  box-shadow: 0 24px 55px rgba(0,0,0,0.28);
}

.product-image {
  height: 220px;
  background:
    radial-gradient(circle at 50% 35%, rgba(224, 20, 31, 0.16), transparent 36%),
    linear-gradient(135deg, #202631 0%, #10141c 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 26px;
  border: 1px solid rgba(224, 20, 31, 0.24);
  background: rgba(224, 20, 31, 0.08);
  display: grid;
  place-items: center;
  color: var(--red-2);
}

.product-placeholder .svg-icon {
  width: 36px;
  height: 36px;
}

.product-body {
  padding: 16px 16px 18px;
}

.product-body h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  min-height: 52px;
}

.product-meta {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.product-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d6dde7;
  font-size: 17px;
  line-height: 1.3;
}

.product-meta-item strong {
  color: #ffffff;
  font-weight: 700;
}

.product-meta-item .svg-icon {
  width: 16px;
  height: 16px;
  color: #c4ccd7;
  flex-shrink: 0;
}

.product-meta-item.status-ok .svg-icon {
  color: var(--green);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff232f 0%, #db101c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  transition: 0.25s ease;
}

.card-link .svg-icon {
  width: 17px;
  height: 17px;
}

.card-link:hover {
  background: linear-gradient(180deg, #ff2b37 0%, #e11420 100%);
}

/* CATEGORIES */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  min-height: 160px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(135deg, rgba(224, 20, 31, 0.12) 0%, rgba(224, 20, 31, 0.02) 24%, transparent 54%),
    linear-gradient(180deg, #10141c 0%, #0d1118 100%);
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 20, 31, 0.3);
}

.category-card .svg-icon {
  width: 40px;
  height: 40px;
  color: var(--red-2);
  margin-bottom: 18px;
}

.category-card h3 {
  font-size: 26px;
  font-weight: 800;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, #10141c 0%, #0d1118 100%);
}

.why-card .svg-icon {
  width: 38px;
  height: 38px;
  color: var(--red-2);
}

.why-card h3 {
  margin: 16px 0 10px;
  font-size: 25px;
  font-weight: 800;
}

.why-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 19px;
}

/* REQUEST AREA */
.premium-request-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(224, 20, 31, 0.18), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(224, 20, 31, 0.12), transparent 26%),
    linear-gradient(180deg, #080b10 0%, #0a0d13 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.premium-request-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  pointer-events: none;
}

.premium-request-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.request-info-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(135deg, rgba(224,20,31,0.14) 0%, transparent 36%),
    linear-gradient(180deg, rgba(17,21,29,0.96) 0%, rgba(12,16,23,0.96) 100%);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
  overflow: hidden;
}

.request-info-card::after {
  content: "HONDA";
  position: absolute;
  right: -18px;
  bottom: -26px;
  font-size: 92px;
  font-weight: 900;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
}

.request-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(224,20,31,0.1);
  border: 1px solid rgba(224,20,31,0.28);
  color: #ffb7bd;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
}

.request-info-card h2 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 16px;
}

.request-info-card h2 span {
  color: var(--red-2);
}

.request-info-card p {
  color: #c8d0db;
  line-height: 1.55;
  font-size: 20px;
  max-width: 560px;
}

.request-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.request-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.065);
}

.request-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--red-2);
  background: rgba(224,20,31,0.1);
  border: 1px solid rgba(224,20,31,0.22);
}

.request-step-icon .svg-icon {
  width: 23px;
  height: 23px;
}

.request-step h3 {
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 4px;
}

.request-step p {
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
}

.request-form-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(17,21,29,0.98) 0%, rgba(12,16,23,0.98) 100%);
  box-shadow: 0 28px 70px rgba(0,0,0,0.24);
}

.request-form-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.request-form-head-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #ff232f 0%, #db101c 100%);
  box-shadow: 0 14px 32px rgba(224,20,31,0.25);
  flex-shrink: 0;
}

.request-form-head-icon .svg-icon {
  width: 24px;
  height: 24px;
}

.request-form-head h3 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
  margin: 0;
}

.request-form-head p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.premium-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.input-group {
  position: relative;
}

.input-group.full {
  grid-column: span 2;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f7888;
  z-index: 2;
  pointer-events: none;
}

.input-icon .svg-icon {
  width: 20px;
  height: 20px;
}

.textarea-group .input-icon {
  top: 18px;
  transform: none;
}

.input-group input,
.input-group textarea {
  width: 100%;
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.98);
  color: #141821;
  border-radius: 14px;
  outline: none;
  box-shadow: none;
  transition: 0.2s ease;
  font-family: "Saira Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  padding-right: 16px;
  padding-left: 52px;
}

.input-group input {
  height: 54px;
}

.input-group textarea {
  min-height: 140px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(224,20,31,0.55);
  box-shadow: 0 0 0 4px rgba(224,20,31,0.10);
}

.request-submit {
  margin-top: 18px;
  width: 100%;
  border: none;
  min-height: 56px;
  font-size: 21px;
}

.request-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(122, 212, 137, 0.08);
  border: 1px solid rgba(122, 212, 137, 0.16);
  color: #ccefd2;
  font-size: 17px;
  line-height: 1.45;
}

.request-note .svg-icon {
  width: 20px;
  height: 20px;
  color: #7ad489;
  margin-top: 1px;
}

/* FOOTER */
.footer {
  padding: 56px 0 24px;
  background: #06080c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 800;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.65;
  font-size: 18px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 5vw, 54px);
  }

  .hero-trusttext h3 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .premium-request-wrap,
  .product-grid,
  .category-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .premium-request-wrap {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 18px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-trustgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-trustitem:nth-child(2),
  .hero-trustitem:nth-child(4) {
    border-right: none;
  }

  .hero-trustitem:nth-child(1),
  .hero-trustitem:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-wrap {
    padding-top: 10px;
  }

  .hero-panel {
    border-radius: 0 0 22px 22px;
  }

  .hero-content {
    padding: 28px 20px 12px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: -1.2px;
  }

  .hero-content p,
  .page-hero p {
    font-size: 18px;
    margin-top: 14px;
  }

  .hero-actions,
  .page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-actions .btn,
  .page-hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 12px 18px;
    margin-top: 20px;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-honda-sign {
    top: 24px;
    font-size: 74px;
  }

  .hero-japanese {
    top: 70px;
    right: 14px;
    font-size: 22px;
    letter-spacing: 3px;
  }

  .hero-trustgrid,
  .product-grid,
  .category-grid,
  .why-grid,
  .footer-grid,
  .premium-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-trustbar {
    margin-top: 0;
  }

  .hero-trustgrid {
    border-radius: 0 0 18px 18px;
  }

  .hero-trustitem {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hero-trustitem:last-child {
    border-bottom: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .request-info-card,
  .request-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .input-group.full {
    grid-column: span 1;
  }

  .request-form-head {
    align-items: flex-start;
  }

  .request-form-head h3 {
    font-size: 28px;
  }

  .request-form-head p {
    font-size: 18px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 19px;
  }

  .request-info-card::after {
    font-size: 58px;
    right: -10px;
    bottom: -16px;
  }

  .preloader img {
    width: 96px;
    height: 96px;
  }

  .preloader h2 {
    font-size: 20px;
  }

  .preloader-line {
    width: 170px;
  }

  .page-hero {
    padding: 52px 0 28px;
  }

  .page-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-text {
    font-size: 17px;
  }

  .hero-content h1 {
    font-size: 37px;
  }

  .hero-point {
    font-size: 15px;
  }

  .hero-media {
    min-height: 280px;
  }

  .product-image {
    height: 200px;
  }

  .category-card h3 {
    font-size: 22px;
  }

  .why-card h3 {
    font-size: 22px;
  }

  .request-info-card h2 {
    font-size: 36px;
  }

  .product-body h3 {
    min-height: auto;
  }
}/* SUCCESS TOAST */
.success-toast {
  position: fixed;
  right: 24px;
  top: 96px;
  z-index: 99999;
  width: min(420px, calc(100% - 32px));
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(122, 212, 137, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(16, 20, 28, 0.98) 0%, rgba(11, 15, 22, 0.98) 100%);
  border: 1px solid rgba(122, 212, 137, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transform: translateX(130%);
  opacity: 0;
}

.success-toast.show {
  display: flex;
  animation: toastIn 0.55s cubic-bezier(.2,.9,.2,1) forwards, toastOut 0.5s ease forwards 5s;
}

.success-toast-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #7ad489;
  background: rgba(122, 212, 137, 0.10);
  border: 1px solid rgba(122, 212, 137, 0.22);
  flex-shrink: 0;
}

.success-toast-icon .svg-icon {
  width: 24px;
  height: 24px;
}

.success-toast-content h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 5px;
}

.success-toast-content p {
  color: #c8d0db;
  font-size: 18px;
  line-height: 1.35;
}

@keyframes toastIn {
  from {
    transform: translateX(130%) scale(0.96);
    opacity: 0;
  }

  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes toastOut {
  to {
    transform: translateX(130%) scale(0.96);
    opacity: 0;
  }
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #31d366 0%, #16a34a 100%);
  box-shadow:
    0 18px 40px rgba(22, 163, 74, 0.34),
    0 0 0 0 rgba(49, 211, 102, 0.48);
  animation: whatsappPulse 2.1s ease infinite, whatsappFloat 3.6s ease-in-out infinite;
  transition: 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 24px 54px rgba(22, 163, 74, 0.45),
    0 0 0 10px rgba(49, 211, 102, 0.10);
}

.floating-whatsapp .svg-icon {
  width: 32px;
  height: 32px;
}

.floating-whatsapp::after {
  content: "WhatsApp";
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%);
  min-width: max-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(12, 16, 23, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.floating-whatsapp:hover::after {
  opacity: 1;
  right: 82px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 18px 40px rgba(22, 163, 74, 0.34),
      0 0 0 0 rgba(49, 211, 102, 0.48);
  }

  70% {
    box-shadow:
      0 18px 40px rgba(22, 163, 74, 0.34),
      0 0 0 16px rgba(49, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 18px 40px rgba(22, 163, 74, 0.34),
      0 0 0 0 rgba(49, 211, 102, 0);
  }
}

@keyframes whatsappFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 768px) {
  .success-toast {
    right: 16px;
    top: 84px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp .svg-icon {
    width: 29px;
    height: 29px;
  }

  .floating-whatsapp::after {
    display: none;
  }
}