 
   :root {
  --bg: #f0f6ff;
  --bg2: #08111f;
  --green: #005a3c;
  --green2: #005a3c;
  --green3: #005a3c;
  --green4: #005a3c;
  --gl:  rgba(0, 90, 60, 0.12);
  --gl2: rgba(0, 90, 60, 0.25);
  --gl3: rgba(0, 90, 60, 0.08);

  --glass:  rgba(255, 255, 255, 0.055);
  --glass2: rgba(255, 255, 255, 0.09);
  --glass3: rgba(255, 255, 255, 0.13);
  --gb:  rgba(0, 0, 0, 0.1);
  --gb2: rgba(0, 0, 0, 0.18);
  --text:  #005a3c;
  --text2: var(--bg2);
  --text3: #555e6c;
  --serif: "Instrument Serif", Georgia, serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --T: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --r:  20px;
  --rs: 14px;
  --rx: 8px;
}

/* ── BOOTSTRAP RESET ── */
a { color: inherit; text-decoration: none; }
a:hover, a:focus { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { color: var(--bg2); margin-top: 0; }
body { color: var(--text); }
.text-muted { color: var(--text3) !important; }
.border { border-color: var(--gb) !important; }

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: #ffffff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
  background-color: #ffffff;
}

/* ── AMBIENT ORBS ── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.orb1 { width: 700px; height: 700px; background-color: rgba(0,90,60,0.05); top: -200px; left: -150px; animation: orbDrift1 18s ease-in-out infinite alternate; }
.orb2 { width: 500px; height: 500px; background-color: rgba(0,90,60,0.04); bottom: -100px; right: -100px; animation: orbDrift2 22s ease-in-out infinite alternate; }
.orb3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(8,17,31,0.06), transparent 70%); top: 40%; left: 55%; animation: orbDrift3 26s ease-in-out infinite alternate; }
@keyframes orbDrift1 { to { transform: translate(80px, 120px) scale(1.1); } }
@keyframes orbDrift2 { to { transform: translate(-60px, -80px) scale(1.15); } }
@keyframes orbDrift3 { to { transform: translate(-120px, 60px) scale(0.9); } }

/* ── SCROLL PROGRESS ── */
#spb {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2.5px; background: #005a3c;
  transform: scaleX(0); transform-origin: left; z-index: 10001;
}

/* ── NAVBAR ── */
#nb {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 64px; background: white;
  backdrop-filter: saturate(200%) blur(32px);
  -webkit-backdrop-filter: saturate(200%) blur(32px);
  border-bottom: 1px solid var(--gb);
  transition: background var(--T), box-shadow var(--T);
}
#nb.nb--scroll { background: white; box-shadow: 0 4px 40px rgba(0,0,0,0.12); }
.nbi { max-width: 1280px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; }
.nlogo img { height: 30px; width: auto; display: block; }
.nb-links { display: flex; gap: 4px; list-style: none; }
.nb-links a {
 font-size: .78rem;
    font-weight: 500;
    color: var(--bg2);
    text-decoration: none;
    padding: 13px 13px;
    border-radius: var(--rx);
    transition: all .18s;
    position: relative;
}
.nb-links a::after {
  content: ""; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 1.5px; background: #005a3c; transition: transform 0.22s;
}
.nb-links a:hover, .nb-links a.active { color: black; background: rgba(0,90,60,0.06); }
.nb-links a.active::after, .nb-links a:hover::after { transform: translateX(-50%) scaleX(1); }
.nb-cta {
  background: #005a3c; color: #fff; border: none;
  padding: 9px 22px; border-radius: 24px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.22s;
  font-family: var(--sans); box-shadow: 0 0 20px rgba(0,90,60,0.3);
  -webkit-tap-highlight-color: transparent;
}
.nb-cta:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 4px 30px rgba(0,90,60,0.45); color: #fff; }
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--bg2); border-radius: 2px; transition: all 0.3s; }
.ham.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.active span:nth-child(2) { opacity: 0; }
.ham.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
#mob {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: white; backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; padding-top: 64px;
}
#mob.open { display: flex; animation: fadeIn 0.22s ease; }
#mob a { font-size: 1.4rem; font-weight: 400; color: var(--bg2); text-decoration: none; font-family: var(--serif); font-style: italic; }
#mob a:hover { color: #005a3c; }
#mob .nb-cta { font-style: normal; font-size: 0.95rem; padding: 14px 38px; margin-top: 8px; }

