/* Progress Business Loan — institutional / premium UI */

:root {
  --primary-dark-blue: #0a3054;
  --primary-blue: #135a9e;
  --bright-cyan: #3db8e8;
  --magenta: #c2185b;
  --magenta-hover: #a3144d;
  --purple: #6a1b9a;
  --dark-purple: #3d0f5c;
  --bg-page: #f4f6f9;
  --bg-muted: #e8eef6;
  --bg-white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --space-section-y: clamp(4rem, 8.5vw, 6.25rem);
  --container: min(100% - 2.5rem, 1140px);
  --font-sans: "Noto Sans Thai", system-ui, -apple-system, sans-serif;
  --text-body: clamp(1.015rem, 0.32vw + 0.96rem, 1.078125rem);
  --text-lede: clamp(1.0625rem, 0.5vw + 1rem, 1.1875rem);
  --leading-tight: 1.25;
  --leading-body: 1.65;
  --header-h: 76px;
  /* สเกลหัวข้อ section ให้สม่ำเสมอทั้งหน้า */
  --heading-section: clamp(1.35rem, 1.05vw + 1.05rem, 1.875rem);
  --heading-section-tight: clamp(1.28rem, 0.95vw + 1.02rem, 1.75rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ——— Header (light institutional bar) ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header--scrolled {
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__logo-img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(260px, 64vw);
  object-fit: contain;
  object-position: left center;
}

.site-footer__logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.navbar__toggle {
  order: 2;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 27, 96, 0.42);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(216, 27, 96, 0.95), rgba(123, 31, 162, 0.95));
  box-shadow: 0 8px 18px rgba(123, 31, 162, 0.28);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.navbar__toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.navbar__menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  padding: 1rem 1.25rem 1.5rem;
  background: linear-gradient(160deg, #0a3054, #102f61 58%, #17386f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 42px rgba(2, 6, 23, 0.35);
}

.navbar__menu.open {
  display: block;
}

.navbar__links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.navbar__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
}

.navbar__links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.navbar__actions {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar__cta-mobile {
  width: 100%;
  text-align: center;
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, #d81b60, #7b1fa2);
  box-shadow: 0 10px 20px rgba(123, 31, 162, 0.35);
}

.navbar__cta-desktop {
  display: none;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(19, 90, 158, 0.25);
}

.btn--primary:hover {
  background: #0f4d86;
  box-shadow: 0 4px 14px rgba(19, 90, 158, 0.3);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  background: var(--bg-white);
  color: var(--primary-dark-blue);
}

.btn--ghost:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn--accent {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(194, 24, 91, 0.28);
}

.btn--accent:hover {
  background: var(--magenta-hover);
}

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* ——— Typography blocks ——— */
.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.eyebrow--on-dark {
  color: var(--bright-cyan);
}

.section__head {
  max-width: 40rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.1rem);
}

.section__head--services {
  max-width: min(48rem, 100%);
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-size: var(--heading-section);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.018em;
  color: var(--primary-dark-blue);
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 46rem;
}

.section__head--center .section__lede {
  margin-left: auto;
  margin-right: auto;
}

.section__lede {
  margin: 0;
  font-size: clamp(0.96875rem, 0.28vw + 0.91rem, 1.09375rem);
  color: var(--text-secondary);
  max-width: 38rem;
  line-height: 1.66;
}

.section__tagline {
  margin: clamp(2rem, 4vw, 2.5rem) 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--magenta);
  max-width: 48rem;
  line-height: var(--leading-tight);
}

.section__inner {
  padding-block: var(--space-section-y);
}

.image-placeholder {
  border: 1px dashed rgba(15, 23, 42, 0.28);
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.6), rgba(241, 245, 249, 0.92));
  color: #334155;
  border-radius: var(--radius-md);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.image-placeholder--section {
  margin-top: 1rem;
  padding: 1.1rem 0.9rem;
}

.image-placeholder--card {
  margin: 0.25rem 0 1rem;
  padding: 0.9rem 0.8rem;
}

.section--white {
  background: var(--bg-white);
}

.section--muted {
  background: var(--bg-muted);
}

