/* ===== Design tokens ===== */
:root {
  --cream: #f5f1e8;
  --olive: #6b8e23;
  --olive-dark: #5a7a1e;
  --olive-light: #a3c853;
  --orange: #ff7f50;
  --purple: #d8bfd8;
  --dark-green: #2c3e2e;
  --text-dark: #1f2417;
  --text-muted: #6b7280;
  --text-muted-2: #9ca3af;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-900: #111827;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-full: 999px;
  --max-width: 1180px;
  --topbar-h: 44px;
  --navbar-h: 80px;
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--topbar-h) + var(--navbar-h));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--gray-900); }
.btn-white:hover { background: var(--gray-100); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--gray-900); }
.btn-olive { background: var(--olive); color: var(--white); }
.btn-olive:hover { background: var(--olive-dark); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ===== Top CTA bar ===== */
.top-cta-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  height: var(--topbar-h);
  background: var(--olive);
  color: var(--white);
}
.top-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
}
.top-cta-inner p { font-size: 0.9rem; font-weight: 500; }
.top-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--olive);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* ===== Navbar ===== */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 60;
  height: var(--navbar-h);
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--white);
  padding: 5px;
  box-sizing: border-box;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.logo-mark.small { width: 34px; height: 34px; padding: 4px; border-radius: 8px; }
.logo-text {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.25s ease;
}
.site-header.scrolled .logo-text { color: var(--gray-900); }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.2s ease;
}
.site-header.scrolled .nav a { color: #374151; }
.nav a:hover { color: var(--olive-light); }
.site-header.scrolled .nav a:hover { color: var(--olive); }
.nav a.active-link, .mobile-menu a.active-link { color: var(--olive-light); }
.site-header.scrolled .nav a.active-link { color: var(--olive); font-weight: 700; }
.mobile-menu a.active-link { color: var(--olive); font-weight: 700; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.2s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--gray-900); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 10px;
  margin-top: 8px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--gray-50); }
.mobile-menu-actions { display: flex; gap: 8px; padding: 8px 6px 4px; }
.mobile-menu-actions .btn { flex: 1; justify-content: center; padding: 10px; font-size: 0.9rem; }
.mobile-menu-actions .icon-btn {
  width: 42px; height: 42px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--olive); color: var(--white); border-radius: 50%;
}

