@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root {
  --color-black: #111111;
  --color-white: #ffffff;
  --color-text: #1d1d1d;
  --color-muted: #6f6a64;
  --color-muted-orange: #c7652f;
  --color-copper: #a9572c;
  --color-border: rgba(17, 17, 17, 0.12);
  --color-surface: #1d1d1d;
  --container: 1200px;
  --radius-md: 5px;
  --radius-lg: 0;
  --header-height: 78px;
  --section-title-size: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: "Manrope", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  font-size: 16px;
  /* line-height: 1.6; */
}
button, input, select, option{
  font-family: "Manrope", Arial, sans-serif;
}
main{
  margin-top: 70px;
}
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  width: 100px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-link {
  min-height: var(--header-height);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: var(--color-muted-orange);
}

.nav-link [data-lucide] {
  width: 15px;
  height: 15px;
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  width: 230px;
  display: grid;
  gap: 4px;
  padding: 8px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 10px;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.submenu a:hover {
  background: rgba(199, 101, 47, 0.08);
  color: var(--color-muted-orange);
}

.header-actions {
  display: flex;
  align-items: center;
}

.phone-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 50px;
  background: var(--color-muted-orange);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.phone-button:hover {
  background: var(--color-copper);
}

[data-lucide] {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.intro-section {
  padding: 44px 0 0;
  background-image: url('/wp-content/uploads/2026/06/Bg-giaiphap03.png') !important;
  background-size: cover;
  background-repeat: no-repeat;
}
.system-section {
  padding: 70px 0 0;
    background-image: url('/wp-content/uploads/2026/06/Bg-giaiphap03.png') !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.intro-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.intro-media {
  margin: 0;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.intro-content {
  display: grid;
  gap: 18px;
}

.intro-content p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
}

.intro-content strong {
  color: var(--color-muted-orange);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  overflow: hidden;
  border-radius: 5px;
}

.stat-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  background: #1d1d1d;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--color-border);
}

.stat-item strong {
  color: var(--color-muted-orange);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.stat-item span {
  color: ghostwhite;
  font-size: 16px;
  font-weight: 500;
}

.pain-section {
  padding: 66px 0 0;
}

.pain-section h2 {
  max-width: 820px;
  margin: 0 auto 34px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.18;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pain-card {
  min-height: 340px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.pain-card span {
  color: var(--color-muted-orange);
  font-size: 33px;
  font-weight: 900;
}

.pain-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.pain-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.pain-statement {
  width: fit-content;
  max-width: min(720px, 100%);
  margin: 28px auto 0;
  padding: 14px 24px;
  border: 1px solid rgba(199, 101, 47, 0.34);
  border-radius: 5px;
  background: rgba(199, 101, 47, 0.08);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.system-section {
  padding: 70px 0 0;
    background-image: url('/wp-content/uploads/2026/06/bg-gioithieu.png') !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.system-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.system-heading h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-align: center;
}

.system-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}

.system-flow span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  font-size: 20px;
  font-weight: 600;
}

.system-flow [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--color-muted-orange);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.system-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.system-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.35;
}

.system-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.system-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-card li {
  position: relative;
  padding-left: 16px;
  color: var(--color-text);
  font-size: 16px;
}

.system-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-muted-orange);
}

.services-section {
  padding: 76px 0 0;
}

.services-section h2 {
  margin: 0 0 34px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: grid;
  gap: 18px;
  align-content: start;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.service-card h3 {
  margin: 0;
  padding: 0 10px 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.service-card h3 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-card h3 a:hover {
  color: var(--color-muted-orange);
}

.service-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-muted-orange);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services-hero-section {
  padding: 0;
  background: #fff;
}

.services-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 10 / 5;
  border: 0;
  border-radius: 0;
  background: var(--color-surface);
}

/* .services-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.16), rgba(17, 17, 17, 0.56));
} */

.services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-media figcaption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 40px;
  color: #fff;
  text-align: center;
}

.services-hero-media h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.18;
}

.services-hero-media p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.services-overview-section {
  padding: 0 0 76px;
  background: #fff;
}

.services-overview-card {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: -48px auto 0;
  padding: 30px 36px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.1);
}

.services-overview-card h2 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}

.services-overview-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
}

.services-overview-card strong {
  font-weight: 800;
}

.service-groups-section {
  padding: 0 0 76px;
  background: #fff;
}

.service-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
}

.service-group + .service-group {
  margin-top: 60px;
}

.service-group.is-reversed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-group.is-reversed .service-group-media {
  order: 2;
}

.service-group.is-reversed .service-group-content {
  order: 1;
}

.service-group-media {
  width: 100%;
}

.service-group-content {
  max-width: 440px;
  justify-self: center;
  text-align: center;
}

.service-group-content h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(23px, 2.4vw, 2 px);
  line-height: 1.22;
}

.service-group-content p {
  margin: 12px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
}

.service-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: 5px;
  background: #fff;
}

.service-group-item {
  position: relative;
  min-height: 160px;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 0.68;
  background: #f4f1ee;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 180ms ease;
}

.service-group-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.62));
}

.service-group-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-group-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
}

.service-group-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 22px;
  padding: 12px 22px;
  border: 1px solid var(--color-copper);
  border-radius: 5px;
  background: var(--color-copper);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-group-button:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: #fff;
}

.service-detail-intro-section {
  padding: 0 0 76px;
  background: #fff;
}

.service-detail-copy p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
}

.service-detail-copy p + p {
  margin-top: 24px;
}

.service-topic-banner {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 22px 0;
  min-height: 495px;
  aspect-ratio: 16 / 7.8;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: var(--color-surface);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .service-topic-banner {
    min-height: 380px;
    aspect-ratio: 16 / 6.5;
  }
}

@media (max-width: 768px) {
  .service-topic-banner {
    min-height: 280px;
    aspect-ratio: 16 / 8;
  }
}

.service-topic-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.service-topic-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-topic-banner span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 32px;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}


.services-cta-section {
  padding: 0 0 76px;
  background: #fff;
}

.services-cta-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 38px 28px;
  border-radius: 5px;
  background: var(--color-surface);
  color: #fff;
  text-align: center;
}

.services-cta-panel h2 {
  margin: 0;
  color: var(--color-muted-orange);
  font-size: var(--section-title-size);
  line-height: 1.2;
}

