/* =============================================================
   PDH HEALTHCARE — Corporate Stylesheet
   Brand colors taken from official PDH logo:
     Green  #00a44f   (primary)
     Orange #f05a24   (accent / CTA)
     Blue   #28aae1   (secondary highlight)
   ============================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1f2937;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: #0f172a; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Logo palette — green is dominant primary, orange is accent for CTAs,
     blue is reserved minimal accent. Same strict 3 colors, but used
     corporate-style: restrained and hierarchical. */
  --green:     #00a44f;
  --green-dk:  #007a3a;
  --green-lt:  #e8f5ed;

  --orange:    #f05a24;
  --orange-dk: #d14616;

  --blue:      #28aae1;
  --blue-dk:   #1b8cbd;

  --text:      #1e293b;
  --text-soft: #475569;
  --muted:     #64748b;
  --heading:   #0b1220;

  --bg:        #ffffff;
  --bg-soft:   #f7f9fb;
  --bg-dark:   #0b1220;
  --border:    #e6e8ec;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow:    0 6px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.12);

  --radius:    10px;
  --radius-lg: 16px;

  --container: 1240px;
  --header-h:  82px;
}

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

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
/*.section-eyebrow::before {
  content: ''; width: 36px; height: 2px;
  background: var(--green);
}*/
.section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading);
  margin-bottom: 18px;
}
.section-title em { font-style: normal; color: var(--green); }
.section-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 640px;
}
.text-center { text-align: center; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  font-size: 14px; font-weight: 600;
  border-radius: 50px;
  transition: all .3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,164,79,.25);
}
.btn-accent {
  background: var(--orange);
  color: #fff;
}
.btn-accent:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(240,90,36,.3);
}
.btn-outline {
  border-color: var(--border);
  color: var(--heading);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-ghost-white {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-ghost-white:hover {
  background: #fff;
  color: var(--heading);
  border-color: #fff;
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(15,23,42,.06);
}
.site-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.site-logo img { height: 52px; width: auto; }

.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  border-radius: 8px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--green);
  transition: all .3s ease;
  transform: translateX(-50%);
}
.main-nav a:hover,
.main-nav a.active { color: var(--green); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 20px; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--heading);
}
.header-phone iconify-icon { color: var(--green); font-size: 18px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--heading);
  font-size: 22px;
  align-items: center; justify-content: center;
}
.nav-toggle:hover { background: var(--green); color: #fff; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: #fff;
  box-shadow: -10px 0 40px rgba(0,0,0,.18);
  z-index: 1100;
  padding: 28px 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-head img { height: 44px; }
.mobile-nav-close {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--bg-soft);
  font-size: 20px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  font-size: 15px; font-weight: 600;
  color: var(--heading);
  border-radius: 10px;
  border-left: 3px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--bg-soft);
  color: var(--green);
  border-left-color: var(--green);
}
.mobile-nav-contact {
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px; color: var(--text-soft);
}
.mobile-nav-contact a { padding: 0; border: none; }
.mobile-nav-contact iconify-icon { color: var(--green); margin-right: 8px; }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,22,40,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  z-index: 1050;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(11,18,32,.88) 0%, rgba(11,18,32,.72) 45%, rgba(11,18,32,.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  /*background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);*/
  border-radius: 50px;
  backdrop-filter: blur(8px);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--green); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin-bottom: 34px;
  text-align: justify;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================================
   STATS BAR
   ============================================================= */
.stats-bar {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 54px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
  color: #ffffff;
}
.stat-num sup { font-size: .5em; margin-left: 3px; color: var(--green); }
.stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* =============================================================
   PILLARS (3 cards — Heritage / Quality / Reach)
   ============================================================= */
.pillars { background: var(--bg-soft); }
.pillars-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.pillars-head .section-eyebrow { justify-content: center; }
.pillars-head .section-lead { margin-left: auto; margin-right: auto; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: #fff;
  padding: 44px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  background: var(--green-lt);
  color: var(--green);
  transition: all .35s ease;
}
.pillar-card:hover .pillar-icon {
  background: var(--green);
  color: #fff;
}
.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--heading);
}
.pillar-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* =============================================================
   STORY / ABOUT
   ============================================================= */