/* ===== Section shared ===== */
section { padding: 64px 0; }
section[id] { scroll-margin-top: calc(var(--topbar-h) + var(--navbar-h) + 12px); }
.eyebrow-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow-dot .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }
.eyebrow-dot span { font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.accent-olive { color: var(--olive); }

/* ===== Page Hero (subpages) ===== */
.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(163, 200, 83, 0.15), transparent 50%),
    linear-gradient(160deg, var(--dark-green) 0%, #1c2818 100%);
  margin-top: calc(-1 * (var(--topbar-h) + var(--navbar-h)));
  padding: calc(var(--topbar-h) + var(--navbar-h) + 52px) 0 44px;
}
.page-hero-eyebrow { color: rgba(255, 255, 255, 0.65); font-size: 0.85rem; margin-bottom: 14px; }
.page-hero-eyebrow a { color: var(--olive-light); }
.page-hero-eyebrow a:hover { text-decoration: underline; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1rem; max-width: 560px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--navbar-h));
  margin-top: calc(-1 * (var(--topbar-h) + var(--navbar-h)));
  padding-top: calc(var(--topbar-h) + var(--navbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(163, 200, 83, 0.18), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(107, 142, 35, 0.25), transparent 50%),
    linear-gradient(160deg, var(--dark-green) 0%, #1c2818 100%);
}
.hero-inner { max-width: 780px; padding: 60px 24px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== About ===== */
.about { background: var(--cream); }
.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 48px;
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  transition: transform 0.25s ease;
}
.stat-card:hover { transform: scale(1.02); }
.stat-card.orange { background: var(--orange); }
.stat-card.purple { background: var(--purple); }
.stat-card .stat-num { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 900; margin-bottom: 10px; }
.stat-card .stat-label { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.stat-card .stat-desc { font-size: 0.85rem; opacity: 0.92; }

.badge-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.badge-item .badge-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.badge-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.badge-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Services ===== */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}
.services-header h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 900; }
.services-header p { color: var(--text-muted); max-width: 340px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: scale(1.02); }
.service-card.dark { background: var(--gray-900); color: var(--white); }
.service-card.light { background: var(--white); border: 1px solid var(--gray-200); }
.service-card.feature {
  background: linear-gradient(150deg, var(--olive) 0%, #4d6b19 100%);
  color: var(--white);
}
.service-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  margin-bottom: 24px;
}
.service-card.light .service-num { background: var(--cream); color: var(--olive); }
.service-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 22px; }
.service-card .check-list { display: flex; flex-direction: column; gap: 9px; }
.service-card .check-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.service-card.light p, .service-card.light .check-list li { color: #4b5563; }
.service-card .check-list i { color: var(--olive-light); }
.service-card.light .check-list i { color: var(--olive); }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-extra {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-extra-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
}
.service-extra-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(107, 142, 35, 0.1);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
}
.service-extra-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.service-extra-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Service Area ===== */
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 44px; }
.area-map-box {
  background: linear-gradient(150deg, rgba(107, 142, 35, 0.06), rgba(107, 142, 35, 0.12));
  border: 1px solid rgba(107, 142, 35, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.area-map-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.area-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.area-badges span {
  display: block;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 11px 6px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.area-details { display: flex; flex-direction: column; gap: 20px; }
.area-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px;
}
.area-card.highlight {
  background: linear-gradient(150deg, var(--olive), #4d6b19);
  color: var(--white);
  border: none;
}
.area-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(107, 142, 35, 0.1);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
}
.area-card.highlight .area-card-icon { background: rgba(255, 255, 255, 0.2); color: var(--white); }
.area-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.area-card p { font-size: 0.88rem; }
.area-card:not(.highlight) p { color: var(--text-muted); }
.area-card .service-tag { margin-bottom: 10px; }

.area-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area-stat {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.area-stat .num { font-size: 2rem; font-weight: 900; color: var(--olive); margin-bottom: 4px; }
.area-stat .label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Achievements ===== */
.achievements { background: var(--gray-50); }
.achieve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.achieve-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}
.achieve-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.achieve-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(107, 142, 35, 0.1);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
}
.achieve-type {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-full);
}
.achieve-type.long-term { background: #dbeafe; color: #1d4ed8; }
.achieve-type.large-site { background: #dcfce7; color: #15803d; }
.achieve-type.multi { background: #f3e8ff; color: #7e22ce; }
.achieve-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.achieve-card .period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.achieve-card .duration { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--olive); }
.achieve-card .duration .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); }

.achieve-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.achieve-summary .icon-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(107, 142, 35, 0.1);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.achieve-summary .num { font-size: 2.2rem; font-weight: 900; margin-bottom: 4px; }
.achieve-summary .label { color: var(--text-muted); }

/* ===== Equipment ===== */
.equip-total {
  text-align: center;
  margin-bottom: 44px;
}
.equip-total-box {
  display: inline-block;
  background: linear-gradient(120deg, var(--olive), #8fbc8f);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(107, 142, 35, 0.25);
  padding: 36px 56px;
  color: var(--white);
}
.equip-total-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.equip-total-box .num { font-size: 3rem; font-weight: 900; }
.equip-total-box .label { font-size: 1.05rem; font-weight: 600; }

.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.equip-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  padding: 22px;
}
.equip-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.equip-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.equip-card-icon.green { background: #dcfce7; color: #15803d; }
.equip-card-icon.blue { background: #dbeafe; color: #1d4ed8; }
.equip-card-icon.yellow { background: #fef9c3; color: #a16207; }
.equip-card-icon.orange-bg { background: #ffedd5; color: #c2410c; }
.equip-card-icon.purple { background: #f3e8ff; color: #7e22ce; }
.equip-card-icon.red { background: #fee2e2; color: #b91c1c; }
.equip-card-count { text-align: right; }
.equip-card-count .n { font-size: 1.5rem; font-weight: 800; }
.equip-card-count .u { font-size: 0.78rem; color: var(--text-muted-2); }
.equip-card h4 { font-size: 0.92rem; font-weight: 700; }

.equip-summary {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.equip-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; margin-bottom: 28px; }
.equip-summary-grid .icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.equip-summary-grid .num { font-size: 1.6rem; font-weight: 800; margin-bottom: 2px; }
.equip-summary-grid .label { font-size: 0.82rem; color: var(--text-muted); }
.equip-summary-badge {
  display: flex;
  justify-content: center;
}
.equip-summary-badge span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--olive);
  color: var(--white);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== Customer Portal (mock) ===== */
.portal-mock { max-width: 640px; margin: 0 auto; }
.browser-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green { background: #28c840; }
.portal-badge {
  margin-left: auto;
  background: rgba(107, 142, 35, 0.12);
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.browser-frame-body { padding: 24px; }

.portal-info-card {
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 20px 18px 24px;
  margin-bottom: 16px;
  overflow: hidden;
}
.portal-info-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--olive);
}
.portal-info-title { display: flex; align-items: center; gap: 8px; font-weight: 800; margin-bottom: 14px; color: var(--text-dark); }
.portal-info-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.portal-info-grid span { display: block; font-size: 0.76rem; color: var(--text-muted-2); margin-bottom: 3px; }
.portal-info-grid strong { font-size: 0.9rem; color: var(--text-dark); }

.portal-tabs { display: flex; gap: 10px; margin-bottom: 16px; }
.portal-tabs button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid var(--gray-200);
  color: var(--text-muted);
  background: var(--white);
}
.portal-tabs button.active { background: var(--olive); color: var(--white); border-color: var(--olive); }

.portal-chart-card, .portal-table-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.portal-chart-title { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 26px; }
.portal-bars { display: flex; align-items: flex-end; gap: 10px; height: 110px; margin-bottom: 26px; position: relative; }
.portal-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--olive-light), var(--olive));
  border-radius: 6px 6px 0 0;
  position: relative;
  min-height: 6px;
}
.portal-bar span {
  position: absolute;
  bottom: -22px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted-2);
}

