:root {
  --bg: #f5faf8;
  --surface: #ffffff;
  --surface-soft: #eef7f4;
  --ink: #16211f;
  --muted: #5b6a66;
  --line: #dce8e4;
  --teal: #0f766e;
  --teal-dark: #0b5f59;
  --green: #58a964;
  --amber: #d8912f;
  --cyan: #18b7aa;
  --ink-deep: #071614;
  --shadow: 0 22px 70px rgba(24, 46, 42, 0.12);
  --shadow-soft: 0 14px 36px rgba(24, 46, 42, 0.08);
  --shadow-lift: 0 34px 90px rgba(13, 34, 30, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.08), transparent 24%),
    linear-gradient(240deg, rgba(216, 145, 47, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfdfc 0%, var(--bg) 34%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(15, 118, 110, 0.08) 28%, transparent 42%),
    linear-gradient(135deg, transparent 0 55%, rgba(88, 169, 100, 0.12) 64%, transparent 76%);
  opacity: 0.82;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 253, 252, 0.76);
  border-bottom: 1px solid rgba(220, 232, 228, 0.8);
  backdrop-filter: blur(18px) saturate(140%);
}

main {
  position: relative;
  z-index: 1;
}

.navbar {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 186px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #31413d;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-menu a {
  border-radius: 999px;
  padding: 8px 11px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
  background: rgba(15, 118, 110, 0.08);
}

.nav-menu a:hover {
  transform: translateY(-1px);
}

.header-cta,
.btn,
.whatsapp-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta::after,
.btn::after,
.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 46%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform 560ms ease;
}

.header-cta:hover::after,
.btn:hover::after,
.whatsapp-btn:hover::after {
  transform: translateX(130%);
}

.header-cta,
.btn.primary,
.whatsapp-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #14907f);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

.btn.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.header-cta:hover,
.btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.btn.primary:hover,
.whatsapp-btn:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 64px;
  padding-top: 66px;
  padding-bottom: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 54px 46% auto -8%;
  height: 360px;
  z-index: -1;
  border: 1px solid rgba(15, 118, 110, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(233, 247, 243, 0.38)),
    repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.07) 0 1px, transparent 1px 42px);
  border-radius: var(--radius);
  transform: skewY(-5deg);
  box-shadow: 0 28px 80px rgba(24, 46, 42, 0.06);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.4vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-copy,
.section-heading,
.system-card,
.about-copy,
.contact-copy,
.spotlight-copy {
  min-width: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-lead,
.section-heading p,
.about-copy p,
.contact-copy p,
.spotlight-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: #31413d;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(24, 46, 42, 0.05);
}

.hero-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 22px;
}

.hero-insights div {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  padding: 15px 16px;
  border: 1px solid rgba(220, 232, 228, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 250, 0.78));
  box-shadow: var(--shadow-soft);
}

.hero-insights div::after,
.system-card::after,
.impact-card::after,
.pain-card::after,
.feature-matrix div::after,
.experience-board div::after,
.integration-grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 180ms ease, transform 700ms ease;
}

.hero-insights div:hover::after,
.system-card:hover::after,
.impact-card:hover::after,
.pain-card:hover::after,
.feature-matrix div:hover::after,
.experience-board div:hover::after,
.integration-grid div:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.hero-insights strong,
.hero-insights span {
  display: block;
}

.hero-insights strong {
  margin-bottom: 3px;
  color: var(--teal-dark);
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-insights span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  margin: 0;
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(220, 232, 228, 0.9);
  box-shadow: var(--shadow-lift);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-visual:hover img {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 44px 110px rgba(13, 34, 30, 0.22);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 11% -4% -9% 18%;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(216, 145, 47, 0.15)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 16px);
  filter: blur(2px);
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: -24px;
  width: min(360px, calc(100% - 44px));
  padding: 16px 18px;
  border: 1px solid rgba(220, 232, 228, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: softFloat 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 142px;
  padding: 13px 15px;
  border: 1px solid rgba(220, 232, 228, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: softFloat 5.5s ease-in-out infinite;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--teal-dark);
  font-size: 1.32rem;
  line-height: 1.1;
}

.floating-card-top {
  top: 24px;
  left: -24px;
}

.floating-card-bottom {
  right: -18px;
  bottom: 94px;
  animation-delay: -1.8s;
}

.hero-visual figcaption strong,
.hero-visual figcaption span {
  display: block;
}

.hero-visual figcaption strong {
  margin-bottom: 4px;
  color: var(--teal-dark);
}

.hero-visual figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px;
  padding-bottom: 74px;
}