.services-cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.services-cta-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 6px;
  padding: 0 22px;
  border-radius: 5px;
  background: var(--color-muted-orange);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.services-cta-button:hover {
  background: var(--color-copper);
}

.services-cta-button [data-lucide] {
  width: 19px;
  height: 19px;
}

.process-section {
  padding: 76px 0 0;
}

.process-section h2 {
  margin: 0 0 42px;
  text-align: center;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-transform: uppercase;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
  margin-top: 10px;
}

.process-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-muted-orange);
  color: #fff;
}

.process-icon [data-lucide] {
  width: 34px;
  height: 34px;
}

.process-step h3 {
  width: min(180px, 100%);
  display: grid;
  place-items: center;
  margin: 0;
  padding: 10px 5px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.35;
  text-wrap: balance;
}

.process-arrow {
  display: none;
}

@media (min-width: 901px) {
  .process-track {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  }

  .process-arrow {
    display: block;
    width: 26px;
    height: 26px;
    margin-top: 43px;
    color: var(--color-text);
  }
}

.benefits-section {
  padding: 64px 0 0;
}

.benefits-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.benefits-heading h2 {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
}

.benefits-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.benefits-layout {
  display: block;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
}

.benefit-card [data-lucide] {
  width: 30px;
  height: 30px;
  color: var(--color-muted-orange);
}

.benefit-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.35;
}

.benefit-card p {
  margin: 0;
  color: var(--color-muted) !important;
  font-size: 16px;
  line-height: 1.5;
}

.projects-section {
  padding: 76px 0 0;
}

.projects-section h2 {
  margin: 0 0 28px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-align: center;
}

.projects-carousel {
  position: relative;
}

.projects-slider {
  padding: 0 0 42px;
}

.projects-slider .swiper-slide {
  overflow: hidden;
  aspect-ratio: 6 / 5;
  border-radius: 5px;
  background: var(--color-muted-orange);
}

.projects-slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.projects-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
  cursor: pointer;
}

.projects-nav:hover {
  background: var(--color-muted-orange);
  color: #fff;
}

.projects-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.projects-next {
  right: 0;
  transform: translate(50%, -50%);
}

.projects-nav [data-lucide] {
  width: 18px;
  height: 18px;
}

.projects-pagination.swiper-pagination {
  bottom: 0;
}

.projects-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(17, 17, 17, 0.18);
  opacity: 1;
}

.projects-pagination .swiper-pagination-bullet-active {
  background: var(--color-muted-orange);
}

.testimonials-section {
  padding: 76px 0 0;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.testimonials-media {
  width: 100%;
  min-width: 0;
  max-width: 520px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
}

.testimonials-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-content {
  width: 100%;
  min-width: 0;
  display: grid;
  align-content: center;
}

.testimonials-content h2 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-wrap: balance;
}

.testimonials-carousel {
  position: relative;
  min-width: 0;
}

.testimonials-slider {
  width: 100%;
  padding: 0 44px 40px;
}

.testimonial-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  border-radius: 5px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-person img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 5px;
}

.testimonial-person h3 {
  margin: 0 0 4px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.25;
}

.testimonial-person p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  color: var(--color-muted-orange);
}

.testimonial-stars [data-lucide] {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
}

.testimonials-pagination.swiper-pagination {
  bottom: 0;
  text-align: center;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--color-muted-orange);
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
  cursor: pointer;
}

.testimonials-nav:hover {
  background: var(--color-muted-orange);
  color: #fff;
}

.testimonials-prev {
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}

.testimonials-next {
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 50px;
}

.testimonials-nav [data-lucide] {
  width: 18px;
  height: 18px;
}

.consultation-section {
  padding: 76px 0 0;
}

.consultation-section h2 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.consultation-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
}

.consultation-form h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  align-items: end;
}

.form-grid span,
.budget-group legend {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
}

.form-grid em {
  color: #c71919;
  font-style: normal;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 38px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1.3px solid rgb(236, 235, 235);
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  outline: none;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--color-muted-orange);
}

.budget-group {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.budget-options label {
  cursor: pointer;
}

.budget-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form-column label{
  margin: 10px 0px;
}
.budget-options span.wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  margin: 0px !important;
  border-radius: 5px;
}

.budget-options input + span {
  padding: 10px;
  border-radius: 5px;
}
.budget-options input:checked + span {
  border-color: var(--color-muted-orange);
  background: var(--color-muted-orange);
  color: #fff;
}
.budget-options .wpcf7-form-control.wpcf7-radio{
  display: flex !important;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-form-column .wpcf7-not-valid{
  border-bottom-color: #e53935 !important;
}
.consultation-submit {
  width: fit-content;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid var(--color-text);
  border-radius: 5px;
  background: var(--color-text);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.consultation-submit:hover {
  border-color: var(--color-muted-orange);
  background: var(--color-muted-orange);
}

.consultation-media {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}

.consultation-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.about-hero-section {
  padding: 25px 0 76px;
  background: #fff;
}

.about-hero-section h1 {
  margin: 0 0 28px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-align: center;
}

.about-hero-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-section {
  padding: 76px 0;
  background: var(--color-surface);
  color: #fff;
}

.about-intro-section h2 {
  margin: 0 0 18px;
  color: var(--color-muted-orange);
  font-size: var(--section-title-size);
  line-height: 1.2;
}

.about-intro-section p {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.about-intro-section p + p {
  margin-top: 12px;
}

.about-intro-section strong {
  color: var(--color-muted-orange);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.about-proof-grid article {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 5px;
}

.about-proof-grid a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.about-proof-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 220ms ease;
}

.vision-section {
  padding: 76px 0;
  background: #fff;
}

.vision-section h2 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 25px;
  align-items: center;
}

.vision-content {
  display: grid;
  gap: 28px;
}

.vision-content h3 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.25;
}

.vision-content p {
  max-width: 680px;
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
}

.vision-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
}

.vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-commitments {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.vision-commitments p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.5;
}

.vision-commitments strong {
  color: var(--color-muted-orange);
}

.core-values-section {
  padding: 76px 0;
  background: var(--color-surface);
  color: #fff;
}

.core-values-section h2 {
  margin: 0 0 34px;
  color: var(--color-muted-orange);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-align: center;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  counter-reset: core-value;
}

.core-value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  counter-increment: core-value;
}