.story { background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-content .section-lead { margin-bottom: 16px; max-width: none; }
.story-content .section-lead + .section-lead { margin-top: 0; }
.story-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.story-visual {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--border);
}
.story-badge {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.story-badge:hover {
  border-color: var(--green);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.story-badge iconify-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.story-badge strong {
  display: block;
  font-size: 15px;
  color: var(--heading);
  margin-bottom: 4px;
}
.story-badge span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================================
   HISTORY / TIMELINE
   ============================================================= */
.history { background: var(--bg-soft); }
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: flex-start;
}
.history-intro { position: sticky; top: calc(var(--header-h) + 30px); }
.history-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.history-pill {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  background: var(--green-lt);
  color: var(--green);
  border: 1px solid rgba(0,164,79,.15);
}
.history-pill.orange { background: rgba(240,90,36,.08); color: var(--orange); border-color: rgba(240,90,36,.18); }
.history-pill.green  { background: var(--green-lt); color: var(--green); border-color: rgba(0,164,79,.15); }
.history-pill.blue   { background: rgba(40,170,225,.08); color: var(--blue); border-color: rgba(40,170,225,.18); }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--green);
  opacity: .25;
}
.tl-item {
  position: relative;
  padding-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s ease;
}
.tl-item.visible { opacity: 1; transform: translateY(0); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  box-shadow: 0 0 0 4px var(--bg-soft);
}

.tl-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
  margin-bottom: 10px;
  background: var(--green-lt);
  color: var(--green);
}

.tl-year {
  font-size: 30px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  margin-bottom: 6px;
}
.tl-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--heading);
}
.tl-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* =============================================================
   LEADERSHIP / CEO
   ============================================================= */
.leadership { background: #fff; }
.leadership-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.ceo-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.ceo-img {
  position: relative;
  height: 360px;
  background: linear-gradient(180deg, var(--green-lt), #f7f9fb);
  overflow: hidden;
}
.ceo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ceo-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px 20px;
  background: linear-gradient(to top, rgba(10,22,40,.9), transparent);
  color: #fff;
}
.ceo-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.ceo-role {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--green);
  border-radius: 50px;
  color: #fff;
}
.ceo-facts { padding: 22px 24px 26px; }
.ceo-fact {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.ceo-fact:last-child { border-bottom: none; }
.ceo-fact iconify-icon {
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.leadership-text .section-lead { max-width: none; margin-bottom: 14px; }
.leadership-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.lead-stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  margin-bottom: 6px;
}
.lead-stat-num sup { font-size: .5em; color: var(--green); }
.lead-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================================
   PARTNERS MARQUEE
   ============================================================= */
.partners {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.marquee {
  overflow: hidden;
  position: relative;
 /* mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);*/
}
.marquee-track {
  display: flex;
  gap: 72px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 46px;
  width: auto;
  opacity: 1;
  /*filter: grayscale(100%);
  transition: all .3s;*/
}
/*.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}*/
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   NEWS
   ============================================================= */
.news { background: var(--bg-soft); }
.news-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 48px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.news-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
}
.news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.news-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.news-card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--heading);
}
.news-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 18px;
  flex: 1;
}
.news-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.news-link:hover { color: var(--green-dk); gap: 10px; }
.news-hidden { display: none; }
.news-more {
  text-align: center;
  margin-top: 40px;
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: flex-start;
}
.contact-info .section-lead { margin-bottom: 30px; }
.contact-item {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--green-lt);
  color: var(--green);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}
.contact-item:hover .contact-icon {
  background: var(--green);
  color: #fff;
}
.contact-item strong {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item span {
  font-size: 15px;
  color: var(--heading);
  font-weight: 500;
}
.contact-note {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}
.contact-note em { color: var(--green); font-weight: 700; font-style: normal; }

.contact-form {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--heading);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: all .25s;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,164,79,.1);
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,164,79,.25);
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 64px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 32px; height: 2px;
  background: var(--green);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover {
  color: var(--green);
  padding-left: 4px;
}
.footer-col a iconify-icon { font-size: 12px; color: var(--green); }

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.footer-contact iconify-icon {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--green); }

/* =============================================================
   SCROLL TO TOP
   ============================================================= */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,164,79,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all .35s ease;
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--green-dk); transform: translateY(-4px); }

/* =============================================================
   RESPONSIVE — DESKTOP ≤ 1200
   ============================================================= */
@media (max-width: 1200px) {
  section { padding: 80px 0; }
  .story-grid, .history-grid, .leadership-grid, .contact-grid { gap: 48px; }
  .leadership-grid { grid-template-columns: 340px 1fr; }
}