.portal-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.portal-table th { text-align: left; color: var(--text-muted-2); font-weight: 600; font-size: 0.75rem; padding: 5px 0; border-bottom: 1px solid var(--gray-100); }
.portal-table td { padding: 8px 0; border-bottom: 1px solid var(--gray-100); color: var(--text-dark); }
.portal-table tr:last-child td { font-weight: 800; color: var(--olive-dark); border-bottom: none; }

.portal-note { text-align: center; color: var(--text-muted-2); font-size: 0.8rem; margin-top: 18px; }

/* ===== Why Us ===== */
.whyus { background: var(--cream); }
.whyus-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; max-width: 960px; margin: 0 auto 40px; }
.whyus-card { flex: 1 1 260px; max-width: 300px; }
.whyus-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whyus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08); }
.whyus-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
}
.whyus-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.whyus-card p { font-size: 0.85rem; color: var(--text-muted); white-space: pre-line; }
.whyus-badge { text-align: center; }
.whyus-badge span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--olive);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* ===== Client Network ===== */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.client-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s ease;
}
.client-card:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); }
.client-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(107, 142, 35, 0.1);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.client-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.client-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  text-align: left;
}
.faq-question .cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--olive);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}
.faq-question h3 { font-size: 1rem; font-weight: 700; }
.faq-toggle-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.open .faq-toggle-icon { background: var(--olive); color: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding: 0 22px 20px; color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.faq-item.open .faq-answer { max-height: 280px; }
.faq-cta { text-align: center; margin-top: 40px; }
.faq-cta p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(107, 142, 35, 0.12);
  color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.contact-value { display: block; color: var(--olive-dark); font-weight: 800; font-size: 1.25rem; margin-bottom: 4px; }
.contact-value-sm { font-size: 1rem; }
.contact-sub { color: var(--text-muted); font-size: 0.85rem; }
.contact-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: var(--dark-green); color: var(--white); padding: 56px 0 32px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo .logo-text { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-contact-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(107, 142, 35, 0.2);
  color: var(--olive-light);
  display: flex; align-items: center; justify-content: center;
}
.footer-contact-item strong { display: block; font-size: 0.88rem; margin-bottom: 3px; }
.footer-contact-item a, .footer-contact-item p { font-size: 0.82rem; color: #d1d5db; }
.footer-contact-item a:hover { color: var(--olive-light); }
.footer-contact-item .fine { font-size: 0.75rem; color: #9ca3af; margin-top: 2px; }

.footer-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-nav-grid h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.footer-nav-grid ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-grid a { font-size: 0.85rem; color: #9ca3af; }
.footer-nav-grid a:hover { color: var(--white); }

.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.85rem; color: #9ca3af; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid, .client-grid, .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .area-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .equip-summary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --navbar-h: 68px; --topbar-h: 40px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .top-cta-inner p { font-size: 0.75rem; }
  section { padding: 44px 0; }
  .stat-cards, .service-grid, .service-extra,
  .achieve-grid, .client-grid, .equip-grid, .badge-row,
  .equip-summary-grid, .footer-contact-grid, .footer-nav-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .whyus-card { flex-basis: 100%; max-width: 360px; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .area-badges { grid-template-columns: repeat(2, 1fr); }
  .area-stats { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .achieve-summary { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