/* ── GLASS CARD BASE ── */
.gc {
  background: rgba(0,90,60,0.03);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 0.5px solid var(--gb); border-radius: var(--r); transition: all var(--T);
}
.gc:hover {
  background: rgba(0,90,60,0.06); border-color: var(--gb2);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5), 0 0 0 1px rgba(0,90,60,0.15);
}

/* ── HERO (shared) ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 110px 32px 80px; overflow: hidden; z-index: 1;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.hero > * { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; backdrop-filter: blur(16px);
  border: 1px solid rgba(0,90,60,0.25); border-radius: 30px;
  padding: 6px 18px 6px 8px; font-size: 0.72rem; font-weight: 500;
  color: #005a3c; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 28px; animation: fadeInUp 0.5s ease 0.1s both;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: #005a3c; animation: pulseDot 2.5s infinite; flex-shrink: 0; }
.hero-title {
  font-family: var(--serif); font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-style: italic; font-weight: 400; line-height: 1.08;
  max-width: 840px; margin: 0 auto; animation: fadeInUp 0.65s ease 0.22s both;
  background: linear-gradient(135deg, #08111f 0%, #005a3c 60%, #007a52 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .accent { font-style: normal; -webkit-text-fill-color: #005a3c; }
.hero-rule { width: 0; height: 2px; background: linear-gradient(90deg, #005a3c, #005a3c); margin: 24px auto; animation: expandRule 0.7s ease 0.72s both; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--bg2);
  font-weight: 300; line-height: 1.75; max-width: 570px;
  margin: 0 auto 48px; animation: fadeInUp 0.65s ease 0.42s both;
}
.typer-wrap { display: block; margin-top: 4px; color: #005a3c; font-style: normal; }
#typer { border-right: 2px solid #005a3c; padding-right: 3px; animation: blinkCaret 0.75s step-end infinite; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.65s ease 0.58s both; }

/* BUTTONS */
.btn-p {
  background: #005a3c; color: #fff; border: none;
  padding: 15px 36px; border-radius: 30px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.24s;
  font-family: var(--sans); box-shadow: 0 4px 28px rgba(0,90,60,0.3);
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn-p:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(0,90,60,0.45); background: #005a3c; color: #fff; }
.btn-s {
  background: white; color: var(--bg2); border: 1px solid var(--bg2);
  padding: 15px 36px; border-radius: 30px; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.24s;
  font-family: var(--sans); backdrop-filter: blur(16px);
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn-s:hover { background: #005a3c; color: white; border-color: #005a3c; transform: translateY(-3px); }

/* Hero stats */
.hero-stats {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin-top: 72px; border-top: 1px solid var(--gb); padding-top: 48px;
  width: 100%; max-width: 800px; animation: fadeInUp 0.65s ease 0.75s both;
}
.hstat { flex: 1; min-width: 140px; text-align: center; padding: 0 24px; position: relative; }
.hstat + .hstat::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 36px; background: var(--gb); }
.hstat-n { font-family: var(--serif); font-size: 2.6rem; color: var(--bg2); line-height: 1; font-style: italic; }
.hstat-l { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 6px; }

/* ── TRUST BAR ── */
.trust { position: relative; z-index: 1; background: white; backdrop-filter: blur(20px); border-top: 1px solid var(--gb); border-bottom: 1px solid var(--gb); padding: 20px 32px; }
.trust-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap; }
.trust-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bg2); font-weight: 600; white-space: nowrap; }
.trust-sep { width: 1px; height: 16px; background: var(--gb2); }
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-item { font-size: 0.78rem; color: var(--bg2); font-weight: 500; transition: color 0.2s; cursor: default; }
.trust-item:hover { color: #005a3c; }

/* ── SECTIONS ── */
section { padding: 100px 32px; position: relative; z-index: 1; background-color: white; }
.si { max-width: 1280px; margin: 0 auto; background-color: white; }
.sec-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: #005a3c; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.sec-tag::before { content: ""; display: inline-block; width: 20px; height: 2px; background: #005a3c; flex-shrink: 0; }
.sec-h { font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 2.9rem); font-style: italic; font-weight: 400; line-height: 1.15; color: var(--bg2); }
.sec-h strong { font-style: normal; color: var(--bg2); }
.sec-sub { font-size: 0.98rem; color: var(--bg2); line-height: 1.74; max-width: 520px; margin-top: 14px; }