.core-value-card::before {
  content: "0" counter(core-value);
  color: white;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.core-value-card h3 {
  margin: 0;
  color: var(--color-muted-orange);
  font-size: 25px;
  line-height: 1.25;
}

.core-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
}

.brand-scope-section {
  padding: 76px 0;
  background: #fff;
}

.brand-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.operation-block,
.positioning-block {
  display: grid;
}

.operation-block h2,
.positioning-block h2 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
}

.operation-block p,
.positioning-block p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.operation-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.operation-block li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.operation-block li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--color-muted-orange);
  font-weight: 800;
}

.positioning-block figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
}

.positioning-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-section {
  padding: 76px 0;
  background: var(--color-surface);
  color: #fff;
}

.why-choose-section h2 {
  margin: 0 0 50px;
  color: var(--color-muted-orange);
  font-size: var(--section-title-size);
  line-height: 1.2;
  text-align: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.why-choose-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 5px;
}

.why-choose-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: -21px auto 2px;
  border-radius: 50%;
  background: var(--color-muted-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.why-choose-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
  text-transform: capitalize;
}

.why-choose-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
  text-align: justify;
}

.intro-section,
.pain-section,
.system-section,
.services-section,
.process-section,
.benefits-section,
.testimonials-section,
.consultation-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.projects-section {
  padding-top: 76px;
  padding-bottom: 24px;
}

.intro-section,
.system-section,
.process-section,
.projects-section,
.consultation-section {
  background: #fff;
}

.pain-section,
.services-section,
.benefits-section,
.testimonials-section {
  background: var(--color-surface);
}

.pain-section,
.services-section,
.benefits-section,
.testimonials-section {
  color: #fff;
}

.pain-section h2,
.services-section h2,
.benefits-section h2,
.testimonials-section h2 {
  color: var(--color-muted-orange);
}

.benefits-section p {
  color: #fff;
}

.pain-section .pain-card,
.services-section .service-card,
.benefits-section .benefit-card,
.testimonials-section .testimonial-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: #fff;
}

.pain-section .pain-statement {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 5px;
}

.about-benefits-section {
  background: #fff;
  color: var(--color-text);
}

.about-benefits-section .benefits-heading h2 {
  color: var(--color-text);
}

.about-benefits-section .benefits-heading p,
.about-benefits-section .benefit-card p {
  color: var(--color-muted);
}

.about-benefits-section .benefit-card {
  border-color: var(--color-border);
  background: #fff;
}

.people-culture-section {
  padding-bottom: 20px;
  background: #fff;
}

.people-culture-heading {
  max-width: 980px;
  margin-bottom: 28px;
}

.people-culture-heading h2 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  line-height: 1.2;
}

.people-culture-heading p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.culture-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.culture-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.25;
}

.culture-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 250px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
  background: #f4f1ee;
  color: #fff;
  text-decoration: none;
  cursor: zoom-in;
  border-radius: 5px;
}

.culture-stack {
  display: grid;
  gap: 12px;
}

.culture-stack .culture-media {
  min-height: 0;
  border-radius: 5px;
  aspect-ratio: 16 / 9;
}

.culture-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.55));
}

.culture-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 220ms ease;
}
.culture-media span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  max-width: 260px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.factory-culture-layout {
  display: grid;
  gap: 12px;
}

