@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,520;9..144,650&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #17231f;
  --muted: #65746c;
  --paper: #f7f8f2;
  --panel: #ffffff;
  --line: #dfe8e2;
  --leaf: #0f573f;
  --leaf-2: #6f8d79;
  --blue: #3f7897;
  --cyan: #83d9e8;
  --lime: #d9ef8b;
  --violet: #6844a6;
  --gold: #d4a83d;
  --shadow: 0 24px 70px rgba(15, 48, 37, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(247, 248, 242, 0.9);
  border-bottom: 1px solid rgba(223, 232, 226, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.top-nav {
  display: flex;
  gap: clamp(10px, 1.7vw, 22px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.top-nav a {
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--leaf);
}

.mobile-menu-toggle,
.mobile-nav-panel {
  display: none;
}

.header-social {
  flex: 0 0 auto;
  margin: 0 0 0 auto;
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 760;
  white-space: nowrap;
}

.header-action,
.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.primary-action {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 87, 63, 0.24);
}

.hero,
.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(54px, 7vw, 98px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.home-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(131, 217, 232, 0.33), transparent 30%),
    radial-gradient(circle at 88% 90%, rgba(217, 239, 139, 0.45), transparent 28%),
    linear-gradient(135deg, #f9fbf5, #eff5ee);
}

.plantation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  pointer-events: auto;
}

.hero-canvas {
  left: 38%;
  width: 62%;
  opacity: 0.58;
}

.section-canvas {
  opacity: 0.3;
}

.section-canvas.light {
  opacity: 0.14;
}

.hero-copy,
.hero-panel,
.service-hero > div,
.service-image,
.dashboard-graphic,
.visual-band > :not(.plantation-canvas),
.contact-section > :not(.plantation-canvas) {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 6.9vw, 96px);
  max-width: 980px;
}

.service-hero h1 {
  font-size: clamp(39px, 5vw, 68px);
}

h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  max-width: 900px;
}

h3 {
  font-size: 23px;
}

.hero-lede,
.section p,
.visual-band p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
}

.hero-lede {
  max-width: 760px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.glass-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-kicker {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-panel b {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(23px, 2.7vw, 34px);
  font-weight: 650;
  line-height: 1.18;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.signal-grid span {
  padding: 14px;
  border-radius: 8px;
  background: rgba(15, 87, 63, 0.09);
  color: var(--leaf);
  font-weight: 720;
}

.section,
.visual-band,
.contact-section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.bullet-panel,
.mini-grid article,
.check-grid span,
.contact-card,
.service-image,
.dashboard-graphic {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(15, 48, 37, 0.07);
}

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  opacity: 0.1;
  color: var(--leaf);
  background:
    linear-gradient(currentColor, currentColor) 50% 42% / 3px 32px no-repeat,
    radial-gradient(circle at 50% 16%, currentColor 0 7px, transparent 7.5px),
    radial-gradient(circle at 34% 29%, currentColor 0 8px, transparent 8.5px),
    radial-gradient(circle at 66% 29%, currentColor 0 8px, transparent 8.5px),
    linear-gradient(135deg, transparent 46%, currentColor 47% 53%, transparent 54%) 37% 78% / 18px 18px no-repeat,
    linear-gradient(45deg, transparent 46%, currentColor 47% 53%, transparent 54%) 63% 78% / 18px 18px no-repeat;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 87, 63, 0.42);
  box-shadow: 0 24px 58px rgba(15, 48, 37, 0.14);
}

.service-card:hover::after {
  opacity: 0.18;
  transform: translateY(0);
}

.service-card.featured {
  background: var(--leaf);
  color: #fff;
}

.service-card.featured::after {
  color: #fff;
  opacity: 0.16;
}

.service-card.featured p,
.service-card.featured .service-number {
  color: rgba(255, 255, 255, 0.76);
}

.service-number {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}

.service-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.service-card i {
  margin-top: auto;
  font-style: normal;
  font-weight: 760;
}

.service-card h3 {
  font-family: "Manrope", Inter, sans-serif;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.18;
}

.visual-band,
.service-hero {
  background: #edf4ec;
}

.visual-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
}

.visual-band.compact {
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1.3fr);
}