/* ── SERVICES ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.svc-card {
  background: rgba(0,90,60,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--gb); border-radius: var(--r);
  padding: 32px 28px; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default; position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #005a3c, transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.svc-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(0,90,60,0.06), transparent 65%); opacity: 0; transition: opacity 0.35s; border-radius: var(--r); }
.svc-card:hover { background: rgba(0,90,60,0.06); border-color: rgba(0,90,60,0.35); box-shadow: 0 28px 70px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { opacity: 1; }
.svc-ico { font-size: 2.2rem; margin-bottom: 18px; display: block; transition: transform 0.35s; }
.svc-card:hover .svc-ico { transform: scale(1.12) rotate(-4deg); }
.svc-num { font-size: 0.63rem; font-weight: 700; color: #005a3c; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.svc-name { font-size: 1rem; font-weight: 600; color: var(--bg2); margin-bottom: 10px; letter-spacing: -0.01em; }
.svc-body { font-size: 0.83rem; color: var(--bg2); line-height: 1.65; }
.svc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.svc-tag { font-size: 0.63rem; background: var(--gl); color: #005a3c; padding: 3px 10px; border-radius: 4px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid var(--gl2); }

/* ── METRICS ── */
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.metric { padding: 36px 28px; text-align: center; position: relative; overflow: hidden; }
.metric::before { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) scaleX(0); width: 40px; height: 2px; background: #005a3c; transition: transform 0.4s; transform-origin: center; }
.metric:hover::before { transform: translateX(-50%) scaleX(1); }
.metric-n { font-family: var(--serif); font-size: 3rem; color: #005a3c; font-style: italic; line-height: 1; }
.metric-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-top: 10px; }
.metric-desc { font-size: 0.78rem; color: var(--bg2); margin-top: 6px; line-height: 1.5; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 60px; }
.why-card { padding: 36px; }
.why-card.hero-card { grid-column: 1 / -1; }
.why-ico-wrap { width: 52px; height: 52px; border-radius: var(--rx); background: var(--gl); border: 1px solid var(--gl2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; transition: transform 0.3s, background 0.3s; }
.gc:hover .why-ico-wrap { transform: scale(1.08) rotate(-4deg); background: var(--gl2); }
.why-name { font-size: 1rem; font-weight: 600; color: var(--bg2); margin-bottom: 10px; letter-spacing: -0.01em; }
.why-body { font-size: 0.86rem; color: var(--bg2); line-height: 1.72; }

/* ── INDUSTRIES ── */
.ind-scroll { display: flex; gap: 14px; overflow-x: auto; margin-top: 48px; padding-bottom: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.ind-scroll::-webkit-scrollbar { display: none; }
.ind-chip { flex-shrink: 0; min-width: 155px; padding: 20px 22px; scroll-snap-align: start; cursor: default; transition: all 0.28s; }
.ind-chip:hover { transform: translateY(-4px); }
.ind-chip:hover .ind-name { color: #005a3c; }
.ind-emo { font-size: 1.6rem; margin-bottom: 10px; display: block; transition: transform 0.3s; }
.ind-chip:hover .ind-emo { transform: scale(1.15); }
.ind-name { font-size: 0.84rem; font-weight: 600; color: var(--bg2); transition: color 0.2s; }
.ind-sub { font-size: 0.71rem; color: var(--text3); margin-top: 3px; }

/* ── PROCESS ── */
.proc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 64px; position: relative; }
.proc-line { position: absolute; top: 27px; left: calc(10% + 20px); right: calc(10% + 20px); height: 1px; background: var(--gb); z-index: 0; overflow: hidden; }
.proc-line-fill { height: 100%; width: 0; background: linear-gradient(90deg, #005a3c, #005a3c); animation: fillLine 1.8s ease 1s forwards; }
.proc-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.proc-dot { width: 54px; height: 54px; border-radius: 50%; background: white; backdrop-filter: blur(12px); border: 1px solid var(--gb); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 0.82rem; font-weight: 700; color: var(--bg2); transition: all 0.45s; }
.proc-step.vis .proc-dot { border-color: #005a3c; background: var(--gl); color: #005a3c; box-shadow: 0 0 0 6px rgba(0,90,60,0.1), 0 0 30px rgba(0,90,60,0.2); }
.proc-num { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: #005a3c; font-weight: 700; margin-bottom: 6px; opacity: 0; transition: opacity 0.4s 0.2s; }
.proc-step.vis .proc-num { opacity: 1; }
.proc-title { font-size: 0.83rem; font-weight: 600; color: var(--bg2); line-height: 1.3; opacity: 0; transform: translateY(8px); transition: opacity 0.4s 0.3s, transform 0.4s 0.3s; }
.proc-step.vis .proc-title { opacity: 1; transform: none; }
.proc-desc { font-size: 0.74rem; color: var(--bg2); line-height: 1.55; margin-top: 6px; opacity: 0; transform: translateY(8px); transition: opacity 0.4s 0.42s, transform 0.4s 0.42s; }
.proc-step.vis .proc-desc { opacity: 1; transform: none; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.testi-card { padding: 28px; position: relative; overflow: hidden; }
.testi-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: linear-gradient(90deg, transparent, #005a3c, transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.testi-card:hover::before { transform: scaleX(1); }
.testi-mark { font-family: var(--serif); font-size: 4rem; color: var(--gl2); line-height: 0.8; font-style: italic; margin-bottom: 14px; }
.testi-quote { font-size: 0.87rem; color: var(--bg2); line-height: 1.74; font-style: italic; margin-bottom: 22px; }
.testi-line { width: 28px; height: 1.5px; background: #005a3c; margin-bottom: 14px; transition: width 0.3s; }
.testi-card:hover .testi-line { width: 48px; }
.testi-name { font-size: 0.87rem; font-weight: 600; color: var(--bg2); }
.testi-role { font-size: 0.73rem; color: var(--text3); margin-top: 2px; }

/* ── CTA BAND ── */
.cta-band { position: relative; z-index: 1; padding: 0 32px; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: white; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); z-index: -1; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(0,90,60,0.06), transparent 65%); z-index: -1; }
.cta-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 80px 0; border-top: 1px solid var(--gb); border-bottom: 1px solid var(--gb); }
.cta-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--bg2); font-style: italic; line-height: 1.2; font-weight: 400; }
.cta-title strong { font-style: normal; color: #005a3c; }
.cta-sub { font-size: 0.92rem; color: var(--bg2); margin-top: 12px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 420px 1fr; gap: 72px; align-items: start; margin-top: 64px; }
.ci-head { font-family: var(--serif); font-size: 1.7rem; font-style: italic; color: var(--bg2); margin-bottom: 14px; font-weight: 400; line-height: 1.25; }
.ci-desc { font-size: 0.9rem; color: var(--bg2); line-height: 1.74; margin-bottom: 32px; }
.ci-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; transition: transform 0.2s; }
.ci-row:hover { transform: translateX(4px); }
.ci-ico { width: 40px; height: 40px; border-radius: var(--rx); background: var(--gl); border: 1px solid var(--gl2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: background 0.2s; }
.ci-row:hover .ci-ico { background: var(--gl2); }
.ci-val { font-size: 0.86rem; color: var(--bg2); line-height: 1.55; }
.ci-val a { color: #005a3c; text-decoration: none; transition: color 0.2s; }
.ci-val a:hover { color: var(--bg2); }
.cf-wrap { padding: 40px; }
.cf-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bg2); font-weight: 600; margin-bottom: 7px; display: block; }
.cf-input {
  width: 100%; background: rgba(0,0,0,0.02); border: 1px solid var(--gb);
  border-radius: var(--rx); padding: 13px 15px; color: var(--bg2);
  font-family: var(--sans); font-size: 16px; transition: all 0.2s;
  appearance: none;
-webkit-appearance: none; outline: none; -webkit-tap-highlight-color: transparent; margin-bottom: 18px;
}
.cf-input:focus { border-color: #005a3c; background: rgba(0,90,60,0.03); box-shadow: 0 0 0 3px rgba(0,90,60,0.12); }
.cf-input::placeholder { color: var(--text3); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select.cf-input option { background: white; color: var(--bg2); }
textarea.cf-input { resize: vertical; min-height: 96px; }
.cf-submit {
  width: 100%; background: #005a3c; color: #fff; border: none;
  padding: 15px; border-radius: var(--rx); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; font-family: var(--sans); transition: all 0.22s;
  box-shadow: 0 4px 24px rgba(0,90,60,0.3); margin-top: 4px;
  -webkit-tap-highlight-color: transparent;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,90,60,0.45); }
.cf-ok { display: none; flex-direction: column; align-items: center; text-align: center; padding: 56px 20px; gap: 12px; }
.cf-ok-ico { font-size: 3rem; }
.cf-ok h4 { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--bg2); }
.cf-ok p { font-size: 0.87rem; color: var(--bg2); line-height: 1.7; }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; margin-top: 64px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--gb); overflow: hidden; }
.faq-btn { width: 100%; background: none; border: none; text-align: left; padding: 18px 0; font-size: 0.9rem; font-weight: 600; color: var(--bg2); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--sans); -webkit-tap-highlight-color: transparent; transition: color 0.18s; }
.faq-btn:hover { color: #005a3c; }
.faq-arr { font-size: 0.7rem; color: #005a3c; transition: transform 0.28s, background 0.2s; flex-shrink: 0; width: 22px; height: 22px; background: white; backdrop-filter: blur(8px); border: 1px solid var(--gb); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.faq-item.open .faq-arr { transform: rotate(180deg); background: #005a3c; border-color: #005a3c; color: #fff; }
.faq-body { font-size: 0.87rem; color: var(--bg2); line-height: 1.74; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-body { padding-bottom: 18px; }

/* ── FOOTER ── */
footer { position: relative; z-index: 1; background: var(--bg2); backdrop-filter: blur(20px); border-top: 1px solid var(--gb); padding: 72px 32px 40px; }
.footer-top { display: grid; grid-template-columns: 260px 1fr; gap: 80px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); max-width: 1280px; margin: 0 auto; }
.footer-logo img { height: 28px; width: auto; margin-bottom: 16px; display: block; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.72; max-width: 220px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fl-col h4 { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 16px; margin-left: 0; }
.fl-col ul { list-style: none; }
.fl-col ul li { margin-bottom: 10px; }
.fl-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.18s; display: inline-flex; align-items: center; gap: 0; }
.fl-col ul li a::before { content: ""; display: inline-block; width: 0; height: 1px; background: white; transition: width 0.22s; margin-right: 0; }
.fl-col ul li a:hover { color: white; }
.fl-col ul li a:hover::before { width: 10px; margin-right: 6px; }
.footer-bottom { max-width: 1280px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.45); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { font-size: 0.65rem; background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); padding: 3px 10px; border-radius: 4px; transition: all 0.2s; cursor: pointer; }
.footer-badge:hover { color: white; border-color: rgba(255,255,255,0.25); }

/* ── FLOAT WA ── */
.fwa {
  position: fixed; bottom: calc(24px + env(safe-area-inset-bottom)); right: 24px;
  z-index: 9999; width: 54px; height: 54px; border-radius: 50%;
  background: #005a3c; display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45); transition: all 0.24s;
  -webkit-tap-highlight-color: transparent; margin-bottom: 40px;
}
.fwa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; animation: waRipple 2.2s infinite; }
.fwa:hover { transform: scale(1.12); }

/* ── REVEAL ── */
.rev { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rev.vis { opacity: 1; transform: none; border-color: var(--bg2); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,90,60,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0,90,60,0); }
}
@keyframes expandRule { from { width: 0; } to { width: 60px; } }
@keyframes blinkCaret { from, to { border-color: transparent; } 50% { border-color: #005a3c; } }
@keyframes fillLine { to { width: 100%; } }
@keyframes waRipple { 0% { transform: scale(1); opacity: 0.35; } 100% { transform: scale(1.8); opacity: 0; } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: white; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

/* ═══════════════════════════════════════════════════
   TECH SECTION
   ═══════════════════════════════════════════════════ */
.hero-3d-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-3d-wrap canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; }
.tech-sec { padding: 80px 32px; position: relative; z-index: 1; }
.tech-globe-wrap {
  position: relative; width: 100%; height: 500px; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--gb); background: rgba(0,0,0,0.03); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); margin-top: 48px; cursor: grab;
}
.tech-globe-wrap:active { cursor: grabbing; }
.tech-globe-wrap canvas { display: block; }
.tech-hint { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; color: rgba(0,0,0,0.3); letter-spacing: 0.06em; pointer-events: none; text-transform: uppercase; white-space: nowrap; }
.tech-legend { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.tech-pill { display: inline-flex; align-items: center; gap: 6px; background: white; border: 1px solid var(--gb); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 30px; padding: 4px 12px 4px 8px; font-size: 0.7rem; font-weight: 500; color: var(--bg2); transition: all 0.22s; white-space: nowrap; }
.tech-pill:hover { background: rgba(0,90,60,0.04); border-color: rgba(0,90,60,0.3); color: var(--bg2); }
.tp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════════ */
.mob-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gb); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  align-items: center; gap: 10px; transform: translateY(0); transition: transform 0.3s ease;
}
.mob-cta-bar.hide { transform: translateY(120%); }
.mob-cta-btn { flex: 1; min-height: 48px; border: none; border-radius: 10px; padding: 12px 10px; font-family: var(--sans); font-size: 0.84rem; font-weight: 600; cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 6px; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.mob-cta-primary { background: #005a3c; color: #fff; }
.mob-cta-wa { background: #005a3c; color: #fff; flex: 0 0 52px; font-size: 1.3rem; }

/* ═══════════════════════════════════════════════════
   PROBLEMS PAGE HERO
   ═══════════════════════════════════════════════════ */
.prob-hero {
  position: relative; min-height: 72vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 32px 72px; overflow: hidden; z-index: 1;
}
.prob-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,90,60,0.08) 0%, transparent 65%);
}
.prob-hero > * { position: relative; z-index: 1; }

