/* ============================================
   Header - Menu
   ============================================ */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #e4e6f1;
  overflow-x: hidden;
}

#main {
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #e5e5e5;
}
/* Reset / base for header */
.site-header {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #4b4b4b;
}

/* ============================================
   Hero section
   ============================================ */

.hero {
  position: relative;
  padding: 48px 64px 0;
  background: linear-gradient(180deg, #e4e6f1 12%, #f6f7fc 100%);
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 64px;
  border-bottom: 1px solid #2e5dbc;
  z-index: 2;
}

.hero__content {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
}

.hero__title {
  font-size: 58px;
  font-weight: 700;
  color: #4b4b4b;
  line-height: 1.25;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}

.hero__text {
  font-size: 18px;
  font-weight: 600;
  color: #4b4b4b;
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 520px;
}

.hero__cta {
  display: inline-block;
  font-size: 30px;
  font-weight: 500;
  color: #4b4b4b;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid #2e5dbc;
  margin-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.hero__cta-arrow {
  font-size: 20px;
  font-weight: 600;
  color: #2e5dbc;
  margin-left: 10px;
}

.hero__cta:hover {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.hero__image-wrap {
  flex: 1;
  min-width: 0;
  max-width: 55%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.hero__image {
  width: 100%;
  min-height: 320px;
  background-color: #d9d9d9;
  flex-shrink: 0;
}

/* ============================================
   Telescopic Ladders section (伸縮はしごとは?)
   ============================================ */

.telescopic {
  position: relative;
  background-color: rgba(243, 247, 250, 1);
  padding: 32px 64px 0;
}

.telescopic::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 504px;
  height: 504px;
  background-image: url(assets/half-round2.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.telescopic::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 0;
  width: 263px;
  height: 527px;
  background-image: url(assets/half-round1.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.telescopic__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 80px;
  border-bottom: 1px solid #2e5dbc;
}

.telescopic__title {
  font-size: 40px;
  font-weight: 600;
  color: #4b4b4b;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.telescopic__subtitle {
  font-size: 40px;
  font-weight: 600;
  color: #4b4b4b;
  margin: 0 0 40px;
}

/* Intro block with L-bracket frame */
.telescopic__intro {
  position: relative;
  display: inline-block;
  padding: 32px 48px 40px;
  margin-bottom: 32px;
}

.telescopic__intro::before,
.telescopic__intro::after {
  content: '';
  position: absolute;
  width: 55px;
  height: 55px;
  border-color: #2e5dbc;
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}

.telescopic__intro::before {
  top: 0;
  left: 0;
  border-top-width: 3px;
  border-left-width: 3px;
}

.telescopic__intro::after {
  bottom: 0;
  right: 0;
  border-bottom-width: 3px;
  border-right-width: 3px;
}

.telescopic__intro-heading {
  font-size: 30px;
  font-weight: 700;
  color: #2e5dbc;
  margin: 0 0 12px;
}

.telescopic__intro-text {
  font-size: 20px;
  font-weight: 600;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.telescopic__intro-text .highlight {
  color: #e83a37;
  font-weight: 500;
}

.telescopic__chevron {
  display: block;
  width: 39px;
  height: 27px;
  object-fit: contain;
  margin: 0 auto;
}

/* Feature cards */
.telescopic__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  text-align: center;
  margin-top: 32px;
}

.telescopic-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  text-align: center;
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.telescopic-card__title {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #2e5dbc;
  margin: 0 0 16px;
  line-height: 1.4;
  background-color: #f6f7fc;
}

.telescopic-card__content {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.telescopic-card__text {
  width: 70%;
  flex: 0 0 70%;
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0;
  box-sizing: border-box;
  text-align: left;
}

.telescopic-card__text .highlight {
  color: #e83a37;
  font-weight: 500;
}

.telescopic-card__icon {
  width: 30%;
  flex: 0 0 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.telescopic-card__icon img {
  object-fit: contain;
  position: absolute;
  bottom: 10px;
}

/* CTA button */
.telescopic__cta {
  display: inline-block;
  background-color: #2e5dbc;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  transition: background-color 0.2s ease;
}

.telescopic__cta:hover {
  background-color: #2563eb;
}

/* ============================================
   Showcase section (あなたの「したい」を実現!)
   ============================================ */

.showcase {
  position: relative;
  background-color: rgba(243, 247, 250, 0.8);
  padding: 64px 32px 80px;
}

.showcase__shape {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 50%;
  padding-bottom: 50%;
  background-color: #2e5dbc;
  border-radius: 50%;
  pointer-events: none;
}

.showcase__title {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 700;
  color: #4b4b4b;
  text-align: center;
  margin: 0 0 30px;
  letter-spacing: 0.02em;
}

.showcase__subtitle {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 500;
  color: #4b4b4b;
  text-align: center;
  margin: 0 0 40px;
}

.showcase__box {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 32px 40px 48px;
}

.showcase__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.showcase__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.showcase__heading {
  font-size: 30px;
  font-weight: 600;
  color: #4b4b4b;
  margin: 0;
}

.showcase__intro {
  font-size: 16px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 32px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
}

/* Mobile: two single-column cards (hidden on desktop) */
.showcase-cards--mobile {
  display: none;
}

.showcase-card__image-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-direction: column;
  gap: 16px;
}

.showcase-card__image {
  width: 100%;
  aspect-ratio: 5 / 3;
  background-color: #d9d9d9;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.showcase-card__tagline-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-card__tagline {
  font-size: 20px;
  font-weight: 500;
  color: #4b4b4b;
  margin: 0 0 40px;
}

.showcase-card__name-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-card__name {
  font-size: 26px;
  font-weight: 700;
  color: #2e5dbc;
  margin: 0 0 40px;
}

.showcase-card__desc-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-card__desc {
  font-size: 18px;
  font-weight: 500;
  color: #4b4b4b;
  line-height: 1.65;
  margin: 0 0 30px;
}

.showcase-card__badge-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-card__badge {
  display: inline-block;
  background-color: #2e5dbc;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  padding: 6px 12px;
  margin-bottom: 12px;
  text-align: center;
}

.showcase-card__list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-card__list {
  font-size: 20px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 16px;
  padding-left: 20px;
}

.showcase-card__list li {
  margin-bottom: 4px;
}

.showcase-card__cta-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-card__cta-wrap-item {
  text-align: center;
}

.showcase-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 22px;
  font-weight: 500;
  color: #4b4b4b;
  text-decoration: none;
  margin-top: auto;
  border-bottom: 1px solid #2e5dbc;
}

.showcase-card__cta-arrow {
  font-size: 20px;
  font-weight: 600;
  color: #2e5dbc;
  margin-left: 40px;
}

.showcase-card__cta:hover {
  color: #2563eb;
}

/* ============================================
   Pro section (プロの現場での利用に)
   ============================================ */

.pro-section {
  position: relative;
  padding: 64px 32px 80px;
  background-color: rgba(243, 247, 250, 0.8);
}

.pro-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(assets/half-round2.png);
  background-repeat: no-repeat;
}

.pro-section__box {
  padding: 64px 0px 80px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.pro-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 32px;
}

.pro-section__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.pro-section__heading {
  font-size: 30px;
  font-weight: 600;
  color: #4b4b4b;
  margin: 0;
  padding: 0 32px;
}

.pro-section__intro {
  font-size: 20px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 32px;
  padding: 0 32px;
}

.pro-section__placeholders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding: 0 32px;
}

.pro-section__placeholder {
  width: 100%;
  min-height: 270px;
  background-color: #d9d9d9;
  margin-bottom: 32px;
}

.pro-section__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #d9d9d9;
  border-radius: 6px;
  margin-bottom: 32px;
}

.pro-section__product {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.pro-section__product-content {
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 32px;
}

.pro-section__cta-wrap {
  text-align: center;
}

.pro-section__tagline {
  font-size: 22px;
  color: #4b4b4b;
  margin: 0 0 32px;
  font-weight: 600;
}

.pro-section__name {
  font-size: 26px;
  font-weight: 700;
  color: #2e5dbc;
  margin: 0 0 24px;
}

.pro-section__desc {
  font-size: 18px;
  color: #4b4b4b;
  line-height: 1.65;
  margin: 0 0 16px;
}

.pro-section__badge {
  text-align: center;
  background-color: #2e5dbc;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.pro-section__list {
  font-size: 15px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
  position: relative;
}

.pro-section__list li {
  margin-bottom: 4px;
}

.pro-section__cta {
  font-size: 16px;
  font-weight: 500;
  color: #4b4b4b;
  text-decoration: none;
  border-bottom: 1px solid #2e5dbc;
  transition: color 0.2s ease;
}

.pro-section__cta-arrow {
  font-size: 20px;
  font-weight: 600;
  color: #2e5dbc;
  margin-left: 40px;
}

.pro-section__cta:hover {
  color: #2563eb;
}

/* ============================================
   Emergency section (もしもの時の備えに / QQ ラダー)
   ============================================ */

.emergency-section {
  position: relative;
  background-color: rgba(243, 247, 250, 1);
  padding: 64px 32px 80px;
}

.emergency-section::before {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 650px;
  height: 650px;
  background-image: url(assets/right-half-2.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.emergency-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: 0;
  width: 400px;
  height: 800px;
  background-size: contain;
  background-image: url(assets/quater.png);
  background-repeat: no-repeat;
}

.emergency-section__box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 64px 32px 80px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border-radius: 24px;
}

.emergency-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.emergency-section__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.emergency-section__heading {
  font-size: 30px;
  font-weight: 700;
  color: #4b4b4b;
  margin: 0;
}

.emergency-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.emergency-section__intro {
  font-size: 20px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 32px;
}

.emergency-section__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #d9d9d9;
  border-radius: 6px;
  margin-bottom: 32px;
}

.emergency-section__product {
  margin-bottom: 32px;
}

.emergency-section__tagline {
  font-size: 22px;
  color: #4b4b4b;
  margin: 0 0 4px;
  font-weight: 600;
}

.emergency-section__name {
  font-size: 26px;
  font-weight: 700;
  color: #2e5dbc;
  margin: 0 0 12px;
  font-weight: 600;
}

.emergency-section__desc {
  font-size: 18px;
  color: #4b4b4b;
  line-height: 1.65;
  margin: 0 0 16px;
}

.emergency-section__badge {
  text-align: center;
  background-color: #2e5dbc;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  margin-bottom: 12px;
}

.emergency-section__list {
  font-size: 18px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
  margin-bottom: 30px;
}

.emergency-section__list li {
  margin-bottom: 4px;
}

.emergency-section__cta-wrap {
  text-align: center;
}

.emergency-section__cta {
  font-size: 18px;
  font-weight: 500;
  color: #4b4b4b;
  border-bottom: 1px solid #2e5dbc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.emergency-section__cta-arrow {
  font-size: 20px;
  font-weight: 600;
  color: #2e5dbc;
  margin-left: 40px;
}

.emergency-section__cta:hover {
  color: #2563eb;
}

/* ============================================
   CTA section (伸縮はしごのお問い合わせはこちら)
   ============================================ */

.cta-section {
  text-align: center;
  padding-bottom: 64px;
  background-color: rgba(243, 247, 250, 1);
}

.cta-section__btn {
  display: inline-block;
  background-color: #2e5dbc;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 9999px;
}

.cta-section__btn:hover {
  background-color: #2563eb;
}

/* ============================================
   Spec comparison table (全製品スペック比較一覧)
   ============================================ */

.spec-section {
  background-image: url('assets/tb-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 32px 80px;
}

.spec-section__title {
  font-size: 40px;
  font-weight: 700;
  color: #4b4b4b;
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.spec-section__desc {
  font-size: 18px;
  color: #4b4b4b;
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.6;
}

.spec-section__wrap {
  width: 80%;
  margin: 0 auto;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.spec-table thead {
  background-color: #2e5dbc;
  color: #fff;
}

.spec-table th {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  white-space: nowrap;
}

.spec-table td {
  font-size: 18px;
  color: #4b4b4b;
  padding: 16px 20px;
}

/* ============================================
   Find product section (ぴったりの製品が見つからない方へ)
   ============================================ */

.find-section {
  background-color: rgba(243, 247, 250, 1);
  padding: 64px 32px 80px;
  border-bottom: 1px solid #2e5dbc;
}

.find-section__box {
  background-color: #fff;
  padding: 64px 32px 80px;
  border-radius: 32px;
  margin: 0 auto;
}

.find-section__title {
  font-size: 40px;
  font-weight: 700;
  color: #4b4b4b;
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: 0.02em;
}

.find-block {
  display: flex;
  gap: 32px;
  margin: 0 auto 48px;
  background: #fff;
}

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

.find-block__image {
  flex: 0 0 50%;
  min-height: 280px;
  background-color: #d9d9d9;
}

/* Image after title: shown only on mobile for sample block */
.find-block__image--after-title {
  display: none;
}

.find-block__content {
  flex: 1;
  padding: 32px 0px 32px 0;
  min-width: 0;
}

.find-block__heading {
  font-size: 26px;
  font-weight: 700;
  color: #4b4b4b;
  margin: 0 0 16px;
  line-height: 1.4;
}

.find-block__heading-highlight {
  color: #2e5dbc;
}

.find-block__desc {
  font-size: 18px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 20px;
}

.find-block__btn {
  text-align: center;
  display: block;
  background-color: #2e5dbc;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  margin-bottom: 16px;
  text-decoration: none;
}

.find-block__btn:hover {
  background-color: #2563eb;
}

.find-block__list {
  font-size: 18px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 16px;
  padding-left: 20px;
}

.find-block__list li {
  margin-bottom: 4px;
}

.find-block__cta-wrap {
  text-align: center;
}

.find-block__cta {
  font-size: 16px;
  font-weight: 500;
  color: #4b4b4b;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid #2e5dbc;
}

.find-block__cta-arrow {
  font-size: 20px;
  font-weight: 600;
  color: #2e5dbc;
  margin-left: 40px;
}

.find-block__cta:hover {
  color: #2563eb;
}

.find-block__link:hover {
  color: #2563eb;
}

/* ============================================
   Column section (コラム)
   ============================================ */

.column-section {
  background-color: #f8fafc;
  padding: 64px 32px 80px;
  text-align: center;
}

.column-section__lead {
  font-size: 20px;
  color: #4b4b4b;
  margin: 0 0 8px;
}

.column-section__title {
  font-size: 40px;
  font-weight: 700;
  color: #4b4b4b;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.column-section__intro {
  font-size: 18px;
  color: #4b4b4b;
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}

.column-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto 40px;
  text-align: left;
}

.column-card {
  flex-direction: column;
}

.column-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #d8d8d8;
}

.column-card__date {
  font-size: 18px;
  color: #4b4b4b;
  margin: 24px 0;
}

.column-card__title {
  font-size: 18px;
  font-weight: 500;
  color: #4b4b4b;
  line-height: 1.5;
  margin: 8px 0px 16px;
}

.column-card__btn {
  text-align: center;
  gap: 6px;
  margin: 16px 0px;
  padding: 10px 16px;
  border: 1px solid #2e5dbc;
  background: #fff;
  color: #4b4b4b;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9999px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.column-card__btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.column-card__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.column-section__more-arrow {
  font-size: 20px;
  font-weight: 600;
  color: #2e5dbc;
  margin-left: 40px;
}

.column-section__more {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #4b4b4b;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid #2e5dbc;
}

.column-section__more:hover {
  color: #2e5dbc;
}

/* ============================================
   Contact section (ご相談・お問い合わせ)
   ============================================ */

.contact-section {
  background-color: #fff;
  padding: 64px 32px 80px;
}

.contact-section__box {
  margin: 0 auto;
  background-color: #f8f8fa;
  border-radius: 12px;
  padding: 48px 40px;
}

.contact-section__title {
  font-size: 40px;
  font-weight: 700;
  color: #4b4b4b;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.contact-section__desc {
  font-size: 18px;
  color: #4b4b4b;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 40px;
}

.contact-section__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.contact-option__heading {
  font-size: 20px;
  font-weight: 600;
  color: #4b4b4b;
  margin: 0 0 16px;
}

.contact-option__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: #e83a37;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 8px;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.contact-option__btn:hover {
  background-color: #d43c3c;
  opacity: 0.95;
}

.contact-option__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-option__note {
  font-size: 20px;
  color: #4b4b4b;
  margin: 12px 0 0;
}

/* ============================================
   MOBILE STYLES (other version first, mobile next)
   ============================================ */

/* Desktop: hide mobile header and menu */
@media (min-width: 901px) {
  .mobile-header {
    display: none !important;
  }

  .mobile-menu.is-open {
    opacity: 0;
    visibility: hidden;
  }
}

/* Mobile: show mobile header, hide desktop header */
@media (max-width: 900px) {
  .mobile-header {
    display: flex;
  }

  .header-top,
  .header-nav {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  .container {
    padding: 0 16px;
    overflow: hidden;
  }

  /* Hero */
  .hero {
    padding: 32px 32px 0;
  }

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #2e5dbc;
  }

  .hero__content {
    order: 1;
    padding-top: 0;
  }

  .hero__title {
    font-size: 27px;
    line-height: 1.3;
    margin: 0 0 20px;
  }

  .hero__text {
    font-size: 16px;
    margin: 0 0 24px;
    max-width: none;
  }

  .hero__cta {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .hero__cta-arrow {
    font-size: 16px;
    margin-left: 6px;
  }

  .hero__image-wrap {
    order: 2;
    max-width: none;
    justify-content: flex-start;
  }

  .hero__image {
    min-height: 180px;
    max-height: 240px;
    aspect-ratio: 345/199;
    width: 100%;
  }

  /* Telescopic */
  .telescopic {
    padding: 24px 32px 48px;
  }

  .telescopic::after {
    top: -30px;
    right: -45px;
    width: 125px;
    height: 125px;
    background-image: url(assets/mobile-tele-before.png);
  }

  .telescopic::before {
    top: 18%;
    left: 0;
    width: 175px;
    height: 175px;
    background-image: url(assets/mobile-tele-after.png);
  }

  .telescopic__inner::after {
    content: '';
    position: absolute;
    bottom: -160px;
    left: -32px;
    width: 120px;
    height: 120px;
    background-image: url(assets/Ellipse-15.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .showcase__container {
    position: relative;
  }

  .showcase__wrapper {
    position: relative;
  }

  .showcase__container::before {
    content: '';
    position: absolute;
    bottom: 30%;
    right: -91px;
    width: 170px;
    height: 170px;
    background-image: url(assets/mobile-tele-before.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .showcase__container::after {
    content: '';
    position: absolute;
    bottom: 110px;
    left: -32px;
    width: 170px;
    height: 170px;
    background-image: url(assets/Ellipse-12.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .showcase__wrapper::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 0px;
    width: 160px;
    height: 160px;
    background-image: url(assets/Ellipse-5.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
  }

  .telescopic__title {
    font-size: 24px;
  }

  .telescopic__subtitle {
    font-size: 22px;
    margin: 0 0 24px;
  }

  .telescopic__intro {
    padding: 20px 24px 24px;
    margin-bottom: 20px;
  }

  .telescopic__intro-heading {
    font-size: 18px;
  }

  .telescopic__intro-text {
    font-size: 16px;
  }

  .telescopic__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: 20px;
  }

  .telescopic-card__title {
    font-size: 16px;
  }

  .telescopic-card__content {
    flex-direction: column;
  }

  .telescopic-card__text {
    width: 100%;
    flex: none;
    font-size: 15px;
  }

  .telescopic-card__icon {
    width: 100%;
    flex: none;
    min-width: 0;
    justify-content: flex-end;
    padding: 0 20px 20px 0;
  }

  .telescopic-card__icon img {
    position: static;
    max-width: 56px;
    max-height: 56px;
  }

  .telescopic__cta {
    font-size: 16px;
    padding: 12px 24px;
  }

  .card1::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -50px;
    width: 125px;
    height: 125px;
    background-image: url(assets/mobile-card1.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  .card2::before {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 0px;
    width: 140px;
    height: 140px;
    background-image: url(assets/Ellipse-5.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  .card3::before {
    content: '';
    position: absolute;
    top: -38px;
    left: -32px;
    width: 140px;
    height: 140px;
    background-image: url(assets/Ellipse-12.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  .card3::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -79px;
    width: 140px;
    height: 140px;
    background-image: url(assets/Ellipse-13.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  /* Showcase */
  .showcase {
    padding: 32px 32px 48px;
  }

  .showcase::before {
    content: '';
    position: absolute;
    top: 45px;
    left: -0px;
    width: 112px;
    height: 112px;
    background-image: url(assets/Ellipse-5.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .showcase__inner::before {
    content: '';
    position: absolute;
    top: 209px;
    right: -115px;
    width: 250px;
    height: 250px;
    background-image: url(assets/Ellipse-13.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .showcase__inner::after {
    content: '';
    position: absolute;
    top: 45%;
    left: -32px;
    width: 200px;
    height: 200px;
    background-image: url(assets/Ellipse-15.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .showcase__title {
    font-size: 24px;
    margin: 0 0 16px;
  }

  .showcase__subtitle {
    font-size: 16px;
    margin: 0 0 24px;
  }

  .showcase__heading {
    font-size: 20px;
  }

  .showcase__intro {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .showcase-card__tagline {
    font-size: 16px;
    margin: 0 0 24px;
  }

  .showcase-card__name {
    font-size: 20px;
    margin: 0 0 24px;
  }

  .showcase-card__desc {
    font-size: 15px;
  }

  .showcase-card__badge {
    font-size: 14px;
    padding: 6px 12px;
  }

  .showcase-card__list {
    font-size: 15px;
  }

  .showcase-card__cta {
    font-size: 15px;
  }

  /* Pro section */
  .pro-section {
    padding: 32px 32px 48px;
  }

  .pro-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -50px;
    left: auto;
    width: 140px;
    height: 140px;
    background-image: url(assets/mobile-tele-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .product-content1,
  .product-content2 {
    position: relative;
  }

  .product-content1::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -32px;
    width: 140px;
    height: 140px;
    background-image: url(assets/Ellipse-12.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -2;
  }

  .product-content2::before {
    content: '';
    position: absolute;
    top: 90px;
    right: -71px;
    width: 140px;
    height: 140px;
    background-image: url(assets/Ellipse-20.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -2;
  }

  .product-content2::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -32px;
    width: 190px;
    height: 140px;
    background-image: url(assets/Ellipse-21.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -2;
  }

  .pro-section__heading {
    font-size: 18px;
  }

  .pro-section__intro {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .pro-section__tagline {
    font-size: 14px;
  }

  .pro-section__name {
    font-size: 20px;
    margin: 0 0 12px;
  }

  .pro-section__desc {
    font-size: 15px;
    margin: 0 0 16px;
  }

  .pro-section__badge {
    font-size: 14px;
    padding: 8px 14px;
  }

  .pro-section__list {
    font-size: 15px;
  }

  .pro-section__cta {
    font-size: 15px;
  }

  .pro-section__placeholders {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .pro-section__placeholder {
    min-height: 160px;
    max-height: 200px;
  }

  .pro-section__product {
    grid-template-columns: 1fr;
  }

  /* Emergency section */
  .emergency-section__heading {
    font-size: 20px;
  }

  .emergency-section::before {
    content: '';
    position: absolute;
    top: 200px;
    left: auto;
    right: -42px;
    width: 150px;
    height: 150px;
    background-image: url(assets/Ellipse-20.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .emergency-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 150px;
    height: 150px;
    background-image: url(assets/Ellipse-12.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .emergency-section__list {
    position: relative;
  }

  .emergency-section__container::before {
    content: '';
    position: absolute;
    top: -220px;
    left: 0px;
    width: 200px;
    height: 190px;
    background-image: url(assets/Ellipse-22.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .emergency-section__container::after {
    content: '';
    position: absolute;
    bottom: 100px;
    right: -54px;
    width: 150px;
    height: 150px;
    background-image: url(assets/mobile-tele-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  .emergency-section__intro {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .emergency-section__tagline {
    font-size: 14px;
  }

  .emergency-section__name {
    font-size: 22px;
    margin: 0 0 12px;
  }

  .emergency-section__desc {
    font-size: 15px;
    margin: 0 0 16px;
  }

  .emergency-section__badge {
    font-size: 14px;
    padding: 8px 14px;
  }

  .emergency-section__list {
    font-size: 15px;
  }

  .emergency-section__cta {
    font-size: 15px;
  }

  .emergency-section__image {
    margin-bottom: 24px;
    min-height: 160px;
    max-height: 220px;
  }

  .emergency-section-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* CTA section */
  .cta-section {
    padding: 32px 20px 48px;
  }

  .cta-section__btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  /* Spec section */
  .spec-section {
    padding: 32px 20px 48px;
  }

  .spec-section__title {
    font-size: 24px;
    margin: 0 0 8px;
  }

  .spec-section__desc {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .spec-table th,
  .spec-table td {
    font-size: 14px;
    padding: 12px 16px;
  }

  /* Spec table mobile: thead = 4 columns (25% each), tbody = 2 columns (50% each), full width */
  .spec-table.spec-table--mobile {
    display: block;
    width: 100%;
  }

  .spec-table.spec-table--mobile thead {
    display: block;
    width: 100%;
  }

  .spec-table.spec-table--mobile thead tr {
    display: flex;
    width: 100%;
  }

  .spec-table.spec-table--mobile thead th[data-col='0'] {
    display: none;
  }

  .spec-table.spec-table--mobile thead th[data-col='1'],
  .spec-table.spec-table--mobile thead th[data-col='2'],
  .spec-table.spec-table--mobile thead th[data-col='3'],
  .spec-table.spec-table--mobile thead th[data-col='4'] {
    flex: 1 1 0;
    min-width: 0;
    width: 25%;
    box-sizing: border-box;
    cursor: pointer;
    background-color: #5b7fd6;
    transition: background-color 0.2s ease;
  }

  .spec-table.spec-table--mobile[data-active-col='1'] thead th[data-col='1'],
  .spec-table.spec-table--mobile[data-active-col='2'] thead th[data-col='2'],
  .spec-table.spec-table--mobile[data-active-col='3'] thead th[data-col='3'],
  .spec-table.spec-table--mobile[data-active-col='4'] thead th[data-col='4'] {
    background-color: #2e5dbc;
  }

  .spec-table.spec-table--mobile tbody {
    display: block;
    width: 100%;
  }

  .spec-table.spec-table--mobile tbody tr {
    display: flex;
    width: 100%;
  }

  .spec-table.spec-table--mobile td[data-col='1'],
  .spec-table.spec-table--mobile td[data-col='2'],
  .spec-table.spec-table--mobile td[data-col='3'],
  .spec-table.spec-table--mobile td[data-col='4'] {
    display: none;
  }

  .spec-table.spec-table--mobile td[data-col='0'] {
    display: block;
    flex: 0 0 50%;
    width: 50%;
    box-sizing: border-box;
  }

  .spec-table.spec-table--mobile[data-active-col='1'] td[data-col='1'],
  .spec-table.spec-table--mobile[data-active-col='2'] td[data-col='2'],
  .spec-table.spec-table--mobile[data-active-col='3'] td[data-col='3'],
  .spec-table.spec-table--mobile[data-active-col='4'] td[data-col='4'] {
    display: block;
    flex: 0 0 50%;
    width: 50%;
    box-sizing: border-box;
    background-color: rgba(243, 247, 250, 1);
  }

  /* Find section */
  .find-section {
    padding: 32px 20px 48px;
  }

  .find-section__title {
    font-size: 24px;
    margin: 0 0 24px;
  }

  .find-block {
    margin-bottom: 24px;
    gap: 0;
  }

  .find-block__heading {
    font-size: 18px;
    margin: 0 0 12px;
  }

  .find-block__desc {
    font-size: 15px;
    margin: 0 0 16px;
  }

  .find-block__btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .find-block__list {
    font-size: 15px;
  }

  .find-block__link {
    font-size: 15px;
  }

  .find-block__content {
    padding: 20px 0px 20px 0px;
  }

  .find-block__image {
    min-height: 200px;
    max-height: 260px;
    flex: 0 0 auto;
  }

  /* Column section */
  .column-section {
    padding: 32px 20px 48px;
  }

  .column-section__lead {
    font-size: 15px;
    margin: 0 0 4px;
  }

  .column-section__title {
    font-size: 28px;
    margin: 0 0 12px;
  }

  .column-section__intro {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .column-card__image {
    aspect-ratio: 4 / 3;
    max-height: 180px;
  }

  .column-card__date {
    font-size: 13px;
    margin: 12px 12px 0;
  }

  .column-card__title {
    font-size: 15px;
    margin: 8px 12px 12px;
  }

  .column-card__btn {
    font-size: 14px;
    padding: 10px 12px;
  }

  .column-section__more {
    font-size: 15px;
  }

  /* Contact section */
  .contact-section {
    padding: 32px 20px 48px;
  }

  .contact-section__box {
    padding: 24px 20px;
  }

  .contact-section__title {
    font-size: 24px;
    margin: 0 0 12px;
  }

  .contact-section__desc {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .contact-option__label {
    font-size: 20px;
  }

  .contact-option__heading {
    font-size: 15px;
    margin: 0 0 12px;
  }

  .contact-option__btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .contact-option__note {
    font-size: 13px;
  }
}

/* Mobile: 800px - show two single-column showcase cards, hide desktop two-column card */
@media (max-width: 800px) {
  .showcase-card--desktop {
    display: none;
  }

  .showcase-cards--mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-cards--mobile .showcase-card__cta-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .column-section__cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile: 768px - find-block */
@media (max-width: 768px) {
  .find-block {
    flex-direction: column;
  }

  .showcase {
    padding: 32px 10px 48px;
  }

  .find-block__content {
    padding: 32px 0px 32px 0px;
  }

  .contact-section__options {
    grid-template-columns: 1fr;
  }

  /* Sample block: image placeholder under title on mobile, hide bottom image */
  .find-block--sample .find-block__image--after-title {
    display: block;
    width: 100%;
    min-height: 200px;
    max-height: 260px;
    margin-bottom: 16px;
    flex: none;
  }

  .find-block--sample > .find-block__image {
    display: none;
  }

  .contact-option__label {
    font-size: 19px;
  }

  .showcase__box {
    padding: 32px 10px 48px;
  }

  .pro-section {
    padding: 32px 10px 48px;
  }

  .pro-section__heading {
    font-size: 17px;
  }

  .emergency-section {
    padding: 32px 10px 48px;
  }

  .emergency-section__box {
    padding: 32px 20px;
  }
}

/* Mobile: 600px - pro placeholders */
@media (max-width: 600px) {
  .pro-section__placeholders {
    grid-template-columns: 1fr;
  }
}

.foot_links {
  background-color: #ffffff;
}