.media-frame,
.service-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-frame img,
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.media-frame:hover,
.service-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(15, 48, 37, 0.16);
}

.media-frame:hover img,
.service-image:hover img {
  transform: scale(1.025);
}

.service-image {
  max-height: 640px;
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.check-grid,
.bullet-panel,
.mini-grid {
  display: grid;
  gap: 12px;
}

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

.check-grid span,
.bullet-panel span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  font-weight: 680;
}

.check-grid span::before,
.bullet-panel span::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--leaf) 0 38%, transparent 41%), conic-gradient(var(--leaf) 0 75%, var(--line) 0);
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(15, 48, 37, 0.07);
  overflow: hidden;
}

.process-grid article::after,
.mini-grid article::after,
.side-card::after,
.contact-info-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  color: var(--leaf-2);
  opacity: 0.12;
  background:
    linear-gradient(currentColor, currentColor) 50% 45% / 3px 26px no-repeat,
    radial-gradient(circle at 50% 18%, currentColor 0 6px, transparent 6.5px),
    radial-gradient(circle at 35% 32%, currentColor 0 7px, transparent 7.5px),
    radial-gradient(circle at 65% 32%, currentColor 0 7px, transparent 7.5px),
    linear-gradient(135deg, transparent 46%, currentColor 47% 53%, transparent 54%) 38% 82% / 15px 15px no-repeat,
    linear-gradient(45deg, transparent 46%, currentColor 47% 53%, transparent 54%) 62% 82% / 15px 15px no-repeat;
  pointer-events: none;
}

.process-grid span {
  display: inline-flex;
  color: var(--leaf);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}

.process-grid b {
  display: block;
  font-size: 18px;
  font-weight: 760;
}

.process-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.mini-grid article {
  position: relative;
  padding: 22px;
  overflow: hidden;
}

.mini-grid b {
  font-weight: 760;
}

.mini-grid b,
.mini-grid span {
  display: block;
}

.mini-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.dashboard-graphic {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 430px;
  overflow: hidden;
  background: #f9fbf7;
}

.dash-rail {
  background: var(--leaf);
}

.dash-main {
  padding: 28px;
}

.dash-top,
.dash-kpis {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.dash-top span,
.dash-kpis i {
  border-radius: 8px;
  background: #e7f0ea;
  color: var(--leaf);
  font-style: normal;
  font-weight: 760;
  padding: 8px 11px;
}

.dash-kpis {
  margin-top: 28px;
}

.dash-lines {
  display: grid;
  gap: 22px;
  margin-top: 54px;
}

.dash-lines span {
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), var(--blue));
}

.dash-lines span:nth-child(2) { width: 72%; }
.dash-lines span:nth-child(3) { width: 86%; }
.dash-lines span:nth-child(4) { width: 62%; }