.bc-nav { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; color: var(--bg2); margin-bottom: 16px; animation: fadeInUp 0.5s ease 0.1s both; }
.bc-nav a { color: #005a3c; }

.prob-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: white;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,90,60,0.25); border-radius: 30px;
  padding: 5px 16px 5px 8px; font-size: 0.72rem; font-weight: 500;
  color: #005a3c; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 20px; animation: fadeInUp 0.55s ease 0.18s both;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #005a3c; animation: pulseDot 2.5s infinite; flex-shrink: 0; }

.prob-h1 {
  font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 4.6rem);
  font-style: italic; font-weight: 400; line-height: 1.06;
  max-width: 880px; margin: 0 auto 16px;
  animation: fadeInUp 0.65s ease 0.28s both; color: var(--bg2);
}
.prob-h1 strong { font-style: normal; color:#22a050 }
.hero-rule { width: 0; height: 2px; background: linear-gradient(90deg, #005a3c, #005a3c); margin: 16px auto; animation: expandRule 0.7s ease 0.7s both; }
.prob-sub { font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: var(--bg2); font-weight: 300; line-height: 1.72; max-width: 640px; margin: 0 auto; animation: fadeInUp 0.65s ease 0.44s both; }

/* Hero CTAs */
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; animation: fadeInUp 0.65s ease 0.58s both; }
.hero-cta-row .btn-p, .hero-cta-row .btn-s { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.hero-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; animation: fadeInUp 0.65s ease 0.72s both; }
.hero-pill-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: white; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid #005a3c; border-radius: 30px; padding: 8px 18px;
  font-size: 0.78rem; font-weight: 500; color: var(--bg2);
  text-decoration: none; transition: all 0.22s;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation; min-height: 40px;
}
.hero-pill-link:hover { background: rgba(0,90,60,0.06); color: #005a3c; border-color: #005a3c; }

/* ═══════════════════════════════════════════════════
   INTRO BAND
   ═══════════════════════════════════════════════════ */
.intro-band {
  background: white; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--gb); border-bottom: 1px solid var(--gb);
  padding: 56px 32px; position: relative; overflow: hidden;
}
.intro-band::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,90,60,0.05), transparent 65%); }
.intro-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.intro-text .lead { font-size: clamp(1rem, 1.8vw, 1.14rem); color: var(--bg2); line-height: 1.82; margin-bottom: 20px; }
.intro-text .statement {
  font-family: var(--serif); font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  font-style: italic; color: var(--bg2); line-height: 1.55;
  padding: 18px 24px 18px 28px; border-left: 3px solid #005a3c;
  background: rgba(0,90,60,0.03); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.intro-text .statement span { color: #005a3c; }
.intro-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.istat { padding: 24px 18px; text-align: center; border: 1px solid rgba(0,90,60,0.2); border-radius: var(--r); }
.istat-n { font-family: var(--serif); font-size: 2.2rem; font-style: italic; color: #005a3c; line-height: 1; }
.istat-l { font-size: 0.66rem; color: var(--bg2); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 5px; }
.istat-d { font-size: 0.76rem; color: var(--bg2); margin-top: 3px; line-height: 1.4; }

/* ═══════════════════════════════════════════════════
   PROBLEMS GRID
   ═══════════════════════════════════════════════════ */
.problems-section { padding: 80px 32px; position: relative; z-index: 1; }
.problems-inner { max-width: 1280px; margin: 0 auto; }
.problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }

.problem-card {
  border-radius: var(--r); overflow: hidden; transition: all var(--T);background-color: white;
  cursor: default; display: flex; flex-direction: column;
  border: 1px solid rgba(0,90,60,0.2);
}
.problem-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,90,60,0.2); }
.problem-card:hover .pc-icon-wrap { background: var(--bg); border-color: #005a3c; }
.problem-card:hover .pc-title { color: #005a3c; }

.pc-top { padding: 28px 24px 20px; background: rgba(0,90,60,0.02); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: relative; overflow: hidden; flex: 1; }
.pc-top::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, var(--gl3), transparent 60%); pointer-events: none; }
.pc-num { position: absolute; top: 16px; right: 18px; font-family: var(--serif); font-size: 3rem; font-style: italic; color: rgba(0,90,60,0.06); font-weight: 400; line-height: 1; user-select: none; }
.pc-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--gl); border: 1px solid var(--gl2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; transition: all 0.3s; position: relative; z-index: 1; }
.pc-title { font-size: 0.96rem; font-weight: 700; color: var(--bg2); margin-bottom: 10px; line-height: 1.35; transition: color 0.2s; position: relative; z-index: 1; }
.pc-desc { font-size: 0.82rem; color: var(--bg2); line-height: 1.68; position: relative; z-index: 1; }
.pc-desc strong { color: var(--bg2); font-weight: 600; }