/* =============================================================
   RESPONSIVE — TABLET ≤ 992
   ============================================================= */
@media (max-width: 992px) {
  .main-nav,
  .header-phone,
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { gap: 10px; }
  section { padding: 72px 0; }
  .hero { min-height: 80vh; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .story-grid, .history-grid, .leadership-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .history-intro { position: static; }
  .leadership-grid { max-width: 620px; margin: 0 auto; }
  .ceo-card { max-width: 420px; margin: 0 auto; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================================
   RESPONSIVE — MOBILE ≤ 640
   ============================================================= */
@media (max-width: 640px) {
  :root { --header-h: 68px; }
  section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* ── Header ── */
  .site-logo img { height: 40px; }
  .nav-toggle { width: 42px; height: 42px; font-size: 20px; }

  /* ── Section headings ── */
  .section-eyebrow { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 12px; }
  .section-title { font-size: 28px; line-height: 1.2; margin-bottom: 14px; }
  .section-lead { font-size: 14.5px; line-height: 1.7; }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 70px;
  }
  .hero-kicker {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 7px 14px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
    text-align: justify;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    padding: 13px 22px;
    font-size: 13px;
  }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 34px 14px; }
  .stat-num { font-size: 34px; margin-bottom: 6px; }
  .stat-label { font-size: 10px; letter-spacing: 1.5px; }

  /* ── Pillars ── */
  .pillars-head { margin-bottom: 40px; }
  .pillars-grid { gap: 20px; }
  .pillar-card { padding: 34px 26px; }
  .pillar-icon { width: 56px; height: 56px; font-size: 26px; margin-bottom: 20px; }
  .pillar-card h3 { font-size: 18px; }
  .pillar-card p { font-size: 14px; }

  /* ── Story ── */
  .story-visual { padding: 20px; gap: 12px; }
  .story-badge { padding: 16px; gap: 14px; }
  .story-badge iconify-icon { font-size: 24px; }
  .story-badge strong { font-size: 14px; }
  .story-badge span { font-size: 12.5px; }
  .story-actions { margin-top: 26px; }

  /* ── Timeline ── */
  .timeline {
    padding-left: 0;
    margin-top: 8px;
  }
  .timeline::before {
    left: 18px;
    top: 12px;
    bottom: 12px;
    opacity: .2;
  }
  .tl-item {
    padding: 18px 18px 20px 50px;
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
  }
  .tl-item:last-child { margin-bottom: 0; }
  .tl-item::before {
    left: 12px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-width: 3px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--green-lt);
  }
  .tl-tag {
    margin-bottom: 8px;
    padding: 4px 10px;
    font-size: 9.5px;
  }
  .tl-year {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
    color: var(--green);
  }
  .tl-item h4 {
    font-size: 14.5px;
    margin-bottom: 6px;
    line-height: 1.35;
  }
  .tl-item p {
    font-size: 12.5px;
    line-height: 1.65;
  }

  /* ── Leadership ── */
  .ceo-img { height: 320px; }
  .ceo-name { font-size: 18px; }
  .ceo-facts { padding: 20px 22px 24px; }
  .ceo-fact { font-size: 13px; padding: 11px 0; }
  .leadership-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
    padding-top: 26px;
  }
  .lead-stat-num { font-size: 28px; }
  .lead-stat-lbl { font-size: 9.5px; letter-spacing: .5px; }

  /* ── Partners ── */
  .partners { padding: 48px 0; }
  .marquee-track { gap: 48px; }
  .marquee-track img { height: 36px; }

  /* ── News ── */
  .news-head { margin-bottom: 36px; }
  .news-head .btn { display: none; }
  .news-grid { grid-template-columns: 1fr; gap: 22px; }
  .news-body { padding: 22px; }
  .news-card h3 { font-size: 16px; }
  .news-card p { font-size: 13.5px; }

  /* ── Contact ── */
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-field { margin-bottom: 16px; }
  .form-field input,
  .form-field textarea { padding: 13px 14px; font-size: 14px; }
  .contact-item { padding: 16px 0; gap: 14px; }
  .contact-icon { width: 44px; height: 44px; font-size: 18px; }
  .contact-item span { font-size: 14px; }

  /* ── Footer ── */
  .site-footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { height: 54px; }
  .footer-col h4 { margin-bottom: 18px; padding-bottom: 12px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 22px 0;
    font-size: 12px;
  }

  /* ── Scroll top ── */
  .scroll-top { bottom: 18px; right: 18px; width: 42px; height: 42px; font-size: 18px; }
}

