:root {
  --navy: #0d2912;
  --navy-2: #113416;
  --green: #159947;
  --green-dark: #0c7b36;
  --green-soft: #e9f8ef;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --charcoal: #1e3322;
  --slate: #54657e;
  --muted: #6b7a90;
  --line: #dfe7ef;
  --light: #f7fafc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(12, 27, 46, 0.1);
  --shadow-2: 0 24px 60px rgba(5, 18, 33, 0.2);
  --radius: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.25s;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  animation: page-enter 0.4s var(--ease);
}
@keyframes page-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #d4eedd;
  font-size: 14px;
  padding: 10px 0;
}
.topbar .container,
.nav .container,
.page-hero-meta,
.hero-highlights,
.hero-actions,
.brand-strip,
.inline-actions,
.cta,
.footer-bottom {
  display: flex;
  align-items: center;
}
.topbar .container,
.nav .container {
  justify-content: space-between;
  gap: 18px;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-links a {
  color: #fff;
  font-weight: 600;
}
.topbar-links a:hover {
  color: #b6f0c8;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 12px;
  min-width: 0;
}
.logo img {
  height: 58px;
  width: auto;
  border-radius: 8px;
}
.logo-text {
  display: grid;
  line-height: 1;
}
.logo-name {
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
}
.logo-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
}
.nav-links > a:not(.btn) {
  position: relative;
}
.nav-links > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links > a:not(.btn):hover,
.nav-links > a:not(.btn).active {
  color: var(--green-dark);
}
.nav-links > a:not(.btn):hover::after,
.nav-links > a:not(.btn).active::after {
  transform: scaleX(1);
}
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  line-height: 1;
  transition: color 0.15s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--green-dark);
}
.nav-chevron {
  font-size: 11px;
  display: inline-block;
  transition: transform 0.22s ease;
}
.nav-dropdown-wrap:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute; 
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--light);
  color: var(--green-dark);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.15s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(1px) scale(0.97) !important; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 153, 71, 0.22);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21, 153, 71, 0.36);
}
.btn-secondary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(245,158,11,0.2);
}
.btn-secondary:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(245,158,11,0.32);
}
.btn-outline {
  border-color: #cbd5e1;
  color: var(--navy);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21,153,71,0.1);
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 30px;
  color: var(--navy);
}
.hero {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(245, 158, 11, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 10% 10%,
      rgba(21, 153, 71, 0.18),
      transparent 22%
    ),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 58%, #1a4020 100%);
  color: #fff;
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(182, 240, 200, 0.12);
  border: 1px solid rgba(182, 240, 200, 0.35);
  color: #dff9e7;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: eyebrow-glow 3s ease-in-out infinite;
}
@keyframes eyebrow-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126,240,171,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(126,240,171,0); }
}
h1 {
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  margin: 18px 0;
  color: inherit;
}
.hero p {
  font-size: 19px;
  color: #d4eedb;
  max-width: 670px;
  margin: 0 0 28px;
}
.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}
.hero .btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.hero-highlights {
  gap: 18px;
  flex-wrap: wrap;
  color: #d4eedd;
  font-size: 14px;
  font-weight: 700;
}
.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-highlights span:before {
  content: "•";
  color: #7ef0ab;
  font-size: 18px;
}
.dashboard-card,
.module-preview {
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-2);
  color: var(--charcoal);
}
.dashboard-card {
  animation: float-card 5s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.5deg); }
  66%       { transform: translateY(-5px) rotate(-0.3deg); }
}