.pc-bottom { padding: 16px 24px 20px; background: rgba(0,90,60,0.03); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--gb); }
.pc-solution-label { font-size: 0.6rem; font-weight: 700; color: #005a3c; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.pc-solution-label::before { content: ""; width: 16px; height: 1.5px; background: #005a3c; }
.pc-solution { font-size: 0.8rem; color: var(--bg2); line-height: 1.62; }
.pc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.pc-tag { font-size: 0.62rem; background: var(--gl); color: #005a3c; padding: 3px 10px; border-radius: 4px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid var(--gl2); }

/* ═══════════════════════════════════════════════════
   INLINE CTA BAND
   ═══════════════════════════════════════════════════ */
.inline-cta { background: white; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-top: 1px solid var(--gb); border-bottom: 1px solid var(--gb); padding: 28px 32px; position: relative; overflow: hidden; }
.inline-cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0,90,60,0.05), transparent 65%); }
.inline-cta-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   IMPACT BAND
   ═══════════════════════════════════════════════════ */
.impact-band { background: white; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-top: 1px solid var(--gb); border-bottom: 1px solid var(--gb); padding: 48px 32px; position: relative; overflow: hidden; }
.impact-band::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,90,60,0.06), transparent 65%); }
.impact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; }
.impact-item { text-align: center; padding: 0 18px; position: relative; }
.impact-item + .impact-item::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 36px; background: var(--gb); }
.impact-n { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); color: var(--bg2); font-style: italic; line-height: 1; }
.impact-l { font-size: 0.66rem; color: #005a3c; text-transform: uppercase; letter-spacing: 0.09em; margin-top: 7px; }
.impact-d { font-size: 0.74rem; color: var(--bg2); margin-top: 3px; line-height: 1.4; }

/* ═══════════════════════════════════════════════════
   CLOSING SECTION
   ═══════════════════════════════════════════════════ */
.closing-section { padding: 80px 32px 100px; position: relative; z-index: 1; }
.closing-inner { max-width: 1280px; margin: 0 auto; }
.closing-card { position: relative; text-align: center; padding: 80px 36px; border-radius: 24px; overflow: hidden; border: 1px solid var(--gb); background: rgba(0,90,60,0.02); }
.closing-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,90,60,0.08), transparent 60%); }
.closing-card > * { position: relative; z-index: 1; }
.closing-line { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-style: italic; color: var(--bg2); line-height: 1.45; margin-bottom: 8px; }
.closing-line.accent { color: #005a3c; }
.closing-rule { width: 40px; height: 2px; background: #005a3c; margin: 24px auto; border-radius: 2px; }
.closing-brand { font-size: 0.9rem; color: var(--bg2); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 36px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* btn-p shadow */
.btn-p { box-shadow: 0 4px 28px rgba(0,90,60,0.28); }
.btn-p:hover { box-shadow: 0 8px 40px rgba(0,90,60,0.44); }

/* ═══════════════════════════════════════════════════
   HOVER-ONLY STATES
   ═══════════════════════════════════════════════════ */
@media (hover: hover) {
  .svc-card:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(0,90,60,0.25); }
  .gc:hover { transform: translateY(-3px); }
  .problem-card:hover { transform: translateY(-6px); }
  .problem-card:hover .pc-icon-wrap { background: var(--gl2); border-color: #005a3c; }
  .problem-card:hover .pc-title { color: #005a3c; }
  .hero-pill-link:hover { background: rgba(0,90,60,0.06); color: #005a3c; border-color: #005a3c; }
}
@media (hover: none) {
  .svc-card:hover { transform: none; }
  .gc:hover { transform: none; }
}

/* Touch actions */
.btn-p, .btn-s, .svc-card, .fwa, .nb-link, .ham { touch-action: manipulation; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1099px) {
  .contact-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .proc-line { display: none; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .impact-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
}
@media (max-width: 991px) {
  .nb-links, .nb-cta { display: none !important; }
  .ham { display: flex !important; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card.hero-card { grid-column: unset; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.4rem, 7vw, 3.2rem); }
  .sec-h { font-size: clamp(1.7rem, 4.5vw, 2.2rem); }
  .svc-grid { grid-template-columns: 1fr 1fr !important; }
  section { padding: 72px 24px !important; }
  .prob-hero { padding: 96px 24px 56px; min-height: 64vh; }
  .problems-section, .closing-section { padding: 72px 24px !important; }
  .inline-cta { padding: 24px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 640px) {
  .mob-cta-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-pill { font-size: 0.68rem; padding: 5px 14px 5px 8px; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .metrics-grid { grid-template-columns: 1fr 1fr !important; }
  section { padding: 60px 20px !important; }
  .si { padding: 0 !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .testi-grid { grid-template-columns: 1fr !important; }
  .cta-band { padding: 48px 20px !important; }
  .cf-row { grid-template-columns: 1fr !important; }
  .cf-input { font-size: 16px; }
  .prob-hero { padding: 86px 20px 48px; min-height: 80svh; }
  .problems-section, .intro-band, .closing-section, .impact-band { padding: 60px 20px !important; }
  .nbi { padding: 0 20px; }
  .prob-h1 { font-size: clamp(2rem, 7.5vw, 2.6rem); }
  .problems-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero-cta-row { flex-direction: column; align-items: center; gap: 10px; }
  .hero-cta-row .btn-p, .hero-cta-row .btn-s { width: 100%; max-width: 320px; }
  .hero-pills { gap: 8px; }
  .hero-pill-link { font-size: 0.74rem; padding: 7px 14px; }
  .inline-cta-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .inline-cta-inner > div:last-child { width: 100%; display: flex; gap: 10px; }
  .inline-cta-inner .btn-p, .inline-cta-inner .btn-s { flex: 1; min-height: 48px; justify-content: center; text-align: center; }
  .impact-inner { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .impact-item + .impact-item::before { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn-p, .cta-row .btn-s { text-align: center; min-height: 50px; justify-content: center; }
  .closing-card { padding: 48px 20px; }
  .pc-desc { font-size: 0.79rem; }
  .problem-card { min-height: auto; }
  .pc-top { padding: 20px 16px 16px; }
  .pc-bottom { padding: 14px 16px 16px; }
  .pc-icon-wrap { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 12px; }
  .pc-title { font-size: 0.88rem; }
  .pc-solution { font-size: 0.76rem; }
  .pc-tag { font-size: 0.58rem; padding: 2px 8px; }
  .tech-globe-wrap { height: 340px; }
  .tech-sec { padding: 60px 20px; }
}
@media (max-width: 420px) {
  .hero-title { font-size: 1.9rem; }
  .metrics-grid { grid-template-columns: 1fr 1fr !important; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .tech-legend { gap: 6px; }
  .tech-pill { font-size: 0.67rem; padding: 4px 10px 4px 7px; }
  .prob-h1 { font-size: 1.95rem; }
  .problems-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .hero-title { font-size: 1.75rem; }
  section { padding: 52px 14px !important; }
  .prob-h1 { font-size: 1.8rem; }
  .problems-section { padding: 52px 14px !important; }
}