/* =============================================================
   RESPONSIVE — SMALL MOBILE ≤ 400
   ============================================================= */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 29px; }
  .hero-sub { font-size: 14px; text-align: justify; }
  .section-title { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 28px 14px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 32px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pillar-card { padding: 30px 22px; }
  .contact-form { padding: 24px 18px; }
}

/* =============================================================
   UTILITIES
   ============================================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: all .8s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
.no-scroll { overflow: hidden; }

/* =============================================================
   INNER PAGE — page header / breadcrumb / sections
   ============================================================= */
.page-header {
  position: relative;
  padding: 140px 0 72px;
  background: linear-gradient(135deg, #07331c 0%, #0b1220 100%);
  color: #fff;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 300px at 85% 0%, rgba(0,164,79,.28), transparent 70%),
    radial-gradient(600px 240px at 10% 100%, rgba(40,170,225,.18), transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #d8f0e1;
  margin-bottom: 18px;
}
.page-header-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(0,164,79,.25);
}
.page-header h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-header h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--green) 0%, #4cd089 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-header p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
  color: rgba(255,255,255,.78);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}
.breadcrumb a {
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--green); }
.breadcrumb iconify-icon {
  font-size: 14px;
  color: rgba(255,255,255,.4);
}
.breadcrumb .current { color: #fff; }

/* Section block (used for page bodies) */
.page-section {
  padding: 80px 0;
  background: #fff;
}
.page-section.alt { background: var(--bg-soft); }
.page-section .section-title { margin-bottom: 18px; }

/* Two-column content layout */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-2col img,
.content-2col .visual {
  width: 100%; height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px -16px rgba(15,23,42,.18);
}
.content-2col .text p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 14px;
}

/* Value card grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(15,23,42,.18);
  border-color: rgba(0,164,79,.35);
}
.value-card .vc-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--green-lt);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Mission/Vision split blocks */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.mv-block {
  padding: 44px 36px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.mv-block::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green);
}
.mv-block.alt::before { background: var(--orange); }
.mv-block .mv-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--green-lt);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-bottom: 22px;
}
.mv-block.alt .mv-icon { background: rgba(240,90,36,.1); color: var(--orange); }
.mv-block h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 16px;
}
.mv-block p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Featured / single content */
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose h2, .prose h3 {
  color: var(--heading);
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 14px;
}
.prose h2 { font-size: 26px; }
.prose h3 { font-size: 20px; }
.prose p, .prose li {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 14px;
}
.prose ul, .prose ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.prose strong { color: var(--heading); }

/* Job listing card */
.job-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(15,23,42,.18);
  border-color: rgba(0,164,79,.35);
}
.job-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.job-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--muted);
}
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta iconify-icon { color: var(--green); font-size: 14px; }

/* 404 page */
.error-page {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: var(--bg-soft);
}
.error-page .err-num {
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), #4cd089);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.error-page h1 {
  font-size: 32px;
  color: var(--heading);
  margin-bottom: 12px;
}
.error-page p {
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 480px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(15,23,42,.18);
  border-color: rgba(0,164,79,.35);
}
.product-card .prod-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card .prod-img iconify-icon {
  font-size: 68px;
  color: var(--green);
  opacity: .7;
}
.product-card .prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-card .prod-body { padding: 22px 22px 24px; }
.product-card .prod-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-lt);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.product-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Category filter pills */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 8px;
  justify-content: center;
}
.filter-pill {
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Inner page mobile */
@media (max-width: 992px) {
  .content-2col { grid-template-columns: 1fr; gap: 36px; }
  .content-2col img, .content-2col .visual { min-height: 280px; }
  .mv-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 640px) {
  .page-header { padding: 110px 0 56px; }
  .page-header h1 { font-size: 30px; }
  .page-header p { font-size: 15px; }
  .page-section { padding: 56px 0; }
  .mv-block { padding: 32px 24px; }
  .mv-block h3 { font-size: 22px; }
  .job-card { grid-template-columns: 1fr; gap: 14px; }
  .job-card .btn { width: 100%; justify-content: center; }
}
