:root {
  --primary: #1565c0;
  --primary-dark: #0d47a1;
  --primary-soft: #e3f2fd;
  --secondary: #ff6f00;
  --secondary-soft: #fff3e0;
  --surface: #f5f5f5;
  --background: #ffffff;
  --text: #212121;
  --muted: #5f6368;
  --shadow-sm: 0 10px 24px rgba(21, 101, 192, 0.08);
  --shadow-md: 0 18px 40px rgba(33, 33, 33, 0.12);
  --shadow-lg: 0 24px 56px rgba(13, 71, 161, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.75;
}

section {
  position: relative;
  overflow: hidden;
}

a,
button,
.card,
.btn,
.nav-link,
.chip,
.timeline-content,
.point-card {
  transition: all 0.3s ease;
}

.section-padding {
  padding: 100px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 0;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
  line-height: 1;
}

.navbar-shell {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}

.navbar-shell.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(21, 101, 192, 0.1);
  box-shadow: 0 10px 24px rgba(33, 33, 33, 0.08);
}

.navbar-brand {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.navbar-shell.scrolled .navbar-brand,
.navbar-shell.scrolled .nav-link,
.navbar-shell.scrolled .navbar-toggler {
  color: var(--text) !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: center;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.navbar-shell.scrolled .nav-link:hover,
.navbar-shell.scrolled .nav-link:focus {
  color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 0;
  color: #fff;
  box-shadow: none !important;
}

.offcanvas {
  background: linear-gradient(180deg, #0d47a1 0%, #1565c0 100%);
  color: #fff;
}

.offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 0;
}

.hero-section {
  min-height: 100vh;
  padding-top: 88px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%), radial-gradient(circle at bottom right, rgba(255, 111, 0, 0.24), transparent 24%), linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #42a5f5 100%);
  color: #fff;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.hero-section::before {
  width: 320px;
  height: 320px;
  top: 10%;
  right: -80px;
}

.hero-section::after {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: -40px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 3.7rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subcopy {
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8f00, #ff6f00);
  border: none;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(255, 111, 0, 0.35);
  animation: pulse 2.8s infinite;
}

.btn-hero:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 24px 42px rgba(255, 111, 0, 0.45);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.hero-panel {
  width: min(100%, 520px);
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 80px rgba(9, 30, 66, 0.22);
}

.heater-graphic {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(227, 242, 253, 0.8));
  padding: 28px;
  min-height: 350px;
  color: var(--text);
}

.heater-body {
  width: min(260px, 100%);
  margin: 0 auto;
  padding: 28px 22px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
}

.heater-screen {
  background: linear-gradient(135deg, #0d47a1, #42a5f5);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  margin-bottom: 18px;
}

.heater-flames {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 10px;
}

.flame-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.14);
  color: var(--secondary);
  font-size: 1.6rem;
  animation: floating 4s ease-in-out infinite;
}

.flame-icon:nth-child(2) {
  animation-delay: 0.7s;
}

.flame-icon:nth-child(3) {
  animation-delay: 1.4s;
}

.performance-bar {
  height: 12px;
  border-radius: 999px;
  background: #e3f2fd;
  overflow: hidden;
}

.performance-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-number {
  display: block;
  max-width: 100%;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 6px;
  overflow: hidden;
}

.stat-number .countup {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  max-width: 100%;
  flex-wrap: nowrap;
}

.stat-number .count-value {
  display: inline-block;
  white-space: nowrap;
  flex: 0 1 auto;
}

.stat-number .count-suffix {
  display: inline-block;
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.9;
  white-space: nowrap;
  flex: 0 0 auto;
  padding-bottom: 0.08em;
}

.stat-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.material-card {
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: #fff;
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: 34px;
  height: 100%;
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.14), rgba(66, 165, 245, 0.18));
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list i {
  color: var(--secondary);
  margin-top: 5px;
}

.about-image {
  display: block;
  width: min(100%, 420px);
  margin: 24px auto 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .about-image {
    width: min(100%, 840px);
  }
}

.timeline-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(21, 101, 192, 0.18), rgba(21, 101, 192, 0.9));
}

