/* ================================================================
   TRO Service — Landing Page Theme
   ตัวแปรสีและค่าต่างๆ ปรับแต่งได้ใน :root ด้านล่าง
   ================================================================ */
/* ── Design tokens (ปรับแต่งสีธีมได้ที่นี่) ──────────────────── */
:root {
  /* Brand colors */
  --lp-primary: #1a56db;
  /* สีหลัก */
  --lp-primary-dark: #1544b8;
  --lp-primary-light: #e8f0fd;
  --lp-accent: #f97316;
  /* สีเน้น/CTA */
  --lp-accent-dark: #ea6b0c;
  /* Surface */
  --lp-hero-from: #0f1f4a;
  /* Hero gradient เริ่มต้น */
  --lp-hero-to: #1a3875;
  /* Hero gradient ปลาย */
  --lp-alt-bg: #f8faff;
  /* พื้นหลัง section สลับ */
  /* Typography */
  --lp-font: 'Sarabun', 'IBM Plex Sans Thai', sans-serif;
  --lp-heading-weight: 700;
  /* Layout */
  --lp-container: 1200px;
  --lp-header-h: 72px;
  --lp-section-py: 5rem;
  /* Radius */
  --lp-radius-card: 1rem;
  --lp-radius-btn: 9999px;
  /* Shadows */
  --lp-shadow-card: 0 4px 24px rgba(0, 0, 0, .07);
  --lp-shadow-hover: 0 8px 32px rgba(0, 0, 0, .13);
}
/* ================================================================
   BASE UTILITIES
   ================================================================ */
.container {
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
/* ================================================================
   SITE HEADER
   ================================================================ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--lp-header-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}
.site-header .header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--lp-header-h);
}
/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: color 0.2s;
  flex-shrink: 0;
  color: #FFF;
}
.site-header.scrolled .logo-link {
  color: var(--lp-primary);
}
.logo-link img {
  display: inline-block;
  max-height: calc(var(--lp-header-h) - 20px);
  width: auto;
}
/* Top‑nav */
.site-nav {
  margin-inline-start: auto;
}
.site-nav > ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.site-nav a {
  display: block;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.site-header.scrolled .site-nav a {
  color: var(--color-text, #1e293b);
}
.site-nav li:hover > a,
.site-nav li > a.active {
  color: var(--lp-accent) !important;
  background: rgba(249, 115, 22, 0.08) !important;
}
/* Header CTA */
.header-cta {
  flex-shrink: 0;
  background: var(--lp-accent) !important;
  border-color: var(--lp-accent) !important;
  border-radius: var(--lp-radius-btn) !important;
  font-size: 0.9rem;
  padding: 0.45rem 1.1rem;
  white-space: nowrap;
}
/* Mobile toggle — hide on desktop */
.menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    margin-inline-start: auto;
    padding: 0;
  }
  .toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.2s;
  }
  .site-header.scrolled .toggle-bar {
    background: var(--lp-primary);
  }
}
/* ================================================================
   SCROLL PROGRESS (framework hook)
   ================================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--lp-accent);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
/* ================================================================
   HERO SECTION
   ================================================================ */
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--lp-header-h) + 3rem) 5rem;
  color: #fff;
}
/* Gradient background */
.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26, 86, 219, .35) 0%, transparent 70%),
    linear-gradient(135deg, var(--lp-hero-from) 0%, var(--lp-hero-to) 100%);
  z-index: 0;
}
/* Subtle animated pattern overlay */
.lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(249, 115, 22, .12) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}
.lp-hero__content {
  position: relative;
  z-index: 1;
}
/* License badge */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, .18);
  border: 1px solid rgba(249, 115, 22, .4);
  color: #fcd5a8;
  border-radius: var(--lp-radius-btn);
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-block-end: 1.5rem;
  letter-spacing: 0.02em;
}
/* Hero headings */
.lp-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-block-end: 1.25rem;
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}
.lp-hero__title strong {
  color: #fcd34d;
  font-weight: 800;
}
.lp-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 560px;
  color: rgba(255, 255, 255, .82);
  margin-block-end: 2.5rem;
}
/* Hero CTA row */
.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-block-end: 3rem;
}
.lp-hero__cta {
  background: var(--lp-accent) !important;
  border-color: var(--lp-accent) !important;
  border-radius: var(--lp-radius-btn) !important;
  font-size: 1.05rem;
  padding: 0.7rem 1.7rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(249, 115, 22, .4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(249, 115, 22, .5);
}
.lp-hero__secondary {
  background: rgba(255, 255, 255, .12) !important;
  border: 1.5px solid rgba(255, 255, 255, .4) !important;
  border-radius: var(--lp-radius-btn) !important;
  color: #fff !important;
  font-size: 1.05rem;
  padding: 0.7rem 1.7rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.lp-hero__secondary:hover {
  background: rgba(255, 255, 255, .22) !important;
}
/* Trust badges row */
.lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lp-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
}
.lp-trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
/* Scroll-down chevron */
.lp-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .3);
  animation: lp-bounce 2s ease-in-out infinite;
  text-decoration: none;
}
.lp-scroll-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  rotate: 45deg;
  translate: 0 -3px;
}
@keyframes lp-bounce {
  0%, 100% {
    translate: -50% 0;
  }
  50% {
    translate: -50% 10px;
  }
}
@media (max-width: 640px) {
  .lp-hero__title {
    font-size: 2rem;
  }
  .lp-hero__badges {
    gap: 0.6rem;
  }
  .lp-trust-badge {
    font-size: 0.78rem;
    padding: 0.5rem 0.8rem;
  }
}
/* ================================================================
   STATS BAR
   ================================================================ */
