/* ============================================================
   JZB Secretary Pte. Ltd. - Stylesheet
   Brand: Yellow #FFD600 + Navy #1B3D8F (from logo)
   ============================================================ */

:root {
  /* Colors */
  --y: #FFD600;       /* Brand yellow */
  --yd: #E6C000;      /* Yellow dark */
  --yl: #FFFBE6;      /* Yellow light */
  --ym: #FFF0A0;      /* Yellow mid */
  --n: #1B3D8F;       /* Brand navy */
  --nm: #2952B3;      /* Navy mid */
  --nl: #ECF0FB;      /* Navy light */
  --nd: #0D2461;      /* Navy dark */
  --w: #FFFFFF;
  --off: #FAFAF8;
  --g1: #F4F4F0;
  --g2: #E8E8E0;
  --g4: #AAAAAA;
  --g6: #555555;
  --g8: #2A2A26;
  --wa: #25D366;
  /* Shadows */
  --sh: 0 2px 12px rgba(27, 61, 143, .08);
  --sh2: 0 6px 28px rgba(27, 61, 143, .14);
  --sh3: 0 12px 48px rgba(27, 61, 143, .2);
  /* Radius */
  --r: 14px;
  --rs: 8px;
  --rl: 22px;
  /* Typography */
  --fb: 'Noto Sans', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --fd: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', Georgia, serif;
  --tr: all .26s cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  color: var(--g8);
  background: var(--w);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--fb); cursor: pointer; }
img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--g2);
  transition: var(--tr);
}
.hdr.sc { box-shadow: var(--sh2); }
.hdr-in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 46px; width: auto; object-fit: contain; }
.mnav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nl {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--g6);
  border-radius: 8px;
  border: none;
  background: none;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nl:hover { color: var(--n); background: var(--nl); }
.nl.ac {
  color: var(--n);
  background: var(--yl);
  border-bottom: 2px solid var(--y);
}
.hdr-r { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lbar {
  display: flex;
  align-items: center;
  background: var(--g1);
  border-radius: 40px;
  padding: 3px;
  gap: 1px;
}
.lp {
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 40px;
  border: none;
  background: none;
  color: var(--g6);
  transition: var(--tr);
  white-space: nowrap;
}
.lp.ac {
  background: var(--n);
  color: white;
  box-shadow: 0 2px 6px rgba(27, 61, 143, .28);
}
.ctab {
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--y), var(--yd));
  color: var(--nd);
  border: none;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
  transition: var(--tr);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.ctab:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 214, 0, .5);
}
.hmbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: none;
}
.hmbg span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--g8);
  border-radius: 2px;
  transition: var(--tr);
}

/* ===== MOBILE NAV ===== */
.mnb {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--g2);
  padding: 10px 20px 18px;
  z-index: 999;
  flex-direction: column;
  gap: 3px;
  box-shadow: var(--sh3);
  animation: slD .2s ease;
}
.mnb.op { display: flex; }
@keyframes slD {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mnb .nl {
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 10px;
  text-align: left;
  width: 100%;
}
.mlangs {
  display: flex;
  gap: 6px;
  padding: 12px 4px 4px;
  border-top: 1px solid var(--g2);
  margin-top: 6px;
}
.mlangs .lp {
  flex: 1;
  text-align: center;
  border: 1.5px solid var(--g2);
  border-radius: 8px;
  padding: 9px 4px;
}
.mlangs .lp.ac { border-color: var(--n); }

/* ===== HERO (YELLOW) ===== */
.pth { padding-top: 72px; }
.hero {
  background: var(--y);
  position: relative;
  overflow: hidden;
}
.hero-pat {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: repeating-linear-gradient(45deg, var(--n) 0, var(--n) 1px, transparent 0, transparent 60%);
  background-size: 24px 24px;
}
.hero-in {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 28px 0;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 40px;
  align-items: flex-end;
}
.hero-cnt { padding-bottom: 72px; }
.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 61, 143, .1);
  border: 1.5px solid rgba(27, 61, 143, .25);
  color: var(--nd);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.hero-dot {
  width: 7px; height: 7px;
  background: var(--n);
  border-radius: 50%;
  animation: bl 1.6s infinite;
}
@keyframes bl {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}
.hero h1 {
  font-family: var(--fd);
  font-size: 46px;
  font-weight: 800;
  color: var(--nd);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--n);
}
.hero-desc {
  font-size: 16px;
  color: var(--nd);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 520px;
  opacity: .85;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.bnavy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--n);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--fb);
  transition: var(--tr);
  text-decoration: none;
}
.bnavy:hover {
  background: var(--nm);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 61, 143, .4);
}
.boutline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: var(--nd);
  border: 2px solid var(--nd);
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--fb);
  transition: var(--tr);
  text-decoration: none;
}
.boutline:hover { background: rgba(27, 61, 143, .08); }
.byellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--y);
  color: var(--nd);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--fb);
  transition: var(--tr);
  position: relative;
  text-decoration: none;
}
.byellow:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
}
.hero-vis {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-vis svg { width: 100%; max-width: 460px; height: auto; }

/* ===== STATS BAR ===== */
.stats {
  background: var(--w);
  box-shadow: 0 4px 28px rgba(27, 61, 143, .12);
  padding: 32px 28px;
  position: relative;
  z-index: 10;
}
.stats-in {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.stb {
  text-align: center;
  padding: 18px 8px;
  border-right: 1px solid var(--g2);
}
.stb:last-child { border-right: none; }
.stnum {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 800;
  color: var(--n);
  line-height: 1;
  margin-bottom: 5px;
}
.stlbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--g6);
}