.timeline-item {
  position: relative;
  padding-left: 86px;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  color: #fff;
  box-shadow: 0 12px 28px rgba(21, 101, 192, 0.28);
}

.timeline-content {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
}

.timeline-content:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-weight: 500;
}

.chip i {
  color: var(--primary);
}

.points-section {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 52%, #1976d2 100%);
  color: #fff;
}

.points-section .section-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.points-section .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.point-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.point-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 38px rgba(5, 22, 51, 0.24);
}

.point-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: #ffcc80;
}

.maker-card {
  position: relative;
  height: 100%;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.maker-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--maker-accent, var(--primary));
}

.maker-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.maker-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.maker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--maker-accent, var(--primary));
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--maker-accent, var(--primary)) 16%, white);
}

.maker-image {
  display: block;
  width: min(100%, 150px);
  height: 44px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 18px;
}

.product-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.product-card {
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.product-card img {
  /* aspect-ratio: 4 / 3; */
  object-fit: cover;
  background: #eef3f8;
}

.product-card .card-title {
  line-height: 1.45;
}

.product-card-link {
  color: inherit;
  text-decoration: none;
}

.product-card-link:hover {
  color: var(--primary);
}

.product-price-text {
  color: #6c757d;
}

.product-card-footer .btn {
  white-space: nowrap;
  align-self: flex-start;
}

.product-card-button {
  width: 100%;
}

.product-actions {
  margin-top: 34px;
}

.btn-outline-primary-material {
  border: 1px solid rgba(21, 101, 192, 0.22);
  color: var(--primary);
  background: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary-material:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.product-skeleton {
  height: 100%;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.skeleton-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #eef3f8 25%, #f7fafc 50%, #eef3f8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-image {
  height: 220px;
}

.skeleton-line {
  height: 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.skeleton-line.short {
  width: 45%;
}

.skeleton-line.medium {
  width: 75%;
}

.skeleton-line:last-child {
  margin-bottom: 0;
}

.skeleton-message {
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}

.review-section {
  background: linear-gradient(180deg, #d7e2ea 0%, #c6d5e1 100%);
}

.review-showcase {
  padding: 36px 18px;
  background: rgba(214, 226, 235, 0.78);
}

.review-head-stars {
  color: var(--secondary);
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 18px;
}

.review-kicker {
  position: relative;
  background: transparent;
  color: #2c1f1d;
  padding: 0 0 14px;
  margin-bottom: 20px;
  border-radius: 0;
  justify-content: center;
}

.review-kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 610px);
  height: 2px;
  background: rgba(44, 31, 29, 0.9);
  transform: translateX(-50%);
}

.review-kicker .material-symbols-outlined {
  display: none;
}

.review-showcase .section-title {
  color: #2c1f1d;
}

.review-showcase .section-desc {
  max-width: 620px;
  color: rgba(44, 31, 29, 0.82);
}

.review-list {
  display: grid;
  gap: 28px;
}

.review-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  align-items: end;
  gap: 12px;
}

.review-item-reverse {
  grid-template-columns: 90px minmax(0, 1fr);
}

.review-bubble {
  position: relative;
  border: 3px solid rgba(44, 31, 29, 0.9);
  border-radius: 12px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(33, 33, 33, 0.08);
}

.review-item .review-bubble::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 28px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid rgba(44, 31, 29, 0.9);
}

.review-item .review-bubble::before {
  content: "";
  position: absolute;
  right: -15px;
  bottom: 30px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid rgba(255, 255, 255, 0.96);
  z-index: 1;
}

.review-item-reverse .review-bubble::after {
  right: auto;
  left: -20px;
  border-left: 0;
  border-right: 20px solid rgba(44, 31, 29, 0.9);
}

.review-item-reverse .review-bubble::before {
  right: auto;
  left: -15px;
  border-left: 0;
  border-right: 17px solid rgba(255, 255, 255, 0.96);
}

.review-bubble p {
  margin-bottom: 14px;
}

.review-meta {
  display: grid;
  gap: 2px;
}

.review-avatar-slot {
  width: 90px;
}

.review-item-reverse .review-avatar-slot {
  order: -1;
}

.review-avatar-placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(44, 31, 29, 0.42);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(44, 31, 29, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}