.impact-card {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  padding: 20px;
  border: 1px solid rgba(220, 232, 228, 0.94);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 252, 250, 0.72));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: var(--shadow-lift);
}

.impact-card small,
.experience-board span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.impact-card strong,
.impact-card span {
  display: block;
}

.impact-card strong {
  margin: 30px 0 7px;
  font-size: 1.2rem;
}

.impact-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.pain-section {
  padding-top: 18px;
}

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

.pain-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  padding: 22px;
  border: 1px solid rgba(220, 232, 228, 0.94);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 250, 0.76)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(216, 145, 47, 0.08));
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pain-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: var(--shadow-lift);
}

.pain-card > span,
.feature-matrix div span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: #e9f7f3;
}

.pain-card > span::before,
.feature-matrix div span::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.08);
}

.pain-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.12rem;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.system-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform: perspective(900px) rotateX(0) rotateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.system-card:hover {
  transform: perspective(900px) translateY(-8px) rotateX(1deg);
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: 0 34px 86px rgba(24, 46, 42, 0.16);
}

.system-thumb {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: -6px -6px 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfa;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.system-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.system-card:hover .system-thumb img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.featured-card {
  border-color: rgba(15, 118, 110, 0.44);
  background: linear-gradient(180deg, #ffffff 0%, #effaf6 100%);
}

.product-deep {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, #071614 0%, #102b27 52%, #26463f 100%);
  color: #fff;
}

.product-deep::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(24, 183, 170, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
}

.product-deep > * {
  position: relative;
  z-index: 1;
}

.product-copy {
  max-width: 690px;
}

.product-copy .eyebrow,
.product-copy h2 {
  color: #fff;
}

.product-copy p {
  color: #d3e4df;
}

.product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  color: #e9f7f3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.feature-matrix div {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.feature-matrix div:hover {
  transform: translateY(-5px);
  border-color: rgba(158, 215, 200, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.feature-matrix div span {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.feature-matrix strong {
  display: block;
  color: #f8fffd;
  line-height: 1.32;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--teal);
  background: linear-gradient(135deg, #e4f6f1, #f4faf7);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-top {
  display: grid;
  gap: 10px;
}

.card-top h3 {
  margin: 0;
}

.system-card p,
.system-card li,
.process-panel p,
.integration-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

.system-card ul,
.why-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.system-card li,
.why-box li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.system-card li::before,
.why-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.text-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 800;
  width: fit-content;
  border-bottom: 2px solid rgba(15, 118, 110, 0.2);
  padding-bottom: 2px;
}

.spotlight {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 44px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, #071614 0%, #102b27 58%, #25433d 100%);
  color: #fff;
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 72%);
}

.spotlight > * {
  position: relative;
  z-index: 1;
}

.spotlight-copy {
  max-width: 700px;
}

.spotlight-copy .eyebrow,
.spotlight-copy h2 {
  color: #fff;
}

.spotlight-copy p {
  color: #d3e4df;
}

.spotlight .feature-list span {
  color: #e9f7f3;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.process-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.process-panel div {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, background 220ms ease;
}

.process-panel div:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.1);
}

.process-panel small {
  color: #9ed7c8;
  font-weight: 800;
}

.process-panel strong {
  display: block;
  margin: 5px 0 4px;
}

.process-panel p {
  margin: 0;
  color: #d3e4df;
}

.integrations {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, #edf6f3 0%, #f9fcfb 100%);
}

.experience {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 42px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(233, 247, 243, 0.62) 100%);
}

.experience-copy {
  max-width: 650px;
}

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