.lp-stats {
  background: var(--lp-primary);
  color: #fff;
  padding-block: 2.5rem;
}
.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.lp-stat-item {
  padding: 0.75rem;
  border-inline-end: 1px solid rgba(255, 255, 255, .18);
}
.lp-stat-item:last-child {
  border-inline-end: none;
}
.lp-stat-number {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fcd34d;
}
.lp-stat-label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .75);
  margin-block-start: 0.3rem;
}
@media (max-width: 640px) {
  .lp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-stat-item:nth-child(2),
  .lp-stat-item:nth-child(4) {
    border-inline-end: none;
  }
  .lp-stat-item:nth-child(1),
  .lp-stat-item:nth-child(2) {
    border-block-end: 1px solid rgba(255, 255, 255, .18);
  }
}
/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.lp-section {
  padding-block: var(--lp-section-py);
}
.lp-section--alt {
  background: var(--lp-alt-bg);
}
.lp-section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-block-end: 3.5rem;
}
.lp-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-accent);
  border: 1px solid rgba(249, 115, 22, .25);
  background: rgba(249, 115, 22, .07);
  border-radius: var(--lp-radius-btn);
  padding: 0.25rem 0.9rem;
  margin-block-end: 0.85rem;
}
.lp-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-dark, #1e293b);
  line-height: 1.25;
  margin-block-end: 0.85rem;
}
.lp-section__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted, #64748b);
}
/* ================================================================
   SERVICES GRID
   ================================================================ */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  list-style: none;
}
.lp-service-card {
  background: var(--color-background, #fff);
  border: 1px solid var(--color-border, rgba(0, 0, 0, .08));
  border-radius: var(--lp-radius-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--lp-shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-hover);
}
.lp-service-card--cta {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
  color: #fff;
  border-color: transparent;
}
.lp-service-card--cta .lp-service-card__title,
.lp-service-card--cta .lp-service-card__desc {
  color: rgba(255, 255, 255, .9);
}
.lp-service-card__icon {
  font-size: 2.2rem;
  line-height: 1;
}
.lp-service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark, #1e293b);
}
.lp-service-card__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-muted, #64748b);
  flex: 1;
}
.lp-service-card__link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-primary);
  text-decoration: none;
  margin-block-start: 0.25rem;
  transition: gap 0.2s;
}
.lp-service-card__link:hover {
  color: var(--lp-accent);
}
/* ================================================================
   FEATURES GRID (Why us)
   ================================================================ */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.lp-feature {
  background: #fff;
  border-radius: var(--lp-radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--lp-shadow-card);
  border: 1px solid var(--color-border, rgba(0, 0, 0, .06));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-hover);
}
.lp-feature__icon {
  font-size: 2rem;
  line-height: 1;
  margin-block-end: 0.9rem;
  display: inline-block;
  background: var(--lp-primary-light);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
}
.lp-feature__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark, #1e293b);
  margin-block-end: 0.5rem;
}
.lp-feature__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-muted, #64748b);
}
/* ================================================================
   PROCESS STEPS
   ================================================================ */