.service-cbse {
  background: linear-gradient(135deg, #f9fbf6, #edf4ec);
}

.service-ngo {
  background: linear-gradient(135deg, #fffaf0, #edf4ec);
}

.service-marketing {
  background: linear-gradient(135deg, #eff9e7, #f6fbef);
}

.service-it {
  background: linear-gradient(135deg, #eaf5ff, #f2edf9);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--leaf);
  color: #fff;
  overflow: hidden;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-card a {
  color: #fff;
  font-size: clamp(19px, 2.6vw, 30px);
  font-weight: 760;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 62vh;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 20%, rgba(131, 217, 232, 0.2), transparent 30%),
    linear-gradient(135deg, #f9fbf5, #eff5ee);
}

.contact-hero h1 {
  font-size: clamp(42px, 6.6vw, 86px);
}

.contact-info-panel,
.contact-form,
.side-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(15, 48, 37, 0.07);
  overflow: hidden;
}

.contact-info-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.contact-info-panel b {
  font-size: 22px;
  font-weight: 760;
}

.contact-info-panel a {
  color: var(--leaf);
  font-weight: 760;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-info-panel p,
.form-head p,
.side-card p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
}

.form-head h2 {
  margin-bottom: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 680;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 87, 63, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 87, 63, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-submit {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.contact-side {
  display: grid;
  gap: 14px;
}

.side-card {
  padding: 22px;
}

.side-card h3 {
  font-size: 22px;
  font-family: "Manrope", Inter, sans-serif;
  font-weight: 760;
}

.contact-map {
  min-height: 320px;
}

.site-footer {
  padding: clamp(44px, 6vw, 74px) clamp(18px, 5vw, 72px) 22px;
  color: #dce8e1;
  background:
    radial-gradient(circle at 82% 15%, rgba(131, 217, 232, 0.16), transparent 30%),
    linear-gradient(135deg, #0e241d, #15352a);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(170px, 0.7fr) minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 16px;
}

.footer-brand h2,
.site-footer h3 {
  margin: 0;
  color: #fff;
}

.footer-brand p,
.footer-contact p {
  color: #b8c9c1;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: #dce8e1;
  text-decoration: none;
  font-weight: 650;
}

.site-footer a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-row a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--leaf-2);
  background: transparent;
  border: 0;
  font-size: 0;
  font-weight: 760;
  box-shadow: none;
  transition: transform 0.16s ease, filter 0.16s ease, opacity 0.16s ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  filter: saturate(1.12);
  opacity: 0.86;
}

.social-row a::before {
  font-size: 13px;
  line-height: 1;
}

.social-row a[aria-label="Whatsapp"] { color: #25d366; }
.social-row a[aria-label="Email"] { color: #ea4335; }
.social-row a[aria-label="LinkedIn"] { color: #0a66c2; }
.social-row a[aria-label="Facebook"] { color: #1877f2; }
.social-row a[aria-label="Instagram"] { color: #dd2a7b; }

.social-row a[aria-label="Whatsapp"]::before { content: "WA"; }
.social-row a[aria-label="Email"]::before { content: "@"; font-size: 18px; }
.social-row a[aria-label="LinkedIn"]::before { content: "in"; font-size: 15px; }
.social-row a[aria-label="Facebook"]::before { content: "f"; font-size: 18px; }
.social-row a[aria-label="Instagram"]::before { content: "IG"; font-size: 13px; }

.header-social.social-row {
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 0;
}

.header-social.social-row a {
  width: 24px;
  height: 24px;
  border: 0;
  box-shadow: none;
}

.header-social.social-row a::before {
  font-size: 11px;
}

.header-social.social-row a[aria-label="LinkedIn"]::before {
  font-size: 13px;
}

.header-social.social-row a[aria-label="Facebook"]::before {
  font-size: 15px;
}

.social-row a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.header-social.social-row a::before {
  width: 19px;
  height: 19px;
}

.social-row a[aria-label="Whatsapp"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.91-2.2-.24-.58-.48-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.76-.72 2.01-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35zM12.05 2a9.93 9.93 0 0 0-8.45 15.16L2.5 22l4.96-1.3A9.94 9.94 0 1 0 12.05 2zm0 18.18a8.26 8.26 0 0 1-4.21-1.15l-.3-.18-2.94.77.78-2.87-.19-.3a8.23 8.23 0 1 1 6.86 3.73z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.91-2.2-.24-.58-.48-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.76-.72 2.01-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35zM12.05 2a9.93 9.93 0 0 0-8.45 15.16L2.5 22l4.96-1.3A9.94 9.94 0 1 0 12.05 2zm0 18.18a8.26 8.26 0 0 1-4.21-1.15l-.3-.18-2.94.77.78-2.87-.19-.3a8.23 8.23 0 1 1 6.86 3.73z'/%3E%3C/svg%3E");
}

.social-row a[aria-label="Email"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm9 8.2L4.8 7H4v.9l8 6.9 8-6.9V7h-.8L12 13.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm9 8.2L4.8 7H4v.9l8 6.9 8-6.9V7h-.8L12 13.2z'/%3E%3C/svg%3E");
}

.social-row a[aria-label="LinkedIn"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.13 1.45-2.13 2.94v5.67H9.35V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.26 2.37 4.26 5.45v6.29zM5.34 7.43a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12zm1.78 13.02H3.56V9h3.56v11.45zM22.23 0H1.77C.79 0 0 .77 0 1.72v20.56C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.72V1.72C24 .77 23.2 0 22.23 0z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.45 20.45h-3.56v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.13 1.45-2.13 2.94v5.67H9.35V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.26 2.37 4.26 5.45v6.29zM5.34 7.43a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12zm1.78 13.02H3.56V9h3.56v11.45zM22.23 0H1.77C.79 0 0 .77 0 1.72v20.56C0 23.23.79 24 1.77 24h20.45c.98 0 1.78-.77 1.78-1.72V1.72C24 .77 23.2 0 22.23 0z'/%3E%3C/svg%3E");
}

.social-row a[aria-label="Facebook"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 12.07C24 5.4 18.63 0 12 0S0 5.4 0 12.07C0 18.1 4.39 23.1 10.13 24v-8.44H7.08v-3.49h3.05V9.41c0-3.03 1.79-4.7 4.53-4.7 1.31 0 2.69.24 2.69.24v2.97h-1.51c-1.49 0-1.96.93-1.96 1.89v2.26h3.33l-.53 3.49h-2.8V24C19.61 23.1 24 18.1 24 12.07z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 12.07C24 5.4 18.63 0 12 0S0 5.4 0 12.07C0 18.1 4.39 23.1 10.13 24v-8.44H7.08v-3.49h3.05V9.41c0-3.03 1.79-4.7 4.53-4.7 1.31 0 2.69.24 2.69.24v2.97h-1.51c-1.49 0-1.96.93-1.96 1.89v2.26h3.33l-.53 3.49h-2.8V24C19.61 23.1 24 18.1 24 12.07z'/%3E%3C/svg%3E");
}

.social-row a[aria-label="Instagram"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 2h8.5A5.75 5.75 0 0 1 22 7.75v8.5A5.75 5.75 0 0 1 16.25 22h-8.5A5.75 5.75 0 0 1 2 16.25v-8.5A5.75 5.75 0 0 1 7.75 2zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm5.25-2.25a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 2h8.5A5.75 5.75 0 0 1 22 7.75v8.5A5.75 5.75 0 0 1 16.25 22h-8.5A5.75 5.75 0 0 1 2 16.25v-8.5A5.75 5.75 0 0 1 7.75 2zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm5.25-2.25a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.map-card {
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  color: #9fb4aa;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 62;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #25d366;
  text-decoration: none;
  font-size: 0;
  font-weight: 800;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  animation: whatsappBlink 1.6s ease-in-out infinite;
}

.whatsapp-float::before {
  content: "";
  width: 62px;
  height: 62px;
  display: block;
  background: currentColor;
  -webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.91-2.2-.24-.58-.48-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.76-.72 2.01-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35zM12.05 2a9.93 9.93 0 0 0-8.45 15.16L2.5 22l4.96-1.3A9.94 9.94 0 1 0 12.05 2zm0 18.18a8.26 8.26 0 0 1-4.21-1.15l-.3-.18-2.94.77.78-2.87-.19-.3a8.23 8.23 0 1 1 6.86 3.73z'/%3E%3C/svg%3E");
  mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.91-2.2-.24-.58-.48-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.76-.72 2.01-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35zM12.05 2a9.93 9.93 0 0 0-8.45 15.16L2.5 22l4.96-1.3A9.94 9.94 0 1 0 12.05 2zm0 18.18a8.26 8.26 0 0 1-4.21-1.15l-.3-.18-2.94.77.78-2.87-.19-.3a8.23 8.23 0 1 1 6.86 3.73z'/%3E%3C/svg%3E");
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
  opacity: 1;
}

@keyframes whatsappBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.04);
  }
}

.whatsapp-chat {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 61;
  width: min(330px, calc(100vw - 34px));
  border: 1px solid rgba(15, 87, 63, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(15, 48, 37, 0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.whatsapp-chat.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: #0f573f;
}

.whatsapp-chat-head b {
  font-size: 15px;
}

.whatsapp-chat-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.whatsapp-chat-body {
  padding: 16px;
}

.whatsapp-chat-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-chat-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-chat-message {
  width: 100%;
  resize: vertical;
  min-height: 94px;
  margin-bottom: 12px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.whatsapp-chat-message:focus {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.whatsapp-chat-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  border-radius: 8px;
  color: #fff;
  background: #25d366;
  text-decoration: none;
  font-weight: 760;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .top-nav,
  .header-action {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
  }

  .mobile-menu-toggle::before {
    content: "";
    width: 22px;
    height: 14px;
    background:
      linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 6px / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 12px / 100% 2px no-repeat;
  }

  .mobile-nav-panel {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    z-index: 80;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 60px rgba(15, 48, 37, 0.16);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .mobile-nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav-panel a {
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 760;
  }

  .mobile-nav-panel a:hover {
    background: #eef6f1;
    color: var(--leaf);
  }

  .hero,
  .service-hero,
  .contact-hero,
  .section-head,
  .visual-band,
  .visual-band.compact,
  .two-col,
  .contact-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero,
  .service-hero {
    min-height: auto;
  }

  .service-grid,
  .process-grid,
  .check-grid,
  .mini-grid,
  .signal-grid,
  .form-row,
  .dash-kpis,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .service-card {
    min-height: 240px;
  }

  .hero-canvas {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.16;
  }

  .section-canvas {
    opacity: 0.18;
  }

  .service-hero .section-canvas {
    height: 42%;
    top: auto;
    bottom: 0;
  }

  .dashboard-graphic {
    grid-template-columns: 44px 1fr;
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .service-card {
    transition: none;
  }

  .plantation-canvas {
    display: none;
  }

  .media-frame,
  .service-image,
  .media-frame img,
  .service-image img {
    transition: none;
  }
}

/* N-Ops360 product page */
.top-nav a[aria-current="page"] { color: var(--leaf); }

.ops-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(131, 217, 232, 0.28), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(217, 239, 139, 0.34), transparent 30%),
    linear-gradient(135deg, #f9fbf5, #edf4ec);
}

.ops-hero h1 em { color: var(--leaf); font-style: normal; }
.ops-hero-copy { max-width: 780px; }
.ops-product-visual { padding: clamp(18px, 3vw, 34px); background: rgba(255,255,255,.74); }
.ops-product-visual img { aspect-ratio: 4 / 3; object-fit: contain; }
.ops-product-visual figcaption { margin-top: 14px; color: var(--muted); font-size: 13px; text-align: center; }

.ops-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-size: 13px; }
.ops-proof span { display: flex; align-items: baseline; gap: 7px; }
.ops-proof b { color: var(--leaf); font-family: "Fraunces", Georgia, serif; font-size: 27px; }

.ops-outcomes span { align-items: flex-start; flex-wrap: wrap; color: var(--muted); }
.ops-outcomes span::before { margin-top: 4px; }
.ops-outcomes b { width: calc(100% - 32px); color: var(--ink); }
.ops-outcomes small { width: calc(100% - 32px); margin-left: 29px; font: inherit; }

.ops-workflow { background: var(--leaf); color: #fff; }
.ops-workflow .eyebrow, .ops-workflow p { color: rgba(255,255,255,.72); }
.ops-flow { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ops-flow article { min-height: 188px; padding: 22px; border: 1px solid rgba(255,255,255,.17); border-radius: 8px; background: rgba(255,255,255,.09); }
.ops-flow span { display: block; margin-bottom: 30px; color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.ops-flow b { font-size: 20px; }
.ops-flow p { margin: 8px 0 0; font-size: 15px; }

.module-cloud { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.module-cloud article { min-height: 206px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 12px 30px rgba(15,48,37,.055); }
.module-cloud article.featured { background: #eef6f1; border-color: rgba(15,87,63,.24); }
.module-cloud article.module-system { background: var(--ink); color: #fff; }
.module-cloud span { display: block; margin-bottom: 30px; color: var(--leaf); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.module-cloud .module-system span { color: var(--lime); }
.module-cloud b { display: block; font-size: 17px; line-height: 1.25; }
.module-cloud p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.module-cloud .module-system p { color: rgba(255,255,255,.68); }

.ops-deployment { background: #eaf3f6; }
.ops-contact-link { width: fit-content; margin-top: 5px; color: #fff !important; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); font-size: 15px !important; }

@media (max-width: 1180px) { .module-cloud { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 920px) { .module-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .ops-proof { gap: 12px; }
  .ops-proof span { width: 100%; }
  .ops-flow, .module-cloud { grid-template-columns: 1fr; }
  .module-cloud article { min-height: auto; }
}