.section--tight-top .section__inner {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section--form {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  background: linear-gradient(155deg, var(--primary-dark-blue) 0%, #0d4a7a 42%, var(--primary-blue) 100%);
  color: var(--white);
}

/* ——— Hero (ref: large headline + product chips) ——— */
.hero {
  position: relative;
  min-height: min(82vh, 820px);
  margin-top: var(--header-h);
  display: flex;
  align-items: stretch;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: url("./assets/bg-mobile.webp") center right / cover no-repeat;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  /* คงความชัดของภาพต้นฉบับ แต่ยังคุมคอนทราสต์ฝั่งข้อความ */
  background: linear-gradient(
    90deg,
    rgba(7, 15, 32, 0.84) 0%,
    rgba(7, 15, 32, 0.62) 20%,
    rgba(10, 30, 58, 0.34) 40%,
    rgba(15, 45, 78, 0.1) 62%,
    rgba(15, 45, 78, 0.04) 80%,
    rgba(15, 45, 78, 0) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: clamp(2.5rem, 6vw, 4.25rem);
}

.hero__stack {
  width: min(100%, 42rem);
  max-width: 42rem;
  margin-left: 0;
  margin-right: auto;
}

/* Hero scene */
.hero__scene {
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
}

.hero__title--fs {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 2vw + 1.1rem, 3.1rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero__title-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.38rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
}

.hero__lede--fs {
  margin: 0 0 1.35rem;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-dark-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.hero-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero__chips--badges .hero-chip--badge {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(8, 25, 48, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(3px);
  box-shadow: none;
}

.hero__chips--badges .hero-chip--badge:hover {
  transform: none;
  box-shadow: none;
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hero__qualifier {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 769px) {
  .hero__media {
    background-image: url("./assets/bg-tablet.webp");
    background-position: center right;
    background-size: cover;
  }
}

@media (min-width: 1181px) {
  .hero__media {
    background-image: url("./assets/bg-desktop.webp");
    background-position: center right;
    background-size: cover;
  }
}

/* ——— Trust + stats (รวมเซคชัน — เลย์เอาต์คงที่ ไม่พึ่ง aspect-ratio อย่างเดียว) ——— */
.section--trust-stats {
  background: var(--primary-dark-blue);
  border-block: none;
}

.section--trust-stats .section__inner {
  padding-block: clamp(1.25rem, 3.2vw, 1.9rem);
}

.trust-stats__kpis {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto clamp(0.65rem, 2vw, 1rem);
  padding: 0.15rem 0 0.35rem;
  padding-inline-start: 0;
  list-style: none;
  list-style-type: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.trust-stats__kpi {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  min-width: 92px;
  min-height: 92px;
  margin: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.45rem;
  text-align: center;
  list-style: none;
  list-style-type: none;
  background: var(--bg-white);
  border: 2px solid rgba(194, 24, 91, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.trust-stats__value {
  margin: 0 0 0.2rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--magenta);
  line-height: 1.08;
}

.trust-stats__label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  line-height: 1.35;
  max-width: 9.5rem;
}

/* ——— Section 2: About us ——— */
.section--about {
  background: var(--bg-white);
}

.about-us {
  display: grid;
  gap: 1.25rem;
}

.about-us__visual {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.about-us__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #c8a569;
}

.about-us__visual h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 1.3vw + 1rem, 1.95rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--primary-dark-blue);
}

.about-us__photo {
  min-height: 240px;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-us__photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.about-us__content {
  display: grid;
  gap: 0.95rem;
}

.about-us__content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.82;
}

.about-us__lead {
  font-size: clamp(1.06rem, 0.45vw + 0.96rem, 1.2rem);
  font-weight: 600;
  color: var(--primary-dark-blue);
  line-height: 1.74;
  letter-spacing: -0.018em;
}

.about-us__trust-title {
  margin: clamp(0.85rem, 2vw, 1.2rem) 0 0;
  padding-top: clamp(0.85rem, 2vw, 1.15rem);
  border-top: 1px solid var(--border);
  font-size: clamp(0.88rem, 0.28vw + 0.8rem, 0.98rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
}

.about-us__trust-lede {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.62;
}

.about-us__trust-list {
  margin: 0;
  padding: 0 0 0 1.05rem;
  display: grid;
  gap: 0.42rem;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.52;
}

@media (min-width: 480px) {
  .trust-stats__kpi {
    width: 108px;
    height: 108px;
    min-width: 108px;
    min-height: 108px;
    padding: 0.65rem 0.5rem;
  }

  .trust-stats__value {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  }

  .trust-stats__label {
    font-size: 0.68rem;
    max-width: 10.5rem;
  }
}

@media (min-width: 600px) and (max-width: 879px) {
  .trust-stats__kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    overflow: visible;
    padding: 0;
  }

  .trust-stats__kpi {
    width: 100%;
    max-width: 126px;
    height: 126px;
    min-width: 0;
    min-height: 126px;
    margin-inline: auto;
  }

  .trust-stats__value {
    font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  }

  .trust-stats__label {
    font-size: 0.7rem;
  }

}

@media (min-width: 920px) {
  .about-us {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.15fr);
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: start;
  }

  /* จัดให้บล็อกขวาเริ่มต่ำลง ให้สมดุลกับคอลัมน์ซ้าย (ABOUT US + หัวข้อ) */
  .about-us__content {
    padding-top: clamp(2rem, 0.8vw + 1.65rem, 2.85rem);
  }

  .about-us__photo {
    min-height: 320px;
  }
}

/* ——— Product picker (ref: tabs desktop / select mobile) ——— */
.section--products {
  background: linear-gradient(180deg, #f1f5f9 0%, var(--bg-white) 58%);
}

/* แบนด์ OUR SERVICES → Why us: พื้นน้ำเงินแบรนด์ทึบ (พรีเมียม / สถาบันการเงิน non-bank) */
.band-services-why {
  background: var(--primary-dark-blue);
  color: rgba(248, 250, 252, 0.92);
}

.band-services-why .section--products,
.band-services-why .section--why {
  background: transparent;
}

.band-services-why .section__head .eyebrow {
  color: var(--bright-cyan);
}

.band-services-why .section__head h2 {
  color: #f8fafc;
}

.band-services-why .section__lede {
  color: rgba(248, 250, 252, 0.86);
}

.band-services-why .product-picker__mobile-label {
  color: rgba(248, 250, 252, 0.65);
}

.band-services-why .product-tab {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.band-services-why .product-tab:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.band-services-why .product-tab__text {
  color: #f1f5f9;
}

.band-services-why .product-tab__cap {
  color: rgba(241, 245, 249, 0.62);
}

.band-services-why .product-tab__icon {
  color: var(--bright-cyan);
}

.band-services-why .product-tab.is-active {
  background: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.band-services-why .product-tab.is-active .product-tab__text {
  color: var(--primary-dark-blue);
}

.band-services-why .product-tab.is-active .product-tab__cap {
  color: var(--text-muted);
}

.band-services-why .product-tab.is-active .product-tab__icon {
  color: var(--primary-blue);
}

.band-services-why .value-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.band-services-why .value-card__title {
  color: #f8fafc;
}

.band-services-why .value-card__body {
  color: rgba(248, 250, 252, 0.84);
}

.band-services-why .value-card__icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--bright-cyan);
}

/* แท็บคุณสมบัติ / เอกสาร */
.eligibility-tabs {
  margin-top: clamp(2rem, 4.5vw, 3rem);
  max-width: 920px;
  margin-inline: auto;
}

.eligibility-tabs__bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: none;
}

.eligibility-tabs__tab {
  padding: 1rem 1rem;
  font: inherit;
  font-size: clamp(0.9rem, 0.35vw + 0.82rem, 1rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.eligibility-tabs__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.eligibility-tabs__tab.is-active {
  background: #f8fafc;
  color: var(--primary-dark-blue);
}

.eligibility-tabs__panels {
  background: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.35rem 1.45rem 1.3rem;
}

.eligibility-tabs__panel {
  display: none;
}

.eligibility-tabs__panel.is-active {
  display: block;
}

.eligibility-tabs__list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
  color: var(--primary-dark-blue);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.58;
}

.eligibility-tabs__note {
  margin: 1.1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.62;
  color: rgba(248, 250, 252, 0.72);
  text-align: center;
}

.eligibility-tabs [data-cta-line] {
  margin-top: 0.85rem;
}

@media (min-width: 640px) {
  .eligibility-tabs__note {
    text-align: left;
  }
}

.product-picker {
  max-width: 920px;
  margin-inline: auto;
}

.product-picker__mobile {
  margin-bottom: 1rem;
}

.product-picker__mobile-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.product-picker__select-wrap {
  position: relative;
}

.product-picker__select-wrap::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  pointer-events: none;
}

.product-picker__select {
  width: 100%;
  appearance: none;
  padding: 0.95rem 2.5rem 0.95rem 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.product-picker__tabs {
  display: none;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
  scrollbar-width: thin;
}

.product-tab {
  flex: 0 0 auto;
  min-width: 140px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-tab:hover {
  border-color: rgba(19, 90, 158, 0.35);
}

.product-tab.is-active {
  border-color: var(--primary-blue);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.product-tab__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.icon-svg {
  display: block;
  flex-shrink: 0;
}

.product-tab__text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
  line-height: 1.25;
}

.product-tab__cap {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-panels {
  position: relative;
}

.product-panel {
  display: none;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.product-panel.is-active {
  display: block;
  animation: panel-in 0.35s ease;
}

.product-panel__split {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.product-panel__left {
  display: grid;
  gap: 0.85rem;
}

.product-panel__mast {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.product-panel__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--primary-blue);
  background: rgba(19, 90, 158, 0.07);
  border: 1px solid rgba(19, 90, 158, 0.18);
  border-radius: 10px;
}

.product-panel__titles {
  flex: 1;
  min-width: 0;
}

.product-panel__visual {
  margin: 0;
}

.product-panel__visual-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  display: block;
}

.product-panel__right {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.product-panel__right .product-panel__desc {
  margin: 0;
}

.product-panel__right .btn {
  justify-self: start;
}

@media (min-width: 880px) {
  .product-panel__split {
    grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
    gap: clamp(1.65rem, 3.6vw, 2.6rem);
    align-items: stretch;
  }

  .product-panel__visual-img {
    aspect-ratio: 16 / 11;
    min-height: 260px;
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-panel__title {
  margin: 0 0 0.2rem;
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  font-weight: 700;
  color: var(--primary-dark-blue);
}

.product-panel__badge {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--magenta);
}

.product-panel__desc {
  margin: 0 0 1.15rem;
  font-size: 0.9875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.product-specs {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
  margin: 0 0 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
}

.product-specs div {
  display: grid;
  gap: 0.15rem;
}

.product-specs dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-specs dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-tags {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-tags li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.product-panel__fine {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.btn--arrow::after {
  content: " →";
  font-weight: 700;
}

/* ——— Why us ——— */
.section--why {
  background: var(--bg-white);
}

.value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 0.25rem;
}

.value-card {
  margin: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  text-align: center;
}

.value-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--primary-blue);
  background: rgba(19, 90, 158, 0.07);
  border: 1px solid rgba(19, 90, 158, 0.16);
  border-radius: 12px;
}

.value-card__title {
  margin: 0;
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.125rem);
  font-weight: 700;
  color: var(--primary-dark-blue);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.value-card__body {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 26rem;
}

@media (min-width: 900px) {
  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }

  .value-card {
    justify-items: start;
    text-align: left;
    padding: 1.5rem 1.35rem;
  }

  .value-card__body {
    max-width: none;
  }
}

/* ——— Industries split ——— */
.industries-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.industries-split__left .eyebrow {
  margin-bottom: 0.5rem;
}

.industries-split__left h2 {
  margin: 0 0 1rem;
  font-size: var(--heading-section);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.018em;
  color: var(--primary-dark-blue);
}

.industries-split__visual {
  margin-top: 0.25rem;
}

.industries-split__lede {
  max-width: none;
  margin-bottom: 1.25rem;
}

@media (min-width: 920px) {
  .industries-split {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.1fr);
    gap: clamp(1.75rem, 4vw, 2.75rem);
  }

  .industries-split__visual {
    min-height: 220px;
    display: grid;
    place-items: center;
  }
}

/* ——— FAQ ——— */
.section--faq .section__head {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  margin: 0 auto;
  padding: 0;
  max-width: 44rem;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__q {
  margin: 0;
  padding: 1rem 1.15rem;
  cursor: pointer;
  position: relative;
  padding-right: 2.65rem;
  font-size: clamp(0.96875rem, 0.3vw + 0.9rem, 1.0625rem);
  font-weight: 700;
  color: var(--primary-dark-blue);
  line-height: 1.45;
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--primary-blue);
}

.faq-item[open] .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* ——— Industries ——— */
.sector-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.sector-panel {
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.sector-panel--primary {
  border-color: rgba(19, 90, 158, 0.35);
  box-shadow: 0 0 0 1px rgba(19, 90, 158, 0.08), 0 8px 20px rgba(19, 90, 158, 0.12);
}

.sector-panel__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary-dark-blue);
}

.sector-panel__visual {
  margin: 0;
  min-height: 155px;
}

.sector-panel__img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.sector-bottom-note {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: clamp(1.05rem, 0.4vw + 0.98rem, 1.22rem);
  font-weight: 700;
  color: var(--primary-dark-blue);
}

/* ——— Process steps ——— */
.process {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 880px;
}

.process__step {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1.2rem 1.15rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--primary-blue);
  background: rgba(19, 90, 158, 0.07);
  border: 1px solid rgba(19, 90, 158, 0.16);
  border-radius: 10px;
  grid-column: 1;
  grid-row: 1;
}

.process__marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary-blue), var(--primary-dark-blue));
  box-shadow: 0 4px 12px rgba(19, 90, 158, 0.28);
  grid-column: 2;
  grid-row: 1;
}

.process__body {
  grid-column: 3;
  grid-row: 1;
}

.process__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
}

.process__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ——— Form ——— */
.form-shell {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.form-shell__intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.3125rem, 1.2vw + 1rem, 1.875rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--white);
}