.factory-feature {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.culture-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.culture-thumbs a {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
  background: #f4f1ee;
  cursor: zoom-in;
  border-radius: 5px;
}

.culture-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.legal-section {
  padding: 76px 0;
  background: var(--color-surface);
  color: #fff;
}

.legal-section h2 {
  margin: 0 0 28px;
  color: var(--color-muted-orange);
  font-size: var(--section-title-size);
  line-height: 1.2;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 38px;
  align-items: center;
}

.legal-info {
  display: block;
}

.legal-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.legal-info p + p {
  margin-top: 8px;
}

.legal-info strong {
  color: #fff;
  font-weight: 800;
}

.legal-certificate {
  width: min(320px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #fff;
}

.legal-certificate a {
  display: block;
  cursor: zoom-in;
}

.legal-certificate img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.intro-section {
  padding-top: 56px;
}

.site-footer {
  padding: 54px 0 22px;
  background: var(--color-text);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(150px, 0.62fr) minmax(0, 1fr);
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px;
}

.footer-logo img {
  width: 86px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-contact [data-lucide] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--color-muted-orange);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-fanpage {
  width: 100%;
  max-width: 340px;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.footer-fanpage img {
  width: 100%;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-muted-orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.16);
  text-decoration: none;
}

.back-to-top:hover {
  background: var(--color-copper);
}

.back-to-top [data-lucide] {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero-media {
    aspect-ratio: 16 / 10;
  }

  .service-group,
  .service-group.is-reversed {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-group + .service-group {
    margin-top: 44px;
  }

  .service-group .service-group-content,
  .service-group.is-reversed .service-group-content {
    order: 1;
    justify-self: center;
    max-width: 680px;
  }

  .service-group .service-group-media,
  .service-group.is-reversed .service-group-media {
    order: 2;
  }

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

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

  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .consultation-media {
    order: -1;
  }

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

  .vision-layout {
    grid-template-columns: 1fr;
  }

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

  .brand-scope-grid {
    grid-template-columns: 1fr;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

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

@media (max-width: 560px) {
  :root {
    --section-title-size: 24px;
  }

  .intro-section,
  .pain-section,
  .system-section,
  .services-section,
  .process-section,
  .benefits-section,
  .testimonials-section,
  .consultation-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .projects-section {
    padding-top: 52px;
    padding-bottom: 12px;
  }

  .benefits-section {
    padding-top: 52px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding-top: 52px;
  }

  .services-hero-section {
    padding-top: 0;
  }

  .services-hero-media {
    aspect-ratio: unset;
  }

  .services-hero-media figcaption {
    padding: 24px;
  }

  .services-hero-media h1 {
    font-size: 32px;
  }

  .services-hero-media p {
    font-size: 16px;
  }

  .services-overview-section {
    padding-bottom: 52px;
  }

  .services-overview-card {
    margin-top: 20px;
    padding: 24px 20px;
  }

  .service-groups-section {
    padding-bottom: 52px;
  }

  .service-group + .service-group {
    margin-top: 36px;
  }

  .service-group-content h2 {
    font-size: 24px;
  }

  .service-group-content p {
    font-size: 15px;
  }

  .service-group-grid {
    gap: 10px;
    padding: 0px;
  }

  .service-group-item {
    min-height: unset;
    font-size: 13px;
    aspect-ratio: 1/1;
  }

  .service-detail-intro-section {
    padding-bottom: 52px;
  }

  .service-topic-banner {
    min-height: 230px;
    aspect-ratio: 4 / 3;
    margin: 18px 0;
  }

  .service-topic-banner span {
    padding: 22px;
    font-size: 26px;
  }

  .services-cta-section {
    padding-bottom: 52px;
  }

  .services-cta-panel {
    padding: 30px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .projects-section {
    padding-top: 52px;
  }

  .projects-slider {
    padding: 0 0 38px;
  }

  .projects-nav {
    display: none;
  }

  .testimonials-section {
    padding-top: 52px;
  }

  .testimonial-card {
    min-height: 280px;
    padding: 20px;
  }

  .testimonials-slider {
    padding: 0 0 40px;
  }

  .testimonials-nav {
    display: none;
  }

  .consultation-section {
    padding-top: 52px;
  }

  .consultation-section h2 {
    font-size: 24px;
  }

  .consultation-form {
    padding: 20px;
  }

  .form-grid label {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .consultation-media img {
    min-height: 320px;
  }

  .about-hero-section,
  .about-intro-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-hero-image {
    aspect-ratio: 16 / 10;
  }

  .about-proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .vision-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .vision-layout {
    gap: 24px;
  }

  .vision-commitments p {
    font-size: 15px;
  }

  .core-values-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .core-value-card h3 {
    min-height: 0;
    font-size: 17px;
  }
  .core-value-card::before{
    font-size: 30px;
  }

  .core-value-card p {
    max-width: none;
  }

  .brand-scope-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .people-culture-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .culture-media {
    min-height: 210px;
  }

  .culture-stack .culture-media,
  .factory-feature {
    min-height: 0;
  }

  .culture-thumbs {
    gap: 10px;
  }

  .legal-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .brand-scope-grid {
    gap: 16px;
  }

  .why-choose-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid article {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .benefit-card {
    min-height: 144px;
  }
}

@media (max-width: 900px) {
  .intro-panel {
    grid-template-columns: 1fr;
  }

  .intro-media {
    max-width: 100%;
  }

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

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

  .system-heading {
    display: grid;
  }

  .system-flow {
    flex-wrap: wrap;
    gap: 3px;
  }

  .system-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item + .stat-item {
    border-left: 0;
  }

  .stat-item:nth-child(even) {
    border-left: 1px solid var(--color-border);
  }

  .stat-item:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 560px) {
  .intro-section {
    padding-top: 28px;
  }

  .intro-panel {
    padding: 18px;
    gap: 22px;
  }

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

  .stat-item {
    justify-content: flex-start;
  }

  .stat-item:nth-child(even) {
    border-left: 0;
  }

  .stat-item + .stat-item {
    border-top: 1px solid var(--color-border);
  }

  .pain-section {
    padding-top: 48px;
  }

  .pain-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
.pain-card h3{
  line-height: unset;
  font-size: 12px;
}
.pain-card img{
  min-height: unset;
}
  .pain-card {
    min-height: auto;
    padding: 10px;
  }

  .pain-statement {
    border-radius: var(--radius-lg);
    font-size: 16px;
  }

  .system-section {
    padding-top: 52px;
  }

  .system-flow span {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .system-card {
    min-height: auto;
  }

  .process-section {
    padding-top: 52px;
  }

  .process-section h2 {
    margin-bottom: 28px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-step {
    justify-items: stretch;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 16px;
    text-align: left;
    margin-top: 0px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
  }

  .process-icon [data-lucide] {
    width: 26px;
    height: 26px;
  }

  .process-step h3 {
    width: 100%;
    min-height: 58px;
    justify-items: start;
    text-align: left;
    padding: 10px 20px;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
  }

  .header-actions .phone-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 49;
    display: block;
    padding: 5px 20px;
    background: #fff;
    border-top: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu nav {
    width: min(520px, 100%);
    display: grid;
    gap: 0;
    margin-inline: auto;
  }

  .mobile-menu nav a,
  .mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
  }

  .mobile-submenu-toggle [data-lucide] {
    width: 18px;
    height: 18px;
  }

  .mobile-submenu {
    display: none;
    padding: 6px 0 10px 14px;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-nav-group.is-open .mobile-submenu {
    display: grid;
  }

  .mobile-submenu a {
    padding: 7px 0;
    border-bottom: 0;
    color: var(--color-muted);
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-phone {
    width: min(520px, 100%);
    margin: 24px auto 0;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-logo img {
    width: 62px;
  }

  .header-actions .phone-button {
    min-height: 38px;
    gap: 6px;
    padding: 0 10px;
    font-size: 13px;
  }

  .header-actions .phone-button [data-lucide] {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

}

.single-service-hero {
  width: 100%;
  background: #fff;
}

.single-service-hero img {
  width: 100%;
  object-fit: cover;
}

.single-service-section {
  padding: 30px 0px;
  background: #fff;
}

.single-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(220px, 2fr);
  gap: 34px;
  align-items: start;
}

.single-service-content {
  min-width: 0;
}
.service-article-block{
  margin-top: 15px;
}
.service-article-block + .service-article-block {
  padding-top: 4px;
}

.service-article-block h1,
.service-article-block h2 {
  color: var(--color-black);
  font-size: clamp(22px, 2.1vw, 30px);
  margin-bottom: 15px;
}

.service-article-block p {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.service-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.service-benefit-card {
  min-height: 178px;
  padding: 20px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
}

.service-benefit-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.service-benefit-title span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--color-muted-orange);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-benefit-title span [data-lucide] {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.service-benefit-title h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.35;
}

.service-benefit-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.65;
  text-align: justify;
}

.service-note-arrow {
  padding: 16px 54px 16px 18px;
  background: #fff;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 10px;
  width: max-content;
  margin: auto;
  margin-top: 20px;
  font-weight: bold;
}
.service-content-image {
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background: #f5f5f5;
}

.service-content-image img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}

.service-process-detail {
  padding-top: 4px;
}

.service-process-detail h2 {
  margin: 0 0 14px;
  color: var(--color-black);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.25;
  text-align: left;
  margin-top: 20px;
}

.service-process-visual {
  margin: 0 0 18px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
  background: #f5f5f5;
}

.service-process-visual img {
  width: 100%;
  height: clamp(150px, 19vw, 230px);
  object-fit: cover;
}

.service-process-detail > p {
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.service-process-list {
  display: grid;
  gap: 10px;
}

.service-process-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
  background: #fff;
}

.service-process-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-muted-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.service-process-item h3 {
  margin: 0 0 8px;
  color: var(--color-black);
  font-size: 17px;
  line-height: 1.35;
}

.service-process-item p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

.service-why-projects {
  padding-top: 36px;
}

.service-why-block h2,
.service-completed-projects h2 {
  margin: 0 0 14px;
  color: var(--color-black);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.25;
}

.service-why-block p {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
  text-align: justify;
}

.service-why-visual {
  margin: 0;
  overflow: hidden;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
  background: #111;
}

.service-why-visual img {
  width: 100%;
  object-fit: cover;
}

.service-completed-projects {
  padding-top: 34px;
}

.service-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-project-card {
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.service-project-media {
  position: relative;
  display: block;
  min-height: 160px;
  color: var(--color-muted-orange);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.service-project-media span {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  z-index: 1;
}

.service-project-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-project-body {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 12px;
  border-top: 1px solid var(--color-border);
}

.service-project-body h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service-project-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-pricing-section {
  padding-top: 40px;
}

.service-pricing-section h2,
.service-price-table-section h2 {
  margin: 0 0 18px;
  color: var(--color-black);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.3;
}

.service-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-pricing-card {
  padding: 18px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.service-pricing-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.service-pricing-title span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--color-muted-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-pricing-title span [data-lucide] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.service-pricing-title h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 17px;
  line-height: 1.35;
}

.service-pricing-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.65;
}

.service-pricing-card p + p {
  margin-top: 10px;
}

.service-price-table-section {
  padding-top: 38px;
}

.service-price-table-section h2 {
  text-align: left;
}

.service-price-table-image {
  width: min(620px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.service-price-table-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-quote-cta {
  margin-top: 40px;
  padding: 28px 24px;
  border-radius: 5px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.service-quote-cta h2 {
  margin: 0 0 8px;
  color: var(--color-black);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.25;
}

.service-quote-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}

.service-quote-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border-radius: 50px;
  background: var(--color-muted-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.service-quote-cta a:hover {
  background: var(--color-copper);
}

.service-quote-cta a [data-lucide] {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.service-faq-section {
  padding-top: 34px;
}

.service-faq-section h2 {
  margin: 0 auto 18px;
  color: var(--color-black);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.25;
}

.service-faq-list {
  display: grid;
  gap: 12px;
}

.service-faq-item {
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.service-faq-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.service-faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-black);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.service-faq-question [data-lucide] {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--color-muted-orange);
  transition: transform 0.24s ease;
}

.service-faq-question .service-faq-mark {
  width: 38px;
  height: 38px;
}

.service-faq-item.is-open .service-faq-question > [data-lucide]:last-child {
  transform: rotate(180deg);
}

.service-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.28s ease, opacity 0.2s ease;
}

.service-faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.service-faq-item.is-open .service-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.service-faq-answer p {
  margin: 16px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
  overflow: hidden;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.service-sidebar-inner {
  padding: 18px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
}

.service-sidebar h2 {
  margin: 0 0 14px;
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.3;
}

.service-sidebar nav {
  display: grid;
  gap: 6px;
}

.service-sidebar nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.service-sidebar nav a:hover,
.service-sidebar nav a.is-active {
  border-color: rgba(199, 101, 47, 0.22);
  background: rgba(199, 101, 47, 0.08);
  color: var(--color-muted-orange);
}

.service-sidebar-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 50px;
  background: var(--color-muted-orange);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.service-sidebar-cta:hover {
  background: var(--color-copper);
}

@media (max-width: 980px) {
  .single-service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .service-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
.service-process-visual img{
  height: 100%;
}
  .single-service-section {
    padding: 20px 0 30px;
  }

  .service-article-block h1,
  .service-article-block h2 {
    font-size: 22px;
    text-align: left;
  }

  .service-article-block p {
    text-align: left;
  }

  .service-benefit-grid,
  .service-sidebar nav {
    grid-template-columns: 1fr;
  }

  .service-benefit-card {
    min-height: 0;
  }

  .service-note-arrow {
    padding: 14px 44px 14px 14px;
    text-align: left;
  }

  .service-process-detail h2 {
    font-size: 22px;
  }

  .service-process-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 14px;
  }

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

  .service-pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-faq-item {
    padding: 15px;
  }

  .service-faq-question {
    font-size: 16px;
  }
}

@media (max-width: 520px) {

  .service-project-media img {
    height: 100px;
  }
}

/* =========================
   Projects Page
========================= */
.projects-page-hero {
  position: relative;
  /* max-height: 400px !important; */
  overflow: hidden;
  background: var(--color-surface);
}

/* .projects-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
} */

.projects-page-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.projects-page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  text-align: center;
}

.projects-page-hero h1 {
  margin: 0;
  color: #fff;
  line-height: 1.12;
}

.projects-page-section {
  padding: 48px 0 76px;
  background: #fff;
}

.project-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.project-category-filter a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(199, 101, 47, 0.26);
  border-radius: 50px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.project-category-filter a:hover,
.project-category-filter a.is-active {
  border-color: var(--color-muted-orange);
  background: var(--color-muted-orange);
  color: #fff;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-page-card {
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.project-page-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-page-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-page-card div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.project-page-card span {
  width: fit-content;
  color: var(--color-muted-orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-page-card h2 {
  margin: 0;
  color: var(--color-black);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.project-page-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) {
  .projects-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .projects-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .projects-page-section {
    padding: 36px 0 56px;
  }

  .project-category-filter {
    justify-content: flex-start;
  }

  .projects-page-grid {
    gap: 10px;
  }

  .project-page-card img {
    height: 128px;
  }
}

/* --- Factory Section --- */
.factory-section {
  padding: 40px 0px 96px 0px;
  background: #fff;
}

.factory-section h2 {
  margin: 0 0 30px;
  color: var(--color-text);
  font-size: var(--section-title-size);
  font-weight: 700;
  text-align: center;
}

.factory-layout {
  display: grid;
  gap: 30px;
}

.factory-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.factory-block.reverse .factory-content {
  order: 1;
}

.factory-block.reverse .factory-media {
  order: 2;
}

.factory-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
}

.factory-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.factory-content {
  display: grid;
  gap: 16px;
  align-self: center;
  padding: 16px;
  background-color: #1d1d1d;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  color: white;
}

.factory-heading {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.factory-label {
  display: block;
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.factory-content p {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.7;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1023px) {
  .factory-layout {
    gap: 20px;
  }

  .factory-block {
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .factory-section {
    padding: 24px 0 56px 0;
  }

  .factory-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .factory-block.reverse .factory-content {
    order: 2;
  }

  .factory-block.reverse .factory-media {
    order: 1;
  }

  .factory-media {
    border-radius: 10px;
    aspect-ratio: 16 / 9;
  }

  .factory-media img {
    aspect-ratio: 16 / 9;
  }
}

/* Stats Counter */
.stat-item strong {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.stat-item strong.is-counting {
  opacity: 1;
}

/* =========================
   Styles Page
========================= */

/* Spacing */
.styles-intro, .styles-grid-section {
  padding: 30px 0px;
}

/* S1: Hero Banner */
.styles-hero {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* .styles-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
} */

.styles-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* S2: Intro Section */
.styles-intro {
  margin-top: -56px;
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
  padding-top: 0;
}

.styles-intro-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  padding: 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.styles-intro-card h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 16px;
}

.styles-intro-accent {
  width: 48px;
  height: 3px;
  background: var(--color-muted-orange);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.styles-intro-card p {
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
  font-size: 17px;
}

/* S3: Grid Section */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Style Card */
.style-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.style-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.style-card__image-link {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.style-card__image-link img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.style-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: #fff;
  z-index: 1;
  position: relative;
}

.style-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.style-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.style-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.style-card__title a:hover {
  color: var(--color-copper, #a85222);
}

.style-card__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Responsive */
@media (max-width: 1023px) {
  .styles-intro,
  .styles-grid-section {
    padding: 30px 0px;
  }

  .styles-grid {
    gap: 20px;
  }
  .styles-hero {
    min-height: 320px;
  }
  .styles-intro {
    margin-top: -44px;
    padding-bottom: 64px;
  }

  .styles-intro-card {
    padding: 40px 36px;
  }
}

@media (max-width: 767px) {
  .styles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .styles-hero {
    min-height: 130px;
  }
  .style-card__body {
    padding: 10px;
  }
  .style-card__title{
    font-size: 14px;
  }
  .styles-grid-section {
    padding: 0px 0px 30px 0px;
  }
  .styles-intro {
    padding: 0px 0px 48px 0px;
    margin-top: -32px;
  }
  .styles-intro-card {
    padding: 24px 20px;
    border-radius: 12px;
  }
}

/* =========================
   Blog Page
========================= */

/* S1: Hero Banner */
.blog-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.blog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* S2: Grid Section */
.blog-grid-section {
  padding: 40px 0px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  order: 1;
}

.blog-empty-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 0px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 600;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.blog-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 6px 6px 0 0;
}

.blog-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: #fff;
  z-index: 1;
  position: relative;
}

.blog-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted-orange);
  text-decoration: none;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
  transition: color 0.3s ease;
}

.blog-card__link:hover {
  color: var(--color-copper, #a85222);
}

/* CSS SIDEBAR */
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  order: 2;
}

.sidebar-widget {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.sidebar-widget__title {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.01em;
}

.sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.sidebar-cat {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebar-cat:hover {
  color: var(--color-muted-orange);
  background: rgba(199, 101, 47, 0.05);
  border-left-color: var(--color-muted-orange);
}

.sidebar-cat.is-active {
  color: var(--color-muted-orange);
  font-weight: 700;
  border-left-color: var(--color-muted-orange);
  background: rgba(199, 101, 47, 0.06);
}
.sidebar-cat-item,
.sidebar-subcategories li {
  list-style: none;
}

.sidebar-cat-row {
  display: flex;
  align-items: center;
}

.sidebar-cat-row .sidebar-cat {
  flex: 1;
  min-width: 0;
}

.sidebar-cat-toggle {
  width: 46px;
  height: 44px;
  flex: 0 0 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.sidebar-cat-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-muted);
  border-bottom: 2px solid var(--color-muted);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(45deg);
  transition: 0.2s ease;
}

.sidebar-cat-item.is-open .sidebar-cat-toggle::before {
  transform: translate(-50%, -35%) rotate(225deg);
  border-color: var(--color-muted-orange);
}

.sidebar-subcategories {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: none;
  background: #fff;
}

.sidebar-cat-item.is-open > .sidebar-subcategories {
  display: block;
}

.sidebar-cat--child {
  padding-left: 42px;
  font-size: 15px;
  border-left-color: transparent;
}

.sidebar-cat--child::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  margin-right: 14px;
  flex: 0 0 6px;
}
/* Title Danh Mục */
.blog-category-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}

.blog-category-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--color-muted-orange);
}

/* Responsive */
@media (max-width: 1199px) {
  .blog-layout {
    grid-template-columns: 1fr 240px;
    gap: 32px;
  }
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 1023px) {
  .blog-hero {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .blog-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .blog-sidebar {
    position: static !important;
    order: 2;
    width: 100%;
  }

  .sidebar-categories {
    display: block;
    padding: 8px 0;
  }

  .sidebar-cat {
    display: flex;
    align-items: center;
    padding: 11px 20px;
    border-radius: 0;
    border: none;
    border-left: 3px solid transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted);
    background: transparent;
    white-space: normal;
    width: 100%;
  }

  .sidebar-cat:hover {
    color: var(--color-muted-orange);
    background: rgba(199, 101, 47, 0.05);
    border-left-color: var(--color-muted-orange);
  }

  .sidebar-cat.is-active {
    color: var(--color-muted-orange) !important;
    font-weight: 700;
    border-left-color: var(--color-muted-orange) !important;
    background: rgba(199, 101, 47, 0.06) !important;
  }

  .sidebar-widget__title {
    font-size: 15px;
    padding: 16px 20px;
  }

  .sidebar-widget {
    border-radius: 8px;
    margin-bottom: 24px;
  }

  .blog-posts-grid {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }

  .blog-card__body {
    padding: 12px 14px 14px;
  }

  .blog-card__title {
    font-size: 14px;
  }

  .blog-card__excerpt {
    font-size: 13px;
  }

  .blog-card__tag {
    font-size: 10px;
  }

  .blog-card__link {
    font-size: 12px;
  }

  .blog-category-title {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .blog-hero {
    min-height: 220px;
  }
}

@media (max-width: 360px) {
  .blog-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   Contact Page
========================= */
.contact-hero {
  position: relative;
  max-height: 400px !important;
  overflow: hidden;
  background: var(--color-surface);
}

/* .contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
} */

.contact-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.contact-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  line-height: 1.12;
}

.contact-page {
  padding: 40px 0px;
  background-color: var(--color-warm-white, #fff);
}

.contact-container {
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
  align-items: start;
}

.contact-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 40px;
  text-align: left;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.contact-form .form-group:has(.upload-area),
.contact-form .contact-submit-btn {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-input, .form-select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-border, #d1d5db);
  background: transparent;
  padding: 12px 0;
  font-size: 16px;
  color: var(--color-text);
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--color-muted, #6b7280);
}

.form-input:focus, .form-select:focus {
  border-bottom-color: var(--color-muted-orange, #d97742);
}

.form-subtext {
  font-size: 13px;
  color: var(--color-muted, #6b7280);
  margin-top: 6px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 24px;
}

.upload-area {
  position: relative;
  border: 2px dashed var(--color-border, #d1d5db);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  background: #fafafa;
}

.upload-area:hover {
  border-color: var(--color-muted-orange, #d97742);
  background: #fdfaf8;
}

.upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.upload-icon {
  width: 32px;
  height: 32px;
  color: var(--color-muted, #6b7280);
}

.upload-content span {
  font-size: 14px;
  color: var(--color-muted, #6b7280);
}

.contact-submit-btn {
  margin-top: 16px;
  align-self: flex-start;
  justify-self: flex-start;
  background: var(--color-muted-orange, #d97742);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  justify-content: center;
}

.contact-submit-btn:hover {
  background: var(--color-copper, #a85222);
}

/* Image Column */
.contact-image-column {
  display: block;
}

.contact-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #f3f4f6;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #9ca3af;
  overflow: hidden;
}

.contact-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-page {
    padding: 64px 0px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-title {
    font-size: 38px;
    margin-bottom: 32px;
  }

  .contact-image-placeholder {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }
  .contact-submit-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding: 48px 0px;
  }

  .contact-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

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

/* =========================
   Floating Contact Stack
========================= */
.floating-contact-stack {
  position: fixed;
  right: 22px;
  bottom: 80px; /* Stacked right above the back-to-top button */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fbc-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.fbc-btn:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.fbc-btn i, .fbc-btn svg, .fbc-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.fbc-phone {
  background-color: #ffffff; /* White */
}

.fbc-zalo {
  background-color: transparent !important;
  box-shadow: none !important;
}

.fbc-zalo .fbc-icon-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.3s ease;
}

.fbc-zalo:hover .fbc-icon-img {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.fbc-facebook {
  background-color: #1877f2; /* Facebook Blue */
}

.fbc-tiktok {
  background-color: #000000; /* TikTok Black */
}

.fbc-youtube {
  background-color: #ffffff; /* White */
}

@media (max-width: 767px) {
  .floating-contact-stack {
    right: 16px;
    bottom: 70px;
    gap: 10px;
  }
  
  .fbc-btn {
    width: 40px;
    height: 40px;
  }
  
  .fbc-btn i, .fbc-btn svg, .fbc-icon-img {
    width: 20px;
    height: 20px;
  }
}

/* =========================
   Blog Post Detail Page
========================= */

.blog-card__image-link {
  display: block;
  overflow: hidden;
}

.blog-card__title-link {
  text-decoration: none;
  color: inherit;
}

.blog-card__title-link:hover .blog-card__title {
  color: var(--color-muted-orange);
  transition: color 0.2s ease;
}

.post-hero {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.post-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  align-items: start;
  padding: 50px 0px;
}

.post-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

/* SIDEBAR widget 2 - Bài viết nổi bật */
.sidebar-recent {
  margin-top: 20px;
}

.recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.recent-post-item:last-child {
  border-bottom: none;
}

.recent-post-item:hover {
  background: rgba(199,101,47,0.04);
}

.recent-post-item figure {
  margin: 0;
  flex-shrink: 0;
  width: 72px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
}

.recent-post-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post__tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-muted-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.recent-post__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CONTENT bên trái */
.post-content-col {
  min-width: 0;
  padding: 20px;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: 10px;
}
@media screen and (max-width: 474px) {
  .post-content-col {
  padding: 10px;
}
}
.post-header {
  margin-bottom: 32px;
}

.post-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-muted-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.post-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin: 0 0 16px;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
}

.project-detail-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  color: #fff;
  text-decoration: none;
}

.project-detail-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-detail-gallery .has-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
}

.project-detail-gallery .has-more span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}

.project-gallery-hidden {
  display: none !important;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--color-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 28px;
}

.post-meta i {
  width: 15px;
  height: 15px;
}

.post-excerpt-intro {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0 0 32px;
  padding: 20px 24px;
  background: rgba(199,101,47,0.06);
  border-left: 3px solid var(--color-muted-orange);
  border-radius: 0 8px 8px 0;
}

.post-body {
  font-size: 15px;
  color: var(--color-text);
  /* line-height: 1.85; */
}
.post-body:not(h1,h2,h3) {
  text-align: justify;
}
.post-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin: 14px 0px;
  padding-bottom: 10px;
}

.post-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 28px 0 10px;
}

.post-body p {
  color: var(--color-text);
  margin: 0 0 18px;
  max-width: 100%;
}
@media screen and (max-width: 768px){
  .post-body h1 {
    font-size: 20px;
  }
}
.post-body ul, .post-body ol {
  padding-left: 20px;
  margin: 0 0 18px;
}

.post-body li {
  margin-bottom: 8px;
  color: var(--color-text);
}

.post-image {
  margin: 28px 0;
  border-radius: 10px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.post-image figcaption {
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
  padding: 10px 0 0;
  font-style: italic;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted-orange);
  text-decoration: none;
  margin-bottom: 28px;
}

.post-back:hover {
  color: var(--color-copper);
}

/* =========================
   Responsive Chi tiết bài viết
========================= */

/* Tablet (768px – 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .post-hero {
    height: 300px;
  }

  .post-layout {
    grid-template-columns: 1fr 240px;
    gap: 32px;
    padding: 56px 0px;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .post-hero {
    height: 240px;
  }

  .post-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0px;
  }

  .post-sidebar {
    position: static;
    order: 2;
  }

  .post-content-col {
    order: 1;
  }

  .post-title {
    font-size: 28px;
  }

  .project-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-excerpt-intro {
    padding: 16px;
    font-size: 14px;
  }
}

/* =========================
   Pagination
========================= */
.pagination {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  grid-column: 1 / -1; /* Stretch across all grid columns */
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-link:hover:not(.disabled) {
  color: var(--color-muted-orange);
  border-color: var(--color-muted-orange);
  background: rgba(199, 101, 47, 0.04);
}

.page-link.is-active {
  color: #fff;
  background: var(--color-muted-orange);
  border-color: var(--color-muted-orange);
  box-shadow: 0 4px 12px rgba(199, 101, 47, 0.24);
}

.page-link.disabled {
  color: #c0c0c0;
  border-color: #eee;
  background: #fafafa;
  cursor: not-allowed;
  pointer-events: none;
}

.page-link i, .page-link svg {
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 474px){
    .why-choose-grid h3{
      font-size: 19px;
    }
    .culture-media span{
      max-width: 100%;
    }
      .header-actions .phone-button {
    min-width: 130px !important;
  }
  .system-card img{
    height: 20px !important;
  }
}

/* =========================
   404 Error Page
========================= */
.error-404-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height) - 340px);
  padding: 80px 24px;
  background: #ffffff;
  color: var(--color-text);
  text-align: center;
}

.error-404-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.error-404-code {
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-muted-orange);
  margin: 0;
  letter-spacing: -0.02em;
}

.error-404-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  text-transform: uppercase;
}

.error-404-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

.error-404-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.error-btn {
  min-height: 44px;
  padding: 0 28px;
  display-inline-flex;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-btn-primary {
  background: var(--color-muted-orange);
  color: #fff;
  border: 1px solid var(--color-muted-orange);
}

.error-btn-primary:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: #fff;
}

.error-btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.error-btn-secondary:hover {
  background: rgba(17, 17, 17, 0.04);
  color: var(--color-text);
}
  .contact-hero-content h1{
    font-size: 30px;
  }

  .projects-page-hero-content h1{
    font-size: 30px;
  }
@media (max-width: 560px) {
  .error-404-section {
    padding: 56px 20px;
  }

  .error-404-code {
    font-size: 100px;
  }

  .error-404-title {
    font-size: 22px;
  }
  .styles-intro-card p{
    font-size: 16px;
  }
  .styles-intro-card h2{
    font-size: 25px;
  }
  .vision-content h3 {
    font-size: 19px;
  }
  .contact-hero-content h1{
    font-size: 24px;
  }

  .projects-page-hero-content h1{
    font-size: 24px;
  }
    .service-note-arrow{
    width: unset;
  }
  .service-project-media{
    min-height: unset;
  }
  .service-project-body p{
    font-size: 12px;
  }
  .project-page-card h2{
    font-size: 14px;
  }
  .project-page-card p{
    font-size: 13px;
  }
  .project-page-card span{
    font-size: 12px;
    font-weight: 600;
  }
}
.swiper-pagination{
  display: none !important;
}
.swal2-icon.swal2-warning, .swal2-icon.swal2-info, .swal2-icon.swal2-question{
  font-size: 12px !important;
}
.single-post .post-image img{
  aspect-ratio: unset;
}
.single-post table{
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
}

.single-post table th,
.single-post table td{
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}

.single-post table th{
  background: #f7f7f7;
  font-weight: 700;
}

.single-post table tr:nth-child(even){
  background: #fafafa;
}

.single-post table tr:hover{
  background: #f3f3f3;
  transition: .2s ease;
}

#sticky-buttons-1{
  gap: 10px;
}

/* Process 2 start */
    .process-unity {
  padding: 70px 15px;
}

.process-unity * {
  box-sizing: border-box;
}

.process-unity__container {
  max-width: 1320px;
  margin: 0 auto;
}

.process-unity__heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.process-unity__heading span {
  display: block;
  margin-bottom: 18px;
  color: #b94f1b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.process-unity__heading h2 {
    margin: 0 0 34px;
    color: var(--color-text);
    font-size: var(--section-title-size);
    line-height: 1.2;
    text-align: center;
    color: var(--color-muted-orange);
}

.process-unity__heading p {
  margin: 34px auto 0;
  color: #455478;
  font-size: 16px;
  line-height: 1.9;
}

.process-unity__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-unity__item {
  position: relative;
  min-height: 230px;
  padding: 32px;
  background: #1d1d1d;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}

.process-unity__icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #c95218;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(201, 82, 24, 0.22);
}

.process-unity__icon svg {
  width: 50px;
  height: 50px;
  stroke-width: 2.2;
}

.process-unity__item h3,
.process-unity__item p {
  position: relative;
  z-index: 2;
}

.process-unity__item h3 {
  margin: 0 0 16px;
  color: ghostwhite;
  font-size: 20px;
  font-weight: 800;
}

.process-unity__item p {
  margin: 0;
  max-width: 86%;
  color: ghostwhite;
  font-size: 16px;
  line-height: 1.75;
}

.process-unity__number {
  position: absolute;
  top: 28px;
  right: 22px;
  z-index: 1;
  color: ghostwhite;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 991px) {
  .process-unity__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .process-unity__heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .process-unity {
    padding: 45px 12px;
  }

  .process-unity__heading {
    margin-bottom: 32px;
  }

  .process-unity__heading span {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .process-unity__heading h2 {
    font-size: 24px;
  }

  .process-unity__heading h2::after {
    width: 52px;
    margin-top: 16px;
  }

  .process-unity__heading p {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.7;
  }

  .process-unity__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-unity__item {
    min-height: auto;
    padding: 18px 14px;
    border-radius: 6px;
  }

  .process-unity__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 7px;
  }

  .process-unity__icon svg {
    width: 18px;
    height: 18px;
  }

  .process-unity__item h3 {
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 1.35;
  }

  .process-unity__item p {
    max-width: 100%;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .process-unity__number {
    top: 14px;
    right: 10px;
    font-size: 34px;
    opacity: 0.65;
  }
}
/* Process 2 end */