.review-avatar-image,
.review-avatar-slot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
}

.star-rating {
  color: #ffb300;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.review-location {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-accordion .accordion-item {
  border: 0;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  padding: 22px 24px;
  box-shadow: none !important;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.faq-accordion .accordion-body {
  padding: 0 24px 24px;
  color: var(--muted);
}

.footer-section {
  background: radial-gradient(circle at top right, rgba(21, 101, 192, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  color: #425466;
  padding: 70px 0 28px;
  border-top: 1px solid rgba(21, 101, 192, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.footer-logo {
  color: #1f2d3d;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-brand-image {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.footer-nav a,
.footer-social a {
  color: #4f6477;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: #1565c0;
}

.footer-social {
  display: flex;
  gap: 14px;
  font-size: 1.1rem;
}

.footer-section h3,
.footer-section h5 {
  color: #1f2d3d;
}

.footer-section p {
  color: #5c6f82;
}

.empty-products {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(227, 242, 253, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow:
    0 24px 54px rgba(21, 101, 192, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  padding: 36px 28px;
  text-align: center;
}

.empty-products i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.empty-products .btn {
  margin-top: 18px;
}

.video-shell {
  padding: 18px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 101, 192, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.video-shell .ratio {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 56%, #42a5f5 100%);
}

.video-placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%), linear-gradient(135deg, rgba(13, 71, 161, 0.94), rgba(21, 101, 192, 0.88));
}

.video-placeholder-inner {
  max-width: 640px;
}

.video-placeholder .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.video-play {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.7rem;
  box-shadow: 0 16px 36px rgba(5, 22, 51, 0.24);
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 36px rgba(255, 111, 0, 0.35);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 24px 40px rgba(255, 111, 0, 0.42);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 82px 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 80px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  p,
  .section-desc {
    text-align: left !important;
  }

  .section-desc {
    margin-inline: 0 !important;
  }

  .hero-visual {
    display: none;
  }

  .heater-flames {
    display: none;
  }

  .subsidy-cta {
    padding-inline: 1.75rem !important;
  }

  .heater-graphic {
    padding: 22px;
  }

  .section-title {
    font-size: clamp(1.55rem, 5.4vw, 1.9rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-panel,
  .feature-card,
  .timeline-content {
    padding: 24px;
  }

  .review-showcase {
    padding: 28px 14px;
  }

  .review-kicker::after {
    width: 100%;
  }

  .review-item {
    /* display: grid; */
    /* grid-template-columns: minmax(0, 1fr); */
    gap: 10px;
  }

  .review-item-reverse {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 8px;
    flex-direction: row-reverse;
  }

  .review-avatar-slot {
    flex: 0 0 64px;
    flex-shrink: 0;
    width: 64px;
    margin: 0;
  }

  .review-bubble {
    padding: 16px 14px;
    box-sizing: border-box;
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .review-item-reverse .review-avatar-slot {
    order: initial;
  }

  .review-item .review-avatar-slot {
    margin: 0;
    justify-self: end;
  }

  .review-item .review-bubble::after {
    right: -14px;
    bottom: 18px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .review-item .review-bubble::before {
    right: -10px;
    bottom: 20px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 12px;
  }

  .review-item-reverse .review-bubble::after {
    content: "";
    right: auto;
    left: -14px;
    bottom: 18px;
    border-left: 0;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-right-width: 14px;
  }

  .review-item-reverse .review-bubble::before {
    content: "";
    right: auto;
    left: -10px;
    bottom: 20px;
    border-left: 0;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-right-width: 12px;
  }

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

  .timeline-wrap::before {
    left: 21px;
  }

  .timeline-item {
    padding-left: 72px;
  }

  .timeline-dot {
    width: 46px;
    height: 46px;
  }

  .chip-group {
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .review-showcase {
    padding: 48px 36px;
  }

  .review-list {
    gap: 32px;
  }

  .review-item,
  .review-item-reverse {
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 20px;
  }

  .review-item-reverse {
    grid-template-columns: 124px minmax(0, 1fr);
  }

  .review-avatar-slot {
    width: 124px;
  }

  .review-bubble {
    padding: 24px 26px;
  }
}