.form-shell__lede {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  line-height: 1.6;
}

.form-shell__card {
  margin-top: 1.05rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(2, 12, 27, 0.12);
}

.form-shell__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.form-shell__checklist,
.form-shell__requirements {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.form-shell__checklist li,
.form-shell__requirements li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.96rem;
  color: #334155;
  line-height: 1.55;
}

.form-shell__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1.12rem;
  color: #10b981;
  font-weight: 700;
}

.form-shell__requirements li::before {
  content: "•";
  position: absolute;
  left: 0.25rem;
  top: 0.05em;
  color: var(--primary-blue);
  font-weight: 700;
}

.form-shell__card--line {
  text-align: center;
}

.form-shell__line-logo {
  width: min(190px, 55%);
  margin: 0.5rem auto 0.65rem;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
}

.form-shell__line-text {
  margin: 0 0 0.95rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.form-shell__line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  padding: 0.78rem 1.05rem;
  border-radius: 10px;
  background: #06c755;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.form-shell__line-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.form-shell__small-note {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.line-inline-note-wrap {
  margin-top: 0.95rem;
  text-align: center;
}

.line-inline-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.12);
  color: #c7f9d8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.line-inline-note:hover {
  background: rgba(34, 197, 94, 0.2);
}

.lead-form {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-form__grid {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.field__optional {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.field input,
.field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.field input::placeholder {
  color: #94a3b8;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #94a3b8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(19, 90, 158, 0.15);
  background: var(--bg-white);
}

.lead-form__fineprint {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--primary-dark-blue);
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
  display: grid;
  gap: 2rem 2.5rem;
}

.site-footer__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.15rem, 0.4vw + 1.05rem, 1.38rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.site-footer__brand .site-footer__logo-img {
  width: min(210px, 100%);
  height: auto;
  margin-bottom: 0.65rem;
}

.site-footer__tagline {
  margin: 0;
  font-size: 1rem;
  max-width: 20rem;
  line-height: 1.6;
}

.site-footer__links {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.96rem;
}

.site-footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__k {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__contact p {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.site-footer__hours {
  margin-top: 0.65rem !important;
}

.site-footer__email {
  margin-top: 0.9rem !important;
  margin-bottom: 0.85rem !important;
  font-weight: 600;
  color: #fff;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.site-footer__btn--ghost {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-footer__btn--line {
  color: #fff;
  background: #06c755;
}

.site-footer__btn--line:hover {
  filter: brightness(1.05);
}

/* ——— Motion ——— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Desktop ——— */
@media (min-width: 880px) {
  .navbar__toggle {
    display: none;
  }

  .navbar__menu {
    display: flex !important;
    position: static;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    gap: 0.5rem;
  }

  .navbar__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.15rem 0.25rem;
  }

  .navbar__links a {
    padding: 0.5rem 0.65rem;
    color: var(--text-primary);
  }

  .navbar__links a:hover {
    background: var(--bg-muted);
    color: var(--primary-blue);
  }

  .navbar__actions {
    display: none;
  }

  .navbar__cta-desktop {
    display: inline-flex;
    order: 3;
  }

  .navbar__brand {
    order: 0;
  }

  .trust-stats__kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    justify-items: center;
    align-items: start;
    overflow: visible;
    padding: 0;
  }

  .trust-stats__kpi {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    max-width: 150px;
    margin-inline: auto;
    padding: 0.72rem 0.52rem;
  }

  .trust-stats__value {
    font-size: clamp(1.2rem, 1.15vw, 1.42rem);
  }

  .trust-stats__label {
    font-size: 0.74rem;
    max-width: 9.8rem;
  }

  .hero__inner {
    justify-content: flex-start;
  }

  .hero__stack {
    margin-right: auto;
  }

  .product-picker__mobile {
    display: none;
  }

  .product-picker__tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .product-tab {
    min-width: 150px;
    max-width: 170px;
  }

  .product-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
  }

  .sector-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem 1rem;
    position: relative;
    padding-top: 0.75rem;
    max-width: 1100px;
    margin-inline: auto;
  }

  .process::before {
    content: "";
    position: absolute;
    top: 3.85rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), rgba(19, 90, 158, 0.35), var(--border));
    opacity: 0.55;
    pointer-events: none;
  }

  .process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    border: none;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0 0.35rem 0.5rem;
  }

  .process__icon {
    grid-column: auto;
    grid-row: auto;
  }

  .process__marker {
    grid-column: auto;
    grid-row: auto;
    position: relative;
    z-index: 1;
    margin: 0;
  }

  .process__body {
    grid-column: auto;
    grid-row: auto;
  }

  .process__title {
    font-size: 1.0625rem;
  }

  .form-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem 3rem;
    align-items: stretch;
  }

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

  .field--full {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    align-items: start;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    height: 74px;
  }

  .navbar {
    min-height: 74px;
    gap: 0.75rem;
    width: min(100% - 3.3rem, 1140px);
  }

  .navbar__logo-img {
    height: 40px;
    max-width: 168px;
  }

  .navbar__toggle {
    order: 2;
    margin-left: auto;
    width: 44px;
    height: 44px;
    gap: 4px;
    border-radius: 12px;
  }

  .navbar__toggle.is-open .navbar__toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar__toggle.is-open .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.is-open .navbar__toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .navbar__toggle-bar {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .navbar__actions {
    display: block;
    margin-top: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .navbar__cta-mobile {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding: 0.72rem 1rem;
    border-radius: 10px;
  }

  .hero__media {
    background-position: center right;
  }

  .hero__scene {
    min-height: calc(100vh - 74px + min(38vw, 240px));
    min-height: calc(100svh - 74px + min(38vw, 240px));
    background: url("./assets/bg-mobile.webp") 56% 88% / cover no-repeat;
  }

  .hero__media {
    display: none;
  }

  .hero__inner {
    align-items: flex-start;
    justify-content: center;
    padding-top: 5.6rem;
  }

  .hero__stack {
    width: min(100%, 430px);
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }

  .hero__title--fs {
    font-size: clamp(2.05rem, 7.4vw, 2.85rem);
    line-height: 1.16;
  }

  .hero__lede--fs {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .hero__chips {
    justify-content: center;
  }

  .hero__row {
    justify-content: center;
    gap: 0.55rem;
  }

  .hero__row .btn {
    min-width: 152px;
    padding-inline: 1rem;
  }

  .hero__qualifier {
    text-align: center;
  }

  .navbar__cta-desktop {
    display: none;
  }
}

@media (min-width: 1200px) {
  :root {
    --container: min(100% - 4rem, 1180px);
  }

  .sector-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ——— Performance (Lighthouse): ลดงาน paint ส่วนล่าง (ไม่ใช้กับ hero/stats ใกล้ด้านบน) ——— */
#steps,
#faq,
#lead-form {
  content-visibility: auto;
  contain-intrinsic-size: 1px 560px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .hero__chips--badges .hero-chip--badge {
    backdrop-filter: none;
  }
}
