/* ===========================
   พชร ทุบตึก - Main Stylesheet
   Mobile-first responsive design
   =========================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #1a2744;
  --dark-gray: #333333;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --radius: 8px;
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===========================
   HEADER
   =========================== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(26, 39, 68, 0.97);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}

/* Logo */
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Nav */
nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  z-index: 999;
}

nav.active {
  display: block;
}

nav ul {
  flex-direction: column;
}

nav ul li a {
  display: block;
  padding: 14px 20px;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), color var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(249,115,22,0.15);
  color: var(--orange);
}

/* Header Phone */
.header-phone {
  display: none;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--orange-dark);
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 4px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 60vw;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.82) 0%, rgba(26,39,68,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 40px 16px;
  max-width: 680px;
}

.hero-content h1 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: #223060;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   SECTIONS
   =========================== */
section {
  padding: 52px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

.bg-light {
  background: var(--light-gray);
}

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

.bg-navy .section-title h2 {
  color: var(--white);
}

.bg-navy .section-title p {
  color: rgba(255,255,255,0.8);
}

/* ===========================
   SERVICES GRID
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===========================
   TRUST SIGNALS
   =========================== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
}

.trust-item .icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.9rem;
  color: #555;
}

/* ===========================
   STEPS / PROCESS
   =========================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 0.9rem;
  color: #555;
}

/* ===========================
   PORTFOLIO GRID
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.portfolio-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.portfolio-imgs img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.portfolio-card-body {
  padding: 20px;
}

.portfolio-card-body .badge {
  display: inline-block;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.portfolio-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.portfolio-card-body p {
  font-size: 0.9rem;
  color: #666;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  text-align: center;
  padding: 56px 16px;
}

.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 24px;
  color: var(--white);
}

.cta-phone {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.cta-phone:hover {
  color: #ffa556;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.contact-info-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info-row .ci-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-row .ci-body strong {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info-row .ci-body a,
.contact-info-row .ci-body span {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.contact-info-row .ci-body a {
  color: var(--navy);
  transition: color var(--transition);
}

.contact-info-row .ci-body a:hover {
  color: var(--orange);
}

.contact-info-row .ci-body .phone-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

.qr-box {
  text-align: center;
  margin-top: 10px;
}

.qr-box img {
  border-radius: var(--radius);
  border: 3px solid var(--light-gray);
  margin: 0 auto;
}

.qr-box p {
  font-size: 0.85rem;
  color: #888;
  margin-top: 6px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity var(--transition), transform var(--transition);
}

.social-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.social-link.fb {
  background: #1877F2;
  color: var(--white);
}

/* ===========================
   SAFETY LIST
   =========================== */
.safety-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}

.safety-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.safety-item .s-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.safety-item p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  font-weight: 400;
}

/* ===========================
   LAW BOX
   =========================== */
.law-box {
  background: rgba(26,39,68,0.06);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 22px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.law-box .law-img {
  border-radius: var(--radius);
  margin-bottom: 16px;
  width: 100%;
  max-width: 300px;
}

.law-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.law-box p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
}

/* ===========================
   FREE DEMO BOX
   =========================== */