.mock-top {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: #cbd5e1;
}
.dot:nth-child(1) {
  background: #ef4444;
}
.dot:nth-child(2) {
  background: #f59e0b;
}
.dot:nth-child(3) {
  background: #22c55e;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.kpi {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease-spring),
              border-color var(--dur) var(--ease);
  cursor: default;
}
.kpi:hover {
  background: var(--green-soft);
  border-color: rgba(21,153,71,0.25);
  transform: scale(1.04);
}
.kpi b {
  display: block;
  font-size: 24px;
  color: var(--navy);
}
.kpi span {
  font-size: 12px;
  color: var(--muted);
}
.chart {
  height: 170px;
  background: linear-gradient(180deg, #effcf3, #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
}
.bar {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--green), #7fe0a2);
}
.status-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.status {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  font-size: 14px;
  background: #fff;
}
.status strong {
  color: var(--navy);
}
.brand-strip {
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 0 0;
  color: #cfe0ef;
  font-size: 13px;
  font-weight: 700;
}
.section {
  padding: 78px 0;
}
.section-light {
  background: var(--light);
}
.section-subtle {
  background: linear-gradient(180deg, #fff, var(--green-soft));
}
.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}
.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.13;
  color: var(--navy);
  margin: 0 0 14px;
}
.section-title p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.usecase-grid .card {
  padding: 30px 22px;
  border-top: 3px solid var(--green);
  text-align: left;
}
.usecase-grid .icon {
  width: 52px;
  height: 52px;
  font-size: 23px;
  margin-bottom: 18px;
}
.usecase-grid .card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.usecase-grid .card p {
  font-size: 14.5px;
  line-height: 1.6;
}
.usecase-grid .card:nth-child(1) { border-top-color: var(--green); }
.usecase-grid .card:nth-child(1) .icon { background: var(--green-soft); color: var(--green-dark); }
.usecase-grid .card:nth-child(2) { border-top-color: var(--amber); }
.usecase-grid .card:nth-child(2) .icon { background: #fef3e2; color: var(--amber-dark); }
.usecase-grid .card:nth-child(3) { border-top-color: var(--navy); }
.usecase-grid .card:nth-child(3) .icon { background: #e7ecf3; color: var(--navy); }
.usecase-grid .card:nth-child(4) { border-top-color: var(--slate); }
.usecase-grid .card:nth-child(4) .icon { background: #eef1f6; color: var(--slate); }
.usecase-grid .card:nth-child(5) { border-top-color: var(--green-dark); }
.usecase-grid .card:nth-child(5) .icon { background: var(--green-soft); color: var(--green); }
.usecase-grid .card:nth-child(1):hover { border-top-color: var(--green); }
.usecase-grid .card:nth-child(2):hover { border-top-color: var(--amber); }
.usecase-grid .card:nth-child(3):hover { border-top-color: var(--navy); }
.usecase-grid .card:nth-child(4):hover { border-top-color: var(--slate); }
.usecase-grid .card:nth-child(5):hover { border-top-color: var(--green-dark); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-top: 3px solid transparent;
  will-change: transform;
}
.card:hover {
  box-shadow: 0 24px 50px rgba(12, 27, 46, 0.13);
  transform: translateY(-5px);
  border-top-color: var(--green);
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 16px;
  transition: transform 0.35s var(--ease-spring), background var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover .icon {
  transform: scale(1.15) rotate(-8deg);
  border: 2px solid var(--green-dark);
  box-shadow: 0 8px 20px rgba(21,153,71,0.3);
}
.card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.card ul {
  padding-left: 18px;
  color: var(--muted);
  margin: 0;
}
.card-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.card-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--slate);
  font-weight: 600;
}
.card-list span:before {
  content: "✓";
  background: #dcfce7;
  color: var(--green);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 22px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.split h2 {
  font-size: 42px;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 16px;
}
.split p {
  color: var(--muted);
  font-size: 17px;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check:before {
  content: "✓";
  background: #dcfce7;
  color: var(--green);
  width: 24px;
  height: 24px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 24px;
}
.process {
  counter-reset: item;
}
.process .card {
  position: relative;
}
.process .card:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: -16px;
  right: 22px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 900;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.stat strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy);
  white-space: nowrap;
}
.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}
.cta {
  background: linear-gradient(135deg, var(--navy), #153a1b);
  color: #fff;
  border-radius: 28px;
  padding: 54px;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.cta h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
}
.cta p {
  color: #cce8d6;
  margin: 0;
  font-size: 17px;
}
.page-hero {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(245, 158, 11, 0.12),
      transparent 24%
    ),
    linear-gradient(135deg, var(--navy), #1c4022);
  color: #fff;
  padding: 68px 0;
}
.page-hero h1 {
  max-width: 900px;
}
.page-hero p {
  font-size: 19px;
  color: #d4eedd;
  max-width: 820px;
}
.breadcrumb {
  color: #cce8d6;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.breadcrumb a {
  color: #fbd68a;
}
.page-hero-meta {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.feature-row {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row h2 {
  color: var(--navy);
  margin: 0;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pill {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--slate);
  font-weight: 700;
}
.clients-section {
  padding-bottom: 60px;
}
.logo-ticker {
  overflow: hidden;
  position: relative;
  padding: 28px 0;
  margin-top: 28px;
}
.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}
.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}
.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logo-ticker-scroll 28s linear infinite;
}
.logo-ticker-track:hover {
  animation-play-state: paused;
}
.logo-ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.logo-ticker-item img {
  height: 58px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: transform 0.35s var(--ease-spring);
}
.logo-ticker-item:hover img {
  transform: scale(1.1);
}
.logo-ticker-text {
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.logo-ticker-item:hover .logo-ticker-text {
  opacity: 1;
}
@keyframes logo-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease-spring),
              border-color var(--dur) var(--ease);
}
.team-card:hover {
  box-shadow: 0 20px 44px rgba(12,27,46,0.11);
  transform: translateY(-5px);
  border-color: rgba(21,153,71,0.25);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--green), #7fe0a2);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  transition: transform 0.35s var(--ease-spring), box-shadow var(--dur) var(--ease);
}
.team-card:hover .team-avatar {
  transform: scale(1.12);
  box-shadow: 0 10px 24px rgba(21,153,71,0.3);
}
.team-role {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
  margin-top: 4px;
}
.form-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}
.contact-card {
  background: linear-gradient(135deg, var(--navy), #153a1b);
  color: #fff;
  border-radius: 22px;
  padding: 30px;
}
.contact-card p {
  color: #cce8d6;
}
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-weight: 800;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
  background: #fff;
  outline: none;
}
input:hover,
select:hover,
textarea:hover {
  border-color: #94a3b8;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(21,153,71,0.1);
  background: #fafffe;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tag {
  display: inline-flex;
  width: max-content;
  background: #edf7f1;
  color: var(--green-dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 13px;
}
.read-more {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 900;
}
.faq {
  display: grid;
  gap: 14px;
}
.faq .card h3 {
  font-size: 18px;
}
.footer {
  background: #091e0d;
  color: #cde8d3;
  padding: 58px 0 22px;
  
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.footer h3,
.footer h4 {
  color: #fff;
  margin-top: 0;
}
.footer a {
  display: flex;
  align-items: center;
  gap: 1;
  margin: 8px 0;
  color: #cde8d3;
  width: max-content;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.footer a:hover {
  color: #b6f0c8;
  transform: translateX(5px);
}
.footer-logo {
  max-width: 210px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.footer-app-tagline {
  font-size: 13px;
  color: #7fad90;
  margin: 0 0 14px;
  line-height: 1.5;
}
.store-btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.store-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  background: linear-gradient(135deg, rgba(21, 153, 71, 0.16), rgba(12, 123, 54, 0.24));
  border: 1px solid rgba(21, 153, 71, 0.45);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.store-btn:hover {
  background: linear-gradient(135deg, rgba(21, 153, 71, 0.3), rgba(12, 123, 54, 0.4));
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
.store-btn svg {
  color: #4fdc85;
  flex-shrink: 0;
}
.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-btn small {
  font-size: 10px;
  font-weight: 600;
  color: #9abda8;
}
.store-btn strong {
  font-size: 14px;
  font-weight: 800;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  border: none !important;
  color: #fff !important;
  margin: 0 !important;
  transform: none !important;
  flex-shrink: 0;
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease) !important;
}
.social-facebook  { background: #1877f2 !important; }
.social-instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7) !important;
}
.social-linkedin { background: #0a66c2 !important; }
.social-youtube  { background: #ff0000 !important; }
.social-icon:hover {
  filter: brightness(1.12);
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 20px;
  padding-top: 20px;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.sticky-demo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wa-icon {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 3px rgba(37, 211, 102, 0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  flex-shrink: 0;
}
.whatsapp-float:hover .wa-icon {
  transform: scale(1.12) rotate(15deg);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6), 0 0 0 5px rgba(37, 211, 102, 0.2);
}
.wa-label {
  background: rgba(10, 20, 36, 0.9);
  color: #fff;
  padding: 9px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.whatsapp-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
.small-note {
  font-size: 13px;
  color: var(--muted);
}

/* ── Scroll Reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Check-list hover ───────────────────────────────────────────────────── */
.check {
  transition: transform var(--dur) var(--ease);
}
.check:hover {
  transform: translateX(5px);
  color: var(--navy);
}

/* ── Read-more arrow slide ──────────────────────────────────────────────── */
.read-more {
  display: inline-flex;
  align-items: center;
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
  gap: 4px;
}
.read-more:hover { gap: 9px; }

/* ── Tag hover ──────────────────────────────────────────────────────────── */
.tag {
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease-spring);
}
.tag:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}

/* ── Logo hover tint ────────────────────────────────────────────────────── */
.logo {
  transition: opacity var(--dur) var(--ease);
}
.logo:hover { opacity: 0.85; }

/* ── Customer item ──────────────────────────────────────────────────────── */
.customer-item {
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease-spring),
              border-color var(--dur) var(--ease);
}
.customer-item:hover {
  box-shadow: 0 12px 30px rgba(12,27,46,0.1);
  transform: translateY(-4px);
  border-color: rgba(21,153,71,0.3);
}

/* ── Topbar link transition ─────────────────────────────────────────────── */
.topbar-links a {
  transition: color var(--dur) var(--ease);
}

/* ── Nav dropdown ───────────────────────────────────────────────────────── */
.nav-dropdown-menu {
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

/* ── Mobile toggle ──────────────────────────────────────────────────────── */
.mobile-toggle {
  transition: transform var(--dur) var(--ease-spring), color var(--dur);
}
.mobile-toggle:hover { transform: scale(1.12); color: var(--green-dark); }

/* ── CTA box pulse on hover ─────────────────────────────────────────────── */
.cta {
  transition: box-shadow 0.3s var(--ease);
}
.cta:hover {
  box-shadow: 0 32px 70px rgba(12,27,46,0.18);
}

/* ── Section title accent underline ────────────────────────────────────── */
.section-title h2 {
  position: relative;
  display: inline-block;
}

/* ── Feature row hover ──────────────────────────────────────────────────── */
.feature-row {
  transition: background var(--dur) var(--ease);
}
.feature-row:hover {
  background: var(--light);
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

/* ── Pill hover ─────────────────────────────────────────────────────────── */
.pill {
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease-spring);
}
.pill:hover {
  background: var(--green-soft);
  color: var(--green-dark);
  border-color: rgba(21,153,71,0.3);
  transform: scale(1.04);
}

/* ── WhatsApp float pulse ring ──────────────────────────────────────────── */
.wa-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: transparent;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-icon { position: relative; }
@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .form-wrap,
  .cta {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4,
  .grid-5,
  .stats,
  .team-grid,
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-row {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta {
    padding: 36px;
  }
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 4%;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .topbar .container {
    display: block;
  }
  .topbar-links {
    margin-top: 7px;
  }
  .topbar span:first-child {
    display: block;
    margin-bottom: 4px;
  }
  .nav-dropdown-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav-dropdown-toggle {
    padding: 4px 0;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    padding: 4px 0 4px 14px;
    min-width: unset;
    width: 100%;
    display: none;
  }
  .nav-dropdown-wrap.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-wrap.open .nav-chevron {
    transform: rotate(180deg);
  }
  .nav-dropdown-wrap:hover .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-wrap:hover .nav-chevron {
    transform: none;
  }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .feature-list,
  .form-grid,
  .kpi-grid,
  .status-row,
  .stats,
  .team-grid,
  .customer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 58px 0;
  }
  .section {
    padding: 56px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions {
    display: grid;
  }
  .btn {
    width: 100%;
  }
  .sticky-demo {
    left: 18px;
    right: 18px;
    bottom: 76px;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
  .wa-label {
    display: none;
  }
  .topbar {
    display: none;
  }
  .logo img {
    height: 40px;
  }
  .logo-name {
    font-size: 20px;
  }
  .logo-tag {
    font-size: 10px;
  }
}

/* ── Cursor-follow dot ─────────────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 9999;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s var(--ease), opacity 0.2s var(--ease);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(21, 153, 71, 0.5);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.2s var(--ease);
}
body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}
.cursor-dot.is-hovering {
  width: 12px;
  height: 12px;
  background: var(--amber);
}
.cursor-ring.is-hovering {
  width: 52px;
  height: 52px;
  border-color: rgba(245, 158, 11, 0.55);
}
@media (pointer: coarse), (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