.experience-board div {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(220, 232, 228, 0.94);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.13), rgba(216, 145, 47, 0.11));
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.experience-board div:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
}

.experience-board div::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto;
  height: 82px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.24) 0 18%, transparent 18% 28%, rgba(88, 169, 100, 0.2) 28% 56%, transparent 56% 66%, rgba(216, 145, 47, 0.18) 66%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px 14px);
}

.experience-board strong {
  display: block;
  margin: 8px 0 8px;
  font-size: 1.14rem;
}

.experience-board p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.integration-grid div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 232, 228, 0.95);
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.integration-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow-lift);
}

.integration-grid div::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.integration-grid strong {
  display: block;
  margin-bottom: 8px;
}

.integration-grid p {
  margin: 0;
}

.about,
.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: start;
}

.about-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--teal-dark);
  background: #e9f7f3;
  font-size: 0.9rem;
  font-weight: 800;
}

.why-box,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.why-box,
.contact-form,
.process-panel {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.why-box:hover,
.contact-form:hover,
.process-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.why-box {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.why-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--amber));
}

.why-box h3 {
  margin-bottom: 18px;
}

.why-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
}

.faq {
  padding-top: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--teal);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #31413d;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form label:nth-child(5),
.contact-form label:nth-child(6),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.contact-details {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 700;
}

.whatsapp-btn {
  margin-top: 14px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 20px auto 0;
  padding: 42px 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-effects .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-effects .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.site-footer p {
  max-width: 420px;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 10px;
  color: var(--ink);
}

.site-footer a,
.site-footer span {
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--ink);
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero,
  .spotlight,
  .experience,
  .product-deep,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .systems-grid,
  .integration-grid,
  .impact-strip,
  .pain-grid,
  .experience-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-cta {
    display: none;
  }
}

@media (min-width: 981px) and (max-width: 1366px) {
  .navbar,
  .section {
    width: min(1080px, calc(100% - 44px));
  }

  .navbar {
    min-height: 68px;
  }

  .brand-logo {
    width: 160px;
    height: 44px;
  }

  .nav-menu {
    gap: 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
    gap: 42px;
    padding-top: 42px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(2.45rem, 4vw, 3.45rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-insights div {
    min-height: 76px;
    padding: 12px 14px;
  }

  .hero-visual figcaption {
    right: 14px;
    bottom: -18px;
    width: min(330px, calc(100% - 28px));
    padding: 13px 15px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .impact-strip {
    padding-top: 18px;
    padding-bottom: 58px;
  }

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

  .experience-board div {
    min-height: 236px;
    padding: 18px;
  }

  .pain-card {
    min-height: 214px;
  }

  .feature-matrix div {
    min-height: 118px;
  }

  .system-card {
    padding: 18px;
  }

  .system-card p,
  .system-card li {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .navbar {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .nav-menu a:hover {
    background: var(--surface-soft);
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 58px 0;
  }

  .hero {
    gap: 34px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.08;
  }

  .trust-row span,
  .feature-list span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .systems-grid,
  .integration-grid,
  .impact-strip,
  .pain-grid,
  .feature-matrix,
  .experience-board,
  .why-box ul,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .impact-strip {
    padding-top: 10px;
  }

  .experience-board div {
    min-height: 220px;
  }

  .contact-form label:nth-child(5),
  .contact-form label:nth-child(6),
  .contact-form button,
  .form-note,
  .copyright {
    grid-column: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .site-footer {
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 160px;
    height: 44px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.68rem, 7vw, 1.95rem);
    line-height: 1.12;
  }

  .hero {
    overflow: hidden;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
  }

  .hero-insights {
    grid-template-columns: 1fr;
  }

  .hero-insights div {
    min-height: 72px;
  }

  .hero-visual figcaption {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 12px;
    animation: none;
  }

  .floating-card-top {
    margin-bottom: 12px;
  }

  .hero-lead,
  .section-heading p,
  .about-copy p,
  .contact-copy p,
  .spotlight-copy p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js-effects .reveal {
    opacity: 1;
    transform: none;
  }
}
