:root {
  --primary: #0f2b46;
  --primary-dark: #0a1f33;
  --primary-light: #1a3f63;
  --accent: #e8862e;
  --accent-dark: #d1721c;
  --cream: #f6f4ef;
  --cream-2: #efeadf;
  --text: #27313d;
  --text-light: #5c6b7a;
  --white: #ffffff;
  --border: #e3dccb;
  --shadow-sm: 0 8px 22px rgba(10, 31, 51, 0.06);
  --shadow: 0 10px 30px rgba(10, 31, 51, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 31, 51, 0.14);
  --radius: 16px;
  --container: 1140px;
  --transition: 0.3s ease;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Zilla Slab", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 134, 46, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ===== Page Loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--cream);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 52px;
  height: 52px;
}

.loader-ring svg {
  width: 100%;
  height: 100%;
  animation: loaderSpin 1.1s linear infinite;
}

.loader-track {
  fill: none;
  stroke: rgba(15, 43, 70, 0.12);
}

.loader-arc {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 60;
}

.loader-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
  min-height: 1.2em;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .loader-ring svg { animation: none; }
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1001;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f0a24a);
  z-index: 1000;
  width: 0;
  transition: width 0.15s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== Header / Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.brand strong {
  font-weight: 900;
}

.brand-logo {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link.btn-nav {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.nav-link.btn-nav:hover,
.nav-link.btn-nav.active {
  background: var(--accent);
  color: var(--white);
}

.lang-item {
  margin-left: 6px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(15, 43, 70, 0.06);
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.lang-toggle:hover {
  background: rgba(15, 43, 70, 0.12);
  border-color: var(--border);
}

.lang-toggle svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.lang-toggle #langLabel {
  letter-spacing: 0.05em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  padding: 160px 0 90px;
  background: radial-gradient(1000px 500px at 85% -10%, rgba(232, 134, 46, 0.12), transparent 60%),
              radial-gradient(800px 500px at -10% 110%, rgba(15, 43, 70, 0.08), transparent 60%),
              var(--cream);
  position: relative;
  overflow: hidden;
}

/* Layer 2: faded factory photo, anchored right, behind hero content */
.hero-factory-layer {
  position: absolute;
  top: 0;
  right: -8%;
  width: 58%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 55%, transparent 100%);
}

.hero-factory-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: blur(1.5px) grayscale(25%) contrast(1.05);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s ease, color 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(232, 134, 46, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

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

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stats strong.counted {
  animation: bounceCount 0.4s var(--ease-out);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-roll {
  position: relative;
  z-index: 1;
  width: min(560px, 118%);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(15, 43, 70, 0.22));
  animation: floatRotate 5s ease-in-out infinite;
}

.hero-badge-chip {
  position: absolute;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.chip-1 {
  top: 14%;
  left: 2%;
}

.chip-2 {
  bottom: 18%;
  right: 0;
  animation-delay: 1.2s;
}

.chip-3 {
  top: 20%;
  right: 4%;
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  animation-delay: 2.4s;
}

/* ===== Section generic ===== */
section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-light);
  font-size: 1rem;
}

.section-head.light h2 {
  color: var(--white);
}

/* ===== Trusted By (logo marquee) ===== */
.trusted-by {
  background: var(--white);
  padding: 44px 0 8px;
}

.trusted-by .section-head {
  margin-bottom: 28px;
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 58s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex: none;
  display: grid;
  place-items: center;
  height: 60px;
  padding: 0 6px;
}

.marquee-item img {
  max-height: 38px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.marquee-item.dark-tile {
  background: var(--primary);
  border-radius: 12px;
  height: 52px;
  padding: 0 20px;
}

.marquee-item.dark-tile img {
  max-height: 26px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 576px) {
  .marquee-track { gap: 36px; animation-duration: 46s; }
  .marquee-item img { max-height: 30px; max-width: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .marquee-track::-webkit-scrollbar { display: none; }
}

/* ===== Clients ===== */
.clients {
  background: var(--white);
  padding: 60px 0 40px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.client-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.client-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.client-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.client-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.25s ease;
}

.client-trigger:hover {
  background: rgba(232, 134, 46, 0.04);
}

.client-item.active .client-trigger {
  background: rgba(232, 134, 46, 0.08);
}

.client-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--cream);
  color: var(--primary);
}

.client-item.active .client-icon {
  background: var(--accent);
  color: var(--white);
}

.client-icon svg {
  width: 24px;
  height: 24px;
}

.client-trigger > span:nth-child(2) {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.client-item.active .client-trigger > span:nth-child(2) {
  color: var(--accent);
}

.client-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.client-item.active .client-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.client-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
  background: rgba(232, 134, 46, 0.03);
  border-top: 1px solid var(--border);
}

.client-item.active .client-detail {
  max-height: 320px;
  border-top-color: var(--accent);
}

.client-detail p {
  padding: 16px 20px;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-img {
  width: min(380px, 90%);
  height: auto;
  aspect-ratio: 4 / 3;
  margin-inline: auto;
  filter: drop-shadow(0 16px 24px rgba(15, 43, 70, 0.12));
}

.about-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.about-card svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--accent);
  background: rgba(232, 134, 46, 0.12);
  padding: 10px;
  border-radius: 12px;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  transition: transform 0.3s var(--ease-out);
}