/* ===== SECTIONS ===== */
.sec { padding: 88px 28px; }
.sec-alt { background: var(--off); }
.sec-yl { background: var(--yl); }
.sec-in { max-width: 1300px; margin: 0 auto; }
.sec-hd { margin-bottom: 50px; }
.sec-hd.ctr { text-align: center; }
.sec-hd.ctr .sec-sub { margin-left: auto; margin-right: auto; }
.sec-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--n);
  background: var(--nl);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 12px;
  border: 1px solid rgba(27, 61, 143, .15);
}
.sec-ttl {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 800;
  color: var(--nd);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.sec-ttl em { font-style: normal; color: var(--n); }
.sec-sub {
  font-size: 15.5px;
  color: var(--g6);
  line-height: 1.75;
  max-width: 600px;
}

/* ===== SERVICE CARDS ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sc {
  background: var(--w);
  border-radius: var(--r);
  padding: 34px 28px;
  box-shadow: var(--sh);
  border: 1.5px solid var(--g2);
  transition: var(--tr);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--y), var(--n));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.sc:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
  border-color: var(--y);
}
.sc:hover::after { transform: scaleX(1); }
.sc-ico {
  width: 56px; height: 56px;
  background: var(--yl);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  border: 1.5px solid var(--ym);
  transition: var(--tr);
}
.sc:hover .sc-ico { background: var(--y); }
.sc-nm {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 8px;
}
.sc-ds {
  font-size: 13.5px;
  color: var(--g6);
  line-height: 1.7;
}
.sc-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--n);
}

/* ===== WHY US ===== */
.why-lay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-feats {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}
.wf { display: flex; gap: 16px; align-items: flex-start; }
.wf-ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--y);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1.5px solid var(--yd);
}
.wf-h {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 4px;
}
.wf-p {
  font-size: 13.5px;
  color: var(--g6);
  line-height: 1.65;
}
.why-panel {
  background: linear-gradient(155deg, var(--n), var(--nm));
  border-radius: var(--rl);
  padding: 42px;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-panel::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(255, 214, 0, .1);
  border-radius: 50%;
}
.why-panel::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
}
.wp-ttl {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  color: var(--y);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.cert {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--rs);
  padding: 14px 18px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cert:last-child { margin-bottom: 0; }
.cert-l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 3px;
}
.cert-v {
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.cert-v.yl { color: var(--y); }

/* ===== PROCESS STEPS ===== */
.proc-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
.proc-line {
  position: absolute;
  top: 37px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--y), var(--n));
}
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-n {
  width: 74px; height: 74px;
  background: var(--w);
  border: 3px solid var(--y);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--n);
  box-shadow: 0 4px 14px rgba(255, 214, 0, .25);
  transition: var(--tr);
}
.proc-step:hover .proc-n {
  background: var(--y);
  color: var(--nd);
}
.proc-t {
  font-size: 14px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 5px;
}
.proc-d {
  font-size: 12.5px;
  color: var(--g6);
  line-height: 1.55;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tc {
  background: var(--w);
  border-radius: var(--r);
  padding: 30px;
  box-shadow: var(--sh);
  border: 1.5px solid var(--g2);
  position: relative;
}
.tc::before {
  content: '"';
  position: absolute;
  top: 8px; right: 20px;
  font-family: var(--fd);
  font-size: 72px;
  color: var(--ym);
  line-height: 1;
}
.tc-stars {
  color: var(--y);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.tc-txt {
  font-size: 14px;
  color: var(--g6);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.tc-auth { display: flex; align-items: center; gap: 11px; }
.tc-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.tc-nm {
  font-size: 14px;
  font-weight: 700;
  color: var(--nd);
}
.tc-rl {
  font-size: 12px;
  color: var(--g4);
}

/* ===== CTA BANNER ===== */
.cta-bann {
  background: linear-gradient(135deg, var(--n) 0%, var(--nm) 100%);
  padding: 76px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bann::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='20' stroke='rgba(255,214,0,.06)' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='40' cy='40' r='35' stroke='rgba(255,214,0,.03)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}
.cta-bann h2 {
  font-family: var(--fd);
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  position: relative;
}
.cta-bann h2 em { font-style: normal; color: var(--y); }
.cta-bann p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 34px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

/* ===== INNER PAGE HERO ===== */
.pghero {
  background: linear-gradient(155deg, var(--nd), var(--n));
  padding: 68px 28px;
  text-align: center;
}
.pghero h1 {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.pghero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.pghero .yl { color: var(--y); }

/* ===== SERVICES PAGE ===== */
.lic-strip {
  background: linear-gradient(135deg, var(--yl), white);
  border: 1.5px solid var(--ym);
  border-radius: var(--r);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.lic-strip .lico { font-size: 38px; flex-shrink: 0; }
.lic-strip h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--nd);
  margin-bottom: 3px;
}
.lic-strip p {
  font-size: 12.5px;
  color: var(--g6);
}
.lic-strip .lbdgs {
  display: flex;
  gap: 7px;
  margin-left: auto;
  flex-wrap: wrap;
}
.fbg {
  background: var(--nl);
  border: 1px solid rgba(27, 61, 143, .2);
  color: var(--n);
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .4px;
}
.sdet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.sdet {
  background: var(--w);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: var(--sh);
  border: 1.5px solid var(--g2);
  border-top: 4px solid var(--y);
}
.sdet-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.sdet-ico { font-size: 34px; }
.sdet-nm {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  color: var(--nd);
}
.sdet-ds {
  font-size: 14px;
  color: var(--g6);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sdet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sdet-list li {
  font-size: 13px;
  color: var(--g6);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.sdet-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--y);
  font-size: 9px;
  top: 4px;
}

/* ===== ABOUT PAGE ===== */
.ab-lay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ab-h2 {
  font-family: var(--fd);
  font-size: 34px;
  font-weight: 800;
  color: var(--nd);
  margin-bottom: 18px;
  line-height: 1.25;
}
.ab-h2 em { font-style: normal; color: var(--n); }
.ab-p {
  font-size: 14.5px;
  color: var(--g6);
  line-height: 1.8;
  margin-bottom: 14px;
}
.ab-panel {
  background: linear-gradient(155deg, var(--nd), var(--n));
  border-radius: var(--rl);
  padding: 40px;
}
.ab-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  gap: 12px;
}
.ab-row:last-child { border-bottom: none; }
.ab-rl {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}
.ab-rv {
  font-size: 14px;
  font-weight: 800;
  color: var(--y);
  text-align: right;
  max-width: 220px;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vc {
  background: var(--w);
  border-radius: var(--r);
  padding: 34px 26px;
  box-shadow: var(--sh);
  border: 1.5px solid var(--g2);
  text-align: center;
}
.vc-ico { font-size: 40px; margin-bottom: 16px; }
.vc-nm {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 8px;
}
.vc-ds {
  font-size: 13.5px;
  color: var(--g6);
  line-height: 1.7;
}

/* ===== FAQ PAGE ===== */
.faq-wr { max-width: 800px; margin: 0 auto; }
.fi { border-bottom: 1.5px solid var(--g2); }
.fiq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 18px;
}
.fiq h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--nd);
  line-height: 1.45;
}
.fitog {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--yl);
  border: 1.5px solid var(--ym);
  color: var(--n);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--tr);
  line-height: 1;
}
.fi.op .fitog {
  background: var(--y);
  border-color: var(--y);
  color: var(--nd);
  transform: rotate(45deg);
}
.fia {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--g6);
  line-height: 1.8;
}
.fi.op .fia { display: block; }