.lp-process {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  list-style: none;
  counter-reset: none;
  position: relative;
  margin-block-end: 3rem;
}
/* Connecting line between steps */
.lp-process::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 3.5rem;
  right: 3.5rem;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--lp-primary) 0px,
      var(--lp-primary) 12px,
      transparent 12px,
      transparent 20px);
  z-index: 0;
  opacity: 0.25;
}
.lp-process__step {
  position: relative;
  z-index: 1;
  background: var(--color-background, #fff);
  border-radius: var(--lp-radius-card);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--lp-shadow-card);
  border: 1px solid var(--color-border, rgba(0, 0, 0, .07));
  text-align: center;
  transition: transform 0.25s ease;
}
.lp-process__step:hover {
  transform: translateY(-3px);
}
.lp-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-block-end: 1rem;
  box-shadow: 0 4px 12px rgba(26, 86, 219, .35);
}
.lp-process__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark, #1e293b);
  margin-block-end: 0.5rem;
}
.lp-process__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-muted, #64748b);
}
.lp-process__cta {
  text-align: center;
}
@media (max-width: 640px) {
  .lp-process::before {
    display: none;
  }
  .lp-process {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* ================================================================
   CTA BAND
   ================================================================ */
.lp-cta-band {
  background: linear-gradient(135deg, var(--lp-hero-from) 0%, var(--lp-hero-to) 100%);
  color: #fff;
  padding-block: 4rem;
}
.lp-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.lp-cta-band__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-block-end: 0.4rem;
}
.lp-cta-band__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
}
.lp-cta-band__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.lp-cta-band .btn-primary {
  background: var(--lp-accent) !important;
  border-color: var(--lp-accent) !important;
  border-radius: var(--lp-radius-btn) !important;
  font-size: 1.05rem;
  padding: 0.7rem 1.7rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(249, 115, 22, .4);
}
.lp-cta-band__map-btn {
  background: rgba(255, 255, 255, .12) !important;
  border: 1.5px solid rgba(255, 255, 255, .4) !important;
  border-radius: var(--lp-radius-btn) !important;
  color: #fff !important;
  font-weight: 600;
}
.lp-cta-band__map-btn:hover {
  background: rgba(255, 255, 255, .22) !important;
}
@media (max-width: 680px) {
  .lp-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .lp-cta-band__actions {
    justify-content: center;
  }
}
/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.lp-faq-wrap {
  max-width: 760px;
}
.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lp-faq__item {
  background: #fff;
  border: 1px solid var(--color-border, rgba(0, 0, 0, .08));
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
  transition: box-shadow 0.2s;
}
.lp-faq__item.open {
  box-shadow: var(--lp-shadow-card);
}
.lp-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark, #1e293b);
  text-align: start;
  transition: color 0.2s;
}
.lp-faq__item.open .lp-faq__toggle {
  color: var(--lp-primary);
}
.lp-faq__arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  rotate: 45deg;
  flex-shrink: 0;
  transition: rotate 0.25s ease;
  translate: 0 -2px;
}
.lp-faq__item.open .lp-faq__arrow {
  rotate: 225deg;
  translate: 0 2px;
}
.lp-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.lp-faq__item.open .lp-faq__answer {
  grid-template-rows: 1fr;
}
.lp-faq__answer > * {
  overflow: hidden;
}
/* When answer is not a wrapping div we fall back to max-height */
.lp-faq dd.lp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding-inline: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted, #64748b);
}
.lp-faq__item.open dd.lp-faq__answer {
  max-height: 400px;
  padding-block-end: 1.25rem;
}
/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--lp-hero-from);
  color: rgba(255, 255, 255, .8);
  padding-block: 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block-end: 3rem;
  border-block-end: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo img {
  width: auto;
  max-height: 60px;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .55);
  max-width: 240px;
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-block-end: 1rem;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-style: normal;
  font-size: 0.88rem;
}
.footer-address p,
.footer-address a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  transition: color 0.2s;
}
.footer-address a:hover {
  color: #fff;
}
.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  padding: 0;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(255, 255, 255, .7);
}
.footer-hours li.closed span:last-child {
  color: #f87171;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color 0.2s, padding-inline-start 0.2s;
}
.footer-links a:hover {
  color: #fff;
  padding-inline-start: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-credit {
  color: rgba(255, 255, 255, .35);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: unset;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* ================================================================
   SHARED BUTTON SIZE helpers
   ================================================================ */
.btn-lg {
  padding: 0.7rem 1.7rem;
  font-size: 1.05rem;
}
/* ================================================================
   SCROLL REVEAL  (framework hook — .revealed added by ScrollManager)
   ================================================================ */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children when parent is marked */
.lp-services-grid .lp-service-card[data-scroll-reveal]:nth-child(2),
.lp-features-grid .lp-feature[data-scroll-reveal]:nth-child(2),
.lp-process .lp-process__step[data-scroll-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}
.lp-services-grid .lp-service-card[data-scroll-reveal]:nth-child(3),
.lp-features-grid .lp-feature[data-scroll-reveal]:nth-child(3),
.lp-process .lp-process__step[data-scroll-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}
.lp-services-grid .lp-service-card[data-scroll-reveal]:nth-child(4),
.lp-features-grid .lp-feature[data-scroll-reveal]:nth-child(4),
.lp-process .lp-process__step[data-scroll-reveal]:nth-child(4) {
  transition-delay: 0.3s;
}
.lp-services-grid .lp-service-card[data-scroll-reveal]:nth-child(5),
.lp-features-grid .lp-feature[data-scroll-reveal]:nth-child(5) {
  transition-delay: 0.4s;
}
.lp-services-grid .lp-service-card[data-scroll-reveal]:nth-child(6),
.lp-features-grid .lp-feature[data-scroll-reveal]:nth-child(6) {
  transition-delay: 0.5s;
}
/* Trust badges stagger */
.lp-trust-badge[data-scroll-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}
.lp-trust-badge[data-scroll-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}
.lp-trust-badge[data-scroll-reveal]:nth-child(4) {
  transition-delay: 0.3s;
}
/* ================================================================
   404 ERROR PAGE
   ================================================================ */
.error-page-section {
  min-height: calc(100svh - var(--lp-header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-alt-bg);
  padding-block: var(--lp-header-h);
}
.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}
/* Illustration */
.error-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.error-number {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  user-select: none;
}
/* Text block */
.error-message h1 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: var(--lp-heading-weight);
  color: var(--color-text, #1e293b);
  margin-block: 0 0.75rem;
}
.error-description {
  font-size: 1.05rem;
  color: var(--color-muted, #64748b);
  margin-block: 0 0.5rem;
}
.error-hint {
  font-size: 0.9rem;
  color: var(--color-muted, #94a3b8);
  margin-block: 0 1.75rem;
}
/* Action button */
.error-message .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 1.5rem;
}
/* Responsive */
@media (max-width: 480px) {
  .error-number {
    font-size: 7rem;
  }
  .error-books {
    font-size: 2.8rem;
  }
}