.feature-item:hover .feature-icon {
  transform: scale(1.15);
}

.feature-icon svg {
  width: 16px;
  height: 16px;
}

.feature-item strong {
  color: var(--primary);
  font-size: 1rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== Products ===== */
.products {
  background: var(--cream);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 48px rgba(10, 31, 51, 0.14);
  border-color: rgba(232, 134, 46, 0.5);
}

.product-img {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f3efe6 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-card > p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.product-specs {
  margin-top: auto;
  text-align: left;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}

.product-specs li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}

.product-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Toggle button: hidden on desktop, specs always shown there */
.product-toggle {
  display: none;
}

.product-detail {
  margin-top: auto;
}

/* ===== Mobile: collapsible product specs ===== */
@media (max-width: 768px) {
  .product-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: auto;
    padding: 12px 0;
    border: none;
    border-top: 1px dashed var(--border);
    background: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
  }

  .product-toggle-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.3s var(--ease-out);
  }

  .product-toggle[aria-expanded="true"] .product-toggle-chevron {
    transform: rotate(180deg);
    color: var(--accent);
  }

  .product-toggle[aria-expanded="true"] {
    color: var(--accent);
  }

  .product-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
  }

  .product-detail.open {
    max-height: 240px;
  }

  .product-detail .product-specs {
    border-top: none;
    padding-top: 4px;
  }
}

/* ===== How to Order ===== */
.how-order {
  background: var(--white);
}

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

.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.step-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(15, 43, 70, 0.05);
  line-height: 1;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--white);
  margin-bottom: 16px;
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.steps-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Benefits ===== */
.benefits {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 134, 46, 0.18), transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.benefits::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  animation: float 9s ease-in-out 2s infinite;
}

.benefits .section-head {
  position: relative;
  z-index: 1;
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.35s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(232, 134, 46, 0.4);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 134, 46, 0.16);
  color: var(--accent);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 14px 0 10px;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.stars span {
  display: inline-block;
  opacity: 0;
  animation: starPop 0.3s var(--ease-out) forwards;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.95rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}

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

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item[open] .faq-answer {
  animation: slideInUp 0.35s var(--ease-out) both;
}

/* ===== CTA ===== */
.cta {
  padding: 0;
  transform: translateY(60px);
}