.free-demo-box {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 22px;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.free-demo-box .badge-free {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.free-demo-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.free-demo-box p {
  font-size: 0.93rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* ===========================
   HERO SMALL (inner pages)
   =========================== */
.hero-small {
  background: linear-gradient(135deg, var(--navy) 0%, #243561 100%);
  padding: 52px 16px 40px;
  text-align: center;
  color: var(--white);
}

.hero-small h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-small p {
  font-size: 0.98rem;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

footer h3, footer h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
}

footer h3 {
  font-size: 1.1rem;
}

footer h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}

footer ul li a:hover {
  color: var(--orange);
}

footer p a {
  color: var(--orange);
  transition: color var(--transition);
}

footer p a:hover {
  color: #ffa556;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   FLOATING CALL BUTTON
   =========================== */
.float-call {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 18px rgba(249,115,22,0.5);
  z-index: 900;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: pulse-call 2.2s infinite;
}

.float-call:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(249,115,22,0.6);
  animation: none;
}

@keyframes pulse-call {
  0%, 100% { box-shadow: 0 4px 18px rgba(249,115,22,0.5); }
  50% { box-shadow: 0 4px 30px rgba(249,115,22,0.75); transform: scale(1.05); }
}

/* ===========================
   404 PAGE
   =========================== */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.page-404 .num-404 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

.page-404 h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.page-404 p {
  font-size: 0.98rem;
  color: #666;
  margin-bottom: 28px;
  max-width: 420px;
}

.page-404 .link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.page-404 .phone-big {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 8px;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  background: var(--light-gray);
  padding: 10px 0;
  font-size: 0.85rem;
  color: #888;
}

.breadcrumb a {
  color: var(--navy);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  margin: 0 6px;
}

/* ===========================
   RESPONSIVE - 768px
   =========================== */
@media (min-width: 768px) {

  #header .container {
    height: 70px;
  }

  .logo img {
    height: 54px;
  }

  nav {
    display: flex !important;
    position: static;
    background: transparent;
    border-top: none;
    flex: 1;
    justify-content: center;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    gap: 4px;
  }

  nav ul li a {
    padding: 8px 16px;
    border-bottom: none;
    border-radius: 4px;
    font-size: 0.95rem;
  }

  nav ul li a:hover,
  nav ul li a.active {
    background: rgba(249,115,22,0.12);
    color: var(--orange);
  }

  .hamburger {
    display: none;
  }

  .header-phone {
    display: block;
  }

  .hero {
    min-height: 440px;
    max-height: 560px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: row;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-small h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.9rem;
  }

  .float-call {
    display: none;
  }
}

/* ===========================
   RESPONSIVE - 1024px
   =========================== */
@media (min-width: 1024px) {

  .hero {
    min-height: 500px;
    max-height: 620px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-imgs img {
    height: 220px;
  }

  section {
    padding: 72px 0;
  }

  .section-title h2 {
    font-size: 2.1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-phone {
    font-size: 2.4rem;
  }
}

/* ===========================
   QUOTE / BLOCKQUOTE
   =========================== */
blockquote.site-quote {
  position: relative;
  background: var(--light-gray);
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 28px 22px 48px;
  margin: 40px 0;
  overflow: hidden;
}

blockquote.site-quote::before {
  content: '\201C';
  font-size: 7rem;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: -18px;
  left: 6px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

blockquote.site-quote p {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.85;
  position: relative;
}

blockquote.site-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.88rem;
  color: #777;
  font-style: normal;
  position: relative;
}

blockquote.site-quote cite::before {
  content: '— ';
}

/* ===========================
   CHECK LIST / BULLET LIST
   =========================== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #e8e8e8;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li .cl-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1px;
}

.check-list.check-navy li .cl-icon {
  background: var(--navy);
}

.check-list.check-green li .cl-icon {
  background: #16a34a;
}

.check-list li .cl-text strong {
  color: var(--navy);
  display: block;
  font-weight: 600;
}

.check-list li .cl-text span {
  color: #555;
  font-size: 0.92rem;
}

/* Simple bullet (no icon) */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
  color: var(--dark-gray);
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ===========================
   HIGHLIGHT BOX
   =========================== */
.highlight-box {
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.highlight-box .hb-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.highlight-box .hb-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.highlight-box .hb-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.highlight-box .hb-body ul {
  margin-top: 8px;
}

.highlight-box.hb-orange {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
}

.highlight-box.hb-orange .hb-body h3 {
  color: #c2410c;
}

.highlight-box.hb-orange .hb-body p,
.highlight-box.hb-orange .hb-body li {
  color: #7c2d12;
}

.highlight-box.hb-navy {
  background: #eef1f8;
  border: 1.5px solid #c7d0e8;
}

.highlight-box.hb-navy .hb-body h3 {
  color: var(--navy);
}

.highlight-box.hb-navy .hb-body p,
.highlight-box.hb-navy .hb-body li {
  color: #1e3a6e;
}

.highlight-box.hb-green {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

.highlight-box.hb-green .hb-body h3 {
  color: #15803d;
}

.highlight-box.hb-green .hb-body p,
.highlight-box.hb-green .hb-body li {
  color: #14532d;
}

.highlight-box.hb-yellow {
  background: #fefce8;
  border: 1.5px solid #fde68a;
}

.highlight-box.hb-yellow .hb-body h3 {
  color: #92400e;
}

.highlight-box.hb-yellow .hb-body p,
.highlight-box.hb-yellow .hb-body li {
  color: #78350f;
}

/* Two-column highlight grid */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }
}