/* ===== GUIDE PAGE ===== */
.guide-steps { display: flex; flex-direction: column; }
.gs {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--g2);
}
.gs:last-child { border-bottom: none; }
.gs-num {
  width: 64px; height: 64px;
  background: var(--y);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 800;
  color: var(--nd);
  flex-shrink: 0;
  border: 3px solid var(--yd);
}
.gs-h {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 8px;
}
.gs-p {
  font-size: 14px;
  color: var(--g6);
  line-height: 1.75;
  margin-bottom: 10px;
}
.gs-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.gs-tag {
  background: var(--nl);
  color: var(--n);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
}
.gs-tag.yl {
  background: var(--yl);
  color: var(--nd);
}

/* ===== CONTACT PAGE ===== */
.ct-lay {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: start;
}
.ct-form {
  background: var(--w);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--sh2);
  border: 1.5px solid var(--g2);
}
.cf-ttl {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 4px;
}
.cf-sub {
  font-size: 13.5px;
  color: var(--g6);
  margin-bottom: 28px;
}
.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--g8);
  margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--g2);
  border-radius: var(--rs);
  font-size: 14px;
  color: var(--g8);
  outline: none;
  font-family: var(--fb);
  transition: var(--tr);
  background: white;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--y);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, .18);
}
.fg textarea {
  height: 114px;
  resize: vertical;
  font-family: var(--fb);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sub-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--y), var(--yd));
  color: var(--nd);
  border: none;
  border-radius: var(--rs);
  font-size: 15px;
  font-weight: 800;
  font-family: var(--fb);
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sub-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(255, 214, 0, .5);
}
.fn {
  font-size: 11.5px;
  color: var(--g4);
  text-align: center;
  margin-top: 10px;
}
.ok-msg {
  display: none;
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  border-radius: var(--rs);
  padding: 14px 18px;
  color: #065F46;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}
.ct-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-c {
  background: var(--w);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--sh);
  border: 1.5px solid var(--g2);
}
.ic-ttl {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 20px;
}
.ir {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.ir:last-child { margin-bottom: 0; }
.ir-ico {
  width: 42px; height: 42px;
  background: var(--yl);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--ym);
}
.ir h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nd);
  margin-bottom: 3px;
}
.ir p {
  font-size: 12.5px;
  color: var(--g6);
  line-height: 1.55;
}
.wa-card {
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  color: white;
}
.wa-card-ico { font-size: 40px; margin-bottom: 10px; }
.wa-card h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.wa-card p {
  font-size: 13px;
  opacity: .9;
  line-height: 1.65;
  margin-bottom: 18px;
}
.wa-lnk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: white;
  color: #128C7E;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: var(--tr);
  text-decoration: none;
  cursor: pointer;
}
.wa-lnk:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--nd);
  color: white;
  padding: 68px 28px 28px;
}
.ft-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 28px;
}
.ft-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  background: white;
  padding: 4px 8px;
  border-radius: 6px;
}
.ft-abt p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  margin-bottom: 18px;
}
.ft-brow {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.fbg-d {
  background: rgba(255, 214, 0, .12);
  border: 1px solid rgba(255, 214, 0, .3);
  color: var(--y);
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .4px;
}
.ft-ct {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 18px;
}
.ft-lnks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ft-lnks li, .ft-lnks a {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
}
.ft-lnks li:hover, .ft-lnks a:hover { color: var(--y); }
.ft-cr {
  display: flex;
  gap: 11px;
  margin-bottom: 11px;
  align-items: flex-start;
}
.ft-cr .ico {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ft-cr span, .ft-cr a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55;
  text-decoration: none;
}
.ft-cr a:hover { color: var(--y); }
.ft-bot {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bot p {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}
.ft-disc {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .3);
  max-width: 560px;
  text-align: right;
  line-height: 1.6;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-fl {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-tip {
  background: white;
  color: var(--g8);
  padding: 8px 14px;
  border-radius: 22px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: var(--sh2);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--tr);
  pointer-events: none;
}
.wa-fl:hover .wa-tip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: var(--tr);
  animation: wap 2.5s infinite;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.wa-btn:hover {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
}
@keyframes wap {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 4px 36px rgba(37, 211, 102, .65), 0 0 0 8px rgba(37, 211, 102, .08); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .mnav { display: none; }
  .hmbg { display: flex; }
  .hero-in { grid-template-columns: 1fr; }
  .hero-vis { display: none; }
  .hero-cnt { padding-bottom: 64px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-lay { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .sdet-grid { grid-template-columns: 1fr; }
  .ab-lay { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .sec { padding: 56px 20px; }
  .sec-ttl { font-size: 28px; }
  .stats-in { grid-template-columns: 1fr 1fr; }
  .stb:nth-child(2) { border-right: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-row { grid-template-columns: 1fr 1fr; }
  .proc-line { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 24px; }
  .ft-bot { flex-direction: column; text-align: center; }
  .ft-disc { text-align: center; }
  .ct-lay { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .ctab { display: none; }
  .pghero h1 { font-size: 28px; }
  .cta-bann h2 { font-size: 28px; }
  .lic-strip { flex-direction: column; text-align: center; }
  .lic-strip .lbdgs { margin: 0 auto; }
  .hdr-in { padding: 0 18px; }
  .stats { padding: 24px 18px; }
  .frow { grid-template-columns: 1fr; }
  .gs { grid-template-columns: 56px 1fr; gap: 16px; }
  .gs-num { width: 56px; height: 56px; font-size: 22px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .bnavy, .hero-btns .boutline { justify-content: center; }
  .proc-row { grid-template-columns: 1fr; }
  .wa-fl { bottom: 16px; right: 16px; }
  .hero-in { padding: 64px 18px 0; }
  .ct-form { padding: 28px 22px; }
  .ab-rv { font-size: 12.5px; max-width: 160px; }
}