.cta-box {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 25px 60px rgba(232, 134, 46, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-box::before {
  width: 200px;
  height: 200px;
  top: -80px;
  left: -60px;
  animation: float 7s ease-in-out infinite;
}

.cta-box::after {
  width: 260px;
  height: 260px;
  bottom: -110px;
  right: -70px;
  animation: float 8s ease-in-out 1.5s infinite;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

/* ===== Contact ===== */
.contact {
  padding-top: 170px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

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

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  transition: transform 0.3s var(--ease-out);
}

.contact-list li:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-list strong {
  color: var(--primary);
  display: block;
  font-size: 1rem;
}

.contact-list p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group select {
  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='%235c6b7a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 134, 46, 0.15);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc3545;
  background: #fff5f5;
}

.form-group.error label {
  color: #dc3545;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #28a745;
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer .brand-logo {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 10px 16px;
}

.footer .brand-logo img {
  height: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col a {
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== Back to Top ===== */
.back-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 89;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 43, 70, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s var(--ease-out), background 0.3s ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

.back-top svg {
  width: 20px;
  height: 20px;
}

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.about-visual.reveal .about-card:nth-child(2) { transition-delay: 0.1s; }
.about-visual.reveal .about-card:nth-child(3) { transition-delay: 0.2s; }
.about-visual.reveal .about-card:nth-child(4) { transition-delay: 0.3s; }

/* staggered for steps */
.step-card.reveal-left:nth-child(1) { transition-delay: 0s; }
.step-card.reveal-left:nth-child(2) { transition-delay: 0.12s; }
.step-card.reveal-right:nth-child(3) { transition-delay: 0.12s; }
.step-card.reveal-right:nth-child(4) { transition-delay: 0.24s; }

/* ===== Keyframes ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

@keyframes bounceCount {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
  }
  60% {
    transform: scale(1.3) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.lang-switching .lang-fade {
  animation: fadeIn 0.35s ease both;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .hero-factory-layer {
    display: none;
  }

  .hero-visual {
    order: -1;
    max-height: 320px;
  }

  .hero-roll {
    width: min(250px, 70%);
  }

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

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

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

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .container {
    padding: 0 18px;
  }

  .nav {
    height: 68px;
  }

  .brand {
    font-size: 1.1rem;
    gap: 8px;
  }

  .brand-logo img {
    height: 36px;
  }

  .lang-toggle {
    justify-content: center;
    padding: 10px 14px;
  }

  .nav-toggle {
    display: flex;
    z-index: 10;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--white);
    padding: 16px 20px 24px;
    box-shadow: 0 20px 40px rgba(10, 31, 51, 0.12);
    transform: translateY(-140%);
    transition: transform 0.35s var(--ease-out);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-link {
    text-align: center;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    gap: 16px;
    justify-content: center;
  }

  .hero-badge-chip {
    display: none;
  }

  .hero-stats strong {
    font-size: 1.25rem;
  }

  .hero-stats span {
    font-size: 0.78rem;
  }

  .hero-actions {
    margin-bottom: 28px;
    gap: 10px;
  }

  .hero-actions .btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .hero-roll {
    width: min(220px, 65%);
  }

  .hero-visual {
    max-height: 280px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 20px auto 0;
  }

  .client-trigger {
    padding: 14px 18px;
  }

  .client-icon {
    width: 42px;
    height: 42px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card {
    padding: 24px 18px;
  }

  .product-card h3 {
    font-size: 1.05rem;
  }

  .product-img {
    aspect-ratio: 16 / 10;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .step-card {
    padding: 24px 18px;
  }

  .benefit-grid {
    gap: 16px;
  }

  .cta-box {
    padding: 40px 28px;
  }

  .cta-box h2 {
    font-size: 1.4rem;
  }

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

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
    font-size: 0.85rem;
  }

  .back-top {
    bottom: 80px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .wa-float {
    bottom: 16px;
    right: 14px;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 576px) {
  html {
    scroll-padding-top: 80px;
  }

  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 14px;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .nav {
    height: 62px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo img {
    height: 30px;
  }

  .nav-menu {
    top: 62px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats strong {
    font-size: 1.15rem;
  }

  .hero-stats span {
    font-size: 0.74rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-badge-chip {
    display: none;
  }

  .hero-roll {
    width: min(180px, 60%);
  }

  .hero-visual {
    max-height: 240px;
  }

  .client-trigger {
    padding: 12px 14px;
    gap: 10px;
  }

  .client-trigger > span:nth-child(2) {
    font-size: 0.82rem;
  }

  .client-icon {
    width: 38px;
    height: 38px;
  }

  .client-detail p {
    padding: 12px 14px;
    font-size: 0.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

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

  .benefit-item {
    padding: 24px 20px;
  }

  .benefit-num {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .step-num {
    font-size: 2.2rem;
  }

  .step-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .cta-box {
    padding: 36px 22px;
    border-radius: 16px;
  }

  .cta-box h2 {
    font-size: 1.25rem;
  }

  .cta-box p {
    font-size: 0.9rem;
  }

  .contact {
    padding-top: 130px;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-form h3 {
    font-size: 1.15rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .footer {
    padding-top: 60px;
  }

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

  .footer .brand-logo {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    padding: 8px 12px;
  }

  .footer .brand-logo img {
    height: 30px;
  }

  .footer-social {
    margin-top: 14px;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .back-top {
    bottom: 72px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .wa-float {
    bottom: 12px;
    right: 10px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 36px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero h1 {
    font-size: 1.25rem;
  }

  .hero p {
    font-size: 0.82rem;
  }

  .hero-roll {
    width: min(160px, 55%);
  }

  .hero-visual {
    max-height: 200px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-stats strong {
    font-size: 1.1rem;
  }

  .hero-stats span {
    font-size: 0.72rem;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-logo img {
    height: 26px;
  }

  .client-trigger > span:nth-child(2) {
    font-size: 0.76rem;
  }

  .cta-box {
    padding: 28px 16px;
  }

  .cta-box h2 {
    font-size: 1.15rem;
  }

  .contact-form {
    padding: 18px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}

/* ===== Service Area (SEO: area layanan) ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.area-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.area-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.area-item h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.area-item p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.5;
}
