* {
  box-sizing: border-box;
}

:root {
  --navy: #063f67;
  --navy2: #0a4b73;
  --text: #344556;
  --muted: #68798a;
  --line: #d7e1ea;
  --bg: #f7fbfe;
  --green: #25b99a;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f5fafe;
}

.brand-name {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.05;
  font-weight: 800;
}

.brand-sub {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #7b8995;
}

/* Header */
header {
  height: 82px;
  background: rgba(250, 253, 255, .96);
  border-bottom: 1px solid #e1e9ef;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav {
  width: min(1360px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #cedae4;
  border-radius: 15px;
  background: #edf4f8;
}

.menu a {
  text-decoration: none;
  color: #405163;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 23px;
  position: relative;
  transition: color 0.22s ease, background 0.22s ease;
}

/* Sliding underline on hover */
.menu a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu a:hover::after { transform: scaleX(1); }
.menu a:hover { color: var(--navy); }

/* Active pill — no underline, keep background */
.menu a.active {
  color: white;
  background: var(--navy);
}
.menu a.active::after { display: none; }

/* Staggered fade-in for nav links on page load */
@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.menu a {
  animation: navFadeDown 0.35s ease both;
}
.menu a:nth-child(1) { animation-delay: 0.05s; }
.menu a:nth-child(2) { animation-delay: 0.10s; }
.menu a:nth-child(3) { animation-delay: 0.15s; }
.menu a:nth-child(4) { animation-delay: 0.20s; }
.menu a:nth-child(5) { animation-delay: 0.25s; }
.menu a:nth-child(6) { animation-delay: 0.30s; }
.menu a:nth-child(7) { animation-delay: 0.35s; }
.menu a:nth-child(8) { animation-delay: 0.40s; }

/* Logo fade-in from left */
@keyframes navLogoIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.brand {
  animation: navLogoIn 0.4s ease both;
}

/* Login & Book Demo buttons slide in from right */
@keyframes navBtnIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.login, .demo-top {
  animation: navBtnIn 0.4s ease both;
}
.login      { animation-delay: 0.45s; }
.demo-top   { animation-delay: 0.52s; }

/* Book Demo button pulse on hover */
.demo-top {
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
}
.demo-top:hover {
  background: var(--navy2);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 63, 103, 0.22);
}

/* Login link subtle lift */
.login {
  transition: color 0.2s, transform 0.18s;
}
.login:hover {
  color: var(--navy2);
  transform: translateY(-1px);
}

.login {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
  margin-left: 28px;
  white-space: nowrap;
}

.demo-top {
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 13px;
  font-weight: 750;
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  background:
    radial-gradient(circle at 83% 48%, rgba(126, 225, 232, .24), transparent 28%),
    radial-gradient(circle at 55% 30%, rgba(129, 170, 255, .13), transparent 27%),
    linear-gradient(120deg, #eefaff 0%, #f9fcff 48%, #eef9ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(#d7e5ee 1px, transparent 1px),
    linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: 150px;
  top: 35px;
  border: 1px dashed #bfd8e8;
  border-radius: 50%;
  opacity: .8;
}

.hero-inner {
  width: min(1360px, calc(100% - 48px));
  margin: auto;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 25px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 2px 9px rgba(30, 70, 100, .04);
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 850;
}

.eyebrow::before {
  color: #a53c47;
}

h1 {
  margin: 27px 0 22px;
  max-width: 700px;
  color: var(--navy);
  font-size: clamp(48px, 4.4vw, 69px);
  line-height: .98;
  letter-spacing: -3px;
  font-weight: 850;
}

.lead {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.55;
  color: #526274;
  margin-bottom: 28px;
}

.actions {
  display: flex;
  gap: 13px;
  margin-bottom: 25px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 24px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 750;
}

.btn.primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(4, 60, 100, .12);
}

.btn.secondary {
  color: var(--navy);
  background: white;
  border: 1px solid #d6e0e8;
}

.arrow {
  font-size: 21px;
  line-height: 0;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: rgba(255, 255, 255, .82);
  border: 1px solid #d2dde6;
  border-radius: 22px;
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 650;
  color: #536171;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  width: 17px;
  height: 17px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
}

.visual {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  width: min(650px, 100%);
  border-radius: 16px;
  filter: drop-shadow(0 24px 25px rgba(32, 73, 102, .18));
  transform: translate(25px, 4px);
}

.visual-badge {
  position: absolute;
  bottom: 33px;
  right: 28px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #d6e0e8;
  border-radius: 14px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 9px 22px rgba(50, 90, 115, .08);
}

.visual-badge .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #f0f8fc;
  color: var(--navy);
  font-size: 18px;
}

.visual-badge strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.visual-badge span {
  color: #7590a2;
  font-size: 10px;
  letter-spacing: 1.2px;
}

/* Stats */
.stats-wrap {
  background: #f6fbfe;
  padding: 10px 0 10px;
}

.stats {
  width: min(1360px, calc(100% - 48px));
  margin: auto;
  padding: 18px;
  border: 1px solid #d7e1e8;
  border-radius: 30px;
  background: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-shadow: 0 8px 25px rgba(40, 85, 110, .04);
}

.stat {
  min-height: 115px;
  padding: 24px;
  border-radius: 24px;
  background: #eef8fe;
  display: flex;
  align-items: center;
  gap: 17px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: white;
  color: var(--navy);
  font-size: 22px;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  color: #465668;
  font-weight: 650;
  font-size: 14px;
}

@media (max-width: 1050px) {
  .menu {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 70px 0 30px;
  }

  .hero {
    min-height: auto;
  }

  .visual {
    min-height: 400px;
  }

  .device {
    transform: none;
  }

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

@media (max-width: 650px) {
  header {
    height: 70px;
  }

  .nav {
    width: calc(100% - 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 38px;
  }

  .login {
    display: none;
  }

  .demo-top {
    margin-left: auto;
    padding: 12px 14px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding-top: 45px;
  }

  h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  .lead {
    font-size: 16px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .visual {
    min-height: 300px;
  }

  .visual-badge {
    right: 0;
    bottom: 4px;
  }

  .stats {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 22px;
  }

  .stat {
    min-height: 100px;
  }
}

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.875rem;
}

footer p {
  margin: 0;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(6, 63, 103, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 999;
}
#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: var(--navy2);
}
@media (max-width: 650px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero */
.contact-hero {
    background:
        radial-gradient(circle at 80% 40%, rgba(126, 225, 232, .2), transparent 30%),
        radial-gradient(circle at 20% 60%, rgba(129, 170, 255, .12), transparent 30%),
        linear-gradient(120deg, #eefaff 0%, #f9fcff 50%, #eef9ff 100%);
    padding: 22px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .3;
    background-image:
        linear-gradient(#d7e5ee 1px, transparent 1px),
        linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: auto;
}
.contact-hero-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #d2e4ef;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.contact-hero h1 {
    font-size: clamp(36px, 4vw, 58px);
    color: var(--navy);
    font-weight: 850;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0 0 18px;
}
.contact-hero p {
    color: #526274;
    font-size: 17px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

/* Quick contact cards */
.contact-cards-wrap {
    background: #f6fbfe;
    padding: 0 24px 0;
    margin-top: -1px;
}
.contact-cards {
    max-width: 1160px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    transform: translateY(-36px);
}
.contact-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 20px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(30, 70, 100, .05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover {
    box-shadow: 0 12px 30px rgba(30, 70, 100, .1);
    transform: translateY(-3px);
}
.contact-card-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.contact-card-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 8px;
}
.contact-card-value {
    display: block;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-all;
}
a.contact-card-value:hover {
    color: var(--green);
}

/* Body: side + form */
.contact-body {
    background: #f6fbfe;
    padding: 0 24px 72px;
}
.contact-body-inner {
    max-width: 1160px;
    margin: auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: start;
}

/* Side info */
.contact-side-box {
    background: var(--navy);
    border-radius: 24px;
    padding: 36px 32px;
    color: white;
    position: sticky;
    top: 100px;
}
.side-heading {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 18px;
}
.side-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.side-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}
.side-check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    background: rgba(37, 185, 154, .25);
    border: 1.5px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
}
.side-divider {
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 24px 0;
}
.side-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.side-tags span {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
}

/* Form */
.contact-form-wrap {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 24px;
    padding: 40px 40px;
    box-shadow: 0 8px 28px rgba(30, 70, 100, .05);
}
.contact-form-header {
    margin-bottom: 30px;
}
.contact-form-header h2 {
    color: var(--navy);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
}
.contact-form-header p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}
.contact-form .cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.contact-form .cf-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.contact-form .cf-row .cf-group {
    margin-bottom: 0;
}
.contact-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}
.req {
    color: #c0392b;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #d5e3ed;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: #f8fcff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(6, 63, 103, .08);
    background: white;
}
.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Captcha */
.cf-captcha {
    background: #f0f7fc;
    border: 1.5px solid #d0e4f0;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 22px;
}
.cf-captcha-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.cf-captcha-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}
.cf-captcha-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}
.cf-new-captcha {
    background: white;
    border: 1.5px solid #c8dce9;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s;
}
.cf-new-captcha:hover {
    background: #e8f4fb;
}
.cf-captcha-body {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.cf-captcha-question {
    background: white;
    border: 1.5px solid #c8dce9;
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
    white-space: nowrap;
    font-family: monospace;
}
.cf-captcha-input {
    flex: 1;
    margin-bottom: 0 !important;
}
.cf-captcha-input input {
    max-width: 160px;
}

/* Submit button */
.cf-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 750;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 6px 18px rgba(6, 63, 103, .18);
}
.cf-submit:hover {
    background: var(--navy2);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(6, 63, 103, .22);
}
.cf-submit span {
    font-size: 20px;
}

/* Form messages */
.cf-message {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    display: none;
}
.cf-message.success {
    display: block;
    background: #e8faf4;
    color: #1a7a5e;
    border: 1px solid #b2e8d6;
}
.cf-message.error {
    display: block;
    background: #fef0f0;
    color: #b03030;
    border: 1px solid #f5c6c6;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .contact-body-inner { grid-template-columns: 1fr; }
    .contact-side-box { position: static; }
    .side-list { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
    .contact-hero { padding: 52px 20px 44px; }
    .contact-hero h1 { font-size: 34px; letter-spacing: -1.5px; }
    .contact-cards { grid-template-columns: 1fr 1fr; transform: translateY(-24px); gap: 12px; }
    .contact-body { padding: 0 16px 52px; }
    .contact-form-wrap { padding: 26px 20px; }
    .contact-form .cf-row { grid-template-columns: 1fr; }
    .cf-captcha-body { flex-direction: column; align-items: flex-start; }
    .cf-captcha-input input { max-width: 100%; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ---- Shared section labels & titles ---- */
.about-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid #d2e4ef;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.about-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin: 0 0 14px;
    line-height: 1.1;
}
.about-section-sub {
    color: #526274;
    font-size: 16px;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 52px;
}

/* ---- HERO ---- */
.about-hero {
    background:
        radial-gradient(circle at 85% 40%, rgba(126,225,232,.22), transparent 30%),
        radial-gradient(circle at 15% 65%, rgba(129,170,255,.12), transparent 30%),
        linear-gradient(120deg, #eefaff 0%, #f9fcff 50%, #eef9ff 100%);
    padding: 22px 24px 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(#d7e5ee 1px, transparent 1px),
        linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.about-hero-inner {
    max-width: 1160px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.about-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-hero-left h1 {
    font-size: clamp(38px, 4vw, 60px);
    color: var(--navy);
    font-weight: 850;
    letter-spacing: -2.5px;
    line-height: 1.02;
    margin: 0;
}
.about-hero-left p {
    color: #526274;
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 880px;
}
.about-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Stat grid inside hero */
.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 860px;
}
.about-stat-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(30,70,100,.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(30,70,100,.1);
}
.about-stat-icon {
    font-size: 26px;
    margin-bottom: 10px;
}
.about-stat-num {
    font-size: 36px;
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 6px;
}
.about-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .5px;
}

/* ---- STORY / TIMELINE ---- */
.about-story {
    background: white;
    padding: 20px 24px;
    text-align: center;
}
.about-story-inner {
    max-width: 1160px;
    margin: auto;
}
.about-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    position: relative;
    margin-top: 0;
}
.about-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: calc(16.66% + 12px);
    right: calc(16.66% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--green), #63c9f5, var(--navy));
    border-radius: 2px;
}
.about-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-tl-dot {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid #d0e8f4;
    box-shadow: 0 0 0 4px rgba(6,63,103,.1);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.about-tl-card {
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 20px;
    padding: 28px 26px;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-tl-card:hover {
    box-shadow: 0 10px 28px rgba(30,70,100,.09);
    transform: translateY(-3px);
}
.about-tl-year {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.about-tl-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 12px;
}
.about-tl-card p {
    font-size: 14px;
    color: #526274;
    line-height: 1.65;
    margin: 0;
}

/* ---- VALUES ---- */
.about-values {
    background: #f5fafd;
    padding: 80px 24px;
    text-align: center;
}
.about-values-inner {
    max-width: 1160px;
    margin: auto;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}
.about-value-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 20px;
    padding: 30px 26px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-value-card:hover {
    box-shadow: 0 10px 28px rgba(30,70,100,.09);
    transform: translateY(-4px);
}
.about-value-icon {
    font-size: 30px;
    margin-bottom: 16px;
}
.about-value-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 10px;
}
.about-value-card p {
    font-size: 14px;
    color: #526274;
    line-height: 1.65;
    margin: 0;
}

/* ---- SOLUTIONS ---- */
.about-solutions {
    background: white;
    padding: 80px 24px;
    text-align: center;
}
.about-solutions-inner {
    max-width: 1160px;
    margin: auto;
}
.about-solutions-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    text-align: left;
    align-items: start;
}
.about-sol-card {
    border: 1px solid #dde8f0;
    border-radius: 22px;
    padding: 34px 30px;
    background: #f7fbfe;
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-sol-card:hover {
    box-shadow: 0 12px 32px rgba(30,70,100,.1);
    transform: translateY(-4px);
}
.about-sol-featured {
    background: var(--navy);
    border-color: var(--navy);
}
.about-sol-featured h3,
.about-sol-featured p,
.about-sol-featured .about-sol-list li {
    color: rgba(255,255,255,.88);
}
.about-sol-featured h3 {
    color: white;
}
.about-sol-featured .about-sol-badge {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.8);
    border-color: rgba(255,255,255,.2);
}
.about-sol-featured .about-sol-icon {
    background: rgba(255,255,255,.12);
    color: white;
}
.about-sol-featured .check {
    border-color: var(--green);
    color: var(--green);
}
.about-sol-featured .about-sol-link {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.25);
}
.about-sol-featured .about-sol-link:hover {
    background: rgba(255,255,255,.1);
    color: white;
}
.about-sol-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #e8f4fb;
    color: var(--navy);
    font-size: 22px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}
.about-sol-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    background: #e8f4fb;
    border: 1px solid #c5dff0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy);
    margin-bottom: 14px;
}
.about-sol-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 12px;
}
.about-sol-card p {
    font-size: 14px;
    color: #526274;
    line-height: 1.65;
    margin: 0 0 18px;
}
.about-sol-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.about-sol-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #526274;
    font-weight: 600;
}
.about-sol-link {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid #c8dce9;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.about-sol-link:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ---- CTA BANNER ---- */
.about-cta {
    background: linear-gradient(120deg, var(--navy) 0%, #0a5a85 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
}
.about-cta-inner {
    max-width: 760px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.about-cta h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: white;
    letter-spacing: -1.5px;
    margin: 0 0 16px;
}
.about-cta p {
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 36px;
}
.about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta-btn-primary {
    padding: 16px 28px;
    background: var(--green);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 6px 18px rgba(37,185,154,.3);
}
.about-cta-btn-primary:hover {
    opacity: .9;
    transform: translateY(-2px);
}
.about-cta-btn-secondary {
    padding: 16px 28px;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,.25);
    transition: background 0.2s;
}
.about-cta-btn-secondary:hover {
    background: rgba(255,255,255,.18);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .about-hero-inner { gap: 36px; }
    .about-stat-grid { grid-template-columns: repeat(4, 1fr); }
    .about-timeline { grid-template-columns: 1fr; }
    .about-timeline::before { display: none; }
    .about-tl-dot { margin-bottom: 14px; }
    .about-tl-item { flex-direction: row; gap: 20px; align-items: flex-start; }
    .about-tl-dot { margin-top: 8px; flex: 0 0 36px; margin-bottom: 0; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-solutions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .about-hero { padding: 52px 20px 60px; }
    .about-hero-left h1 { font-size: 36px; letter-spacing: -1.5px; }
    .about-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .about-hero-actions { flex-direction: column; width: 100%; }
    .about-hero-actions .btn { justify-content: center; }
    .about-story,
    .about-values,
    .about-solutions { padding: 56px 20px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-cta { padding: 52px 20px; }
    .about-tl-item { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */

/* ---- Hero ---- */
.res-hero {
    background:
        radial-gradient(circle at 80% 40%, rgba(126,225,232,.22), transparent 30%),
        radial-gradient(circle at 15% 65%, rgba(129,170,255,.12), transparent 30%),
        linear-gradient(120deg, #eefaff 0%, #f9fcff 50%, #eef9ff 100%);
    padding: 22px 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.res-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(#d7e5ee 1px, transparent 1px),
        linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.res-hero-inner {
    max-width: 780px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.res-hero-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid #d2e4ef;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.res-hero h1 {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin: 0 0 18px;
}
.res-hero p {
    color: #526274;
    font-size: 17px;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 36px;
}

/* Category filter pills */
.res-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.res-cat {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1.5px solid #c8dce9;
    background: rgba(255,255,255,.85);
    color: #405163;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.res-cat:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: white;
}
.res-cat.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ---- Featured article ---- */
.res-featured-wrap {
    background: #f6fbfe;
    padding: 26px 24px;
}
.res-featured-inner {
    max-width: 1160px;
    margin: auto;
}
.res-featured-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(30,70,100,.08);
    transition: box-shadow 0.25s, transform 0.25s;
}
.res-featured-card:hover {
    box-shadow: 0 18px 48px rgba(30,70,100,.13);
    transform: translateY(-4px);
}
.res-featured-img {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #0e6896 100%);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.res-featured-img::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 40px 40px;
}
.res-featured-img-placeholder {
    text-align: center;
    position: relative;
    z-index: 1;
}
.res-img-icon {
    font-size: 72px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}
.res-img-label {
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.res-featured-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    background: var(--green);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}
.res-featured-content {
    padding: 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.res-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}
.res-dot { color: #bcc8d4; }
.res-featured-content h2 {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0 0 16px;
}
.res-featured-content p {
    font-size: 15px;
    color: #526274;
    line-height: 1.65;
    margin: 0 0 22px;
}
.res-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.res-tags span {
    padding: 5px 12px;
    background: #eef5fb;
    border: 1px solid #d0e4f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}
.res-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(6,63,103,.18);
}
.res-read-btn:hover {
    background: var(--navy2);
    transform: translateY(-2px);
}

/* Category tag colours */
.res-cat-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.res-cat-tag.cloud-erp    { background: #e0f0ff; color: #1460a0; }
.res-cat-tag.inventory    { background: #e2faf3; color: #1a7a5e; }
.res-cat-tag.accounting   { background: #f0ebff; color: #6030a0; }
.res-cat-tag.cloud-connect{ background: #e0f7ff; color: #0a7090; }
.res-cat-tag.mobile       { background: #fff4e0; color: #9a5a00; }
.res-cat-tag.industry     { background: #eef0f8; color: var(--navy); }

/* ---- Article grid ---- */
.res-articles-wrap {
    background: white;
    padding: 64px 24px;
}
.res-articles-inner {
    max-width: 1160px;
    margin: auto;
}
.res-articles-header {
    text-align: center;
    margin-bottom: 44px;
}
.res-articles-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.res-articles-header h2 {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.2px;
    margin: 0;
}
.res-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.res-article-card {
    border: 1px solid #dde8f0;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fcff;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.res-article-card:hover {
    box-shadow: 0 12px 32px rgba(30,70,100,.1);
    transform: translateY(-4px);
}
.res-article-img {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.res-img-blue   { background: linear-gradient(135deg, #1460a0 0%, #2185d0 100%); }
.res-img-green  { background: linear-gradient(135deg, #1a7a5e 0%, #25b99a 100%); }
.res-img-purple { background: linear-gradient(135deg, #5a30a0 0%, #8b5cf6 100%); }
.res-img-cyan   { background: linear-gradient(135deg, #0a7090 0%, #06b6d4 100%); }
.res-img-orange { background: linear-gradient(135deg, #9a5a00 0%, #f59e0b 100%); }
.res-img-navy   { background: linear-gradient(135deg, var(--navy) 0%, #0e6896 100%); }
.res-article-body {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.res-article-meta {
    margin-bottom: 12px;
}
.res-read-time {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    background: #f0f6fb;
    padding: 3px 9px;
    border-radius: 10px;
}
.res-article-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 0 0 10px;
}
.res-article-card p {
    font-size: 13px;
    color: #526274;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}
.res-article-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 750;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1.5px solid #c8dce9;
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
    align-self: flex-start;
}
.res-article-link:hover {
    color: var(--green);
    border-color: var(--green);
}

/* ---- Newsletter CTA ---- */
.res-cta {
    background: linear-gradient(120deg, var(--navy) 0%, #0a5a85 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.res-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
}
.res-cta-inner {
    max-width: 580px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.res-cta-icon {
    font-size: 46px;
    margin-bottom: 18px;
}
.res-cta h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 850;
    color: white;
    letter-spacing: -1.2px;
    margin: 0 0 14px;
}
.res-cta p {
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 32px;
}
.res-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: auto;
}
.res-newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    color: white;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.res-newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.res-newsletter-form input:focus {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.15);
}
.res-newsletter-form button {
    padding: 14px 22px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(37,185,154,.3);
}
.res-newsletter-form button:hover {
    opacity: .9;
    transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .res-articles-grid { grid-template-columns: repeat(2, 1fr); }
    .res-featured-card { grid-template-columns: 1fr; }
    .res-featured-img { min-height: 220px; }
}
@media (max-width: 640px) {
    .res-hero { padding: 52px 20px 60px; }
    .res-hero h1 { font-size: 34px; letter-spacing: -1.5px; }
    .res-featured-wrap,
    .res-articles-wrap { padding: 44px 20px; }
    .res-featured-content { padding: 26px 22px; }
    .res-articles-grid { grid-template-columns: 1fr; }
    .res-newsletter-form { flex-direction: column; }
    .res-newsletter-form button { width: 100%; }
    .res-cta { padding: 52px 20px; }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

/* ---- Hero ---- */
.pr-hero {
    background:
        radial-gradient(circle at 78% 45%, rgba(126,225,232,.22), transparent 30%),
        radial-gradient(circle at 18% 60%, rgba(129,170,255,.12), transparent 30%),
        linear-gradient(120deg, #eefaff 0%, #f9fcff 50%, #eef9ff 100%);
    padding: 22px 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(#d7e5ee 1px, transparent 1px),
        linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.pr-hero-inner {
    max-width: 760px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.pr-hero-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid #d2e4ef;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.pr-hero h1 {
    font-size: clamp(38px, 4.2vw, 62px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -2.5px;
    line-height: 1.04;
    margin: 0 0 18px;
}
.pr-hero p {
    color: #526274;
    font-size: 17px;
    line-height: 1.65;
    max-width: 780px;
    margin: 0 auto 32px;
}
.pr-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.pr-hero-badges span {
    padding: 9px 16px;
    background: rgba(255,255,255,.88);
    border: 1px solid #d0e4ef;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

/* ---- Pricing cards ---- */
.pr-plans-wrap {
    background: #f5fafd;
    padding: 64px 24px 80px;
}
.pr-plans-inner {
    max-width: 1160px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.08fr 1fr;
    gap: 20px;
    align-items: start;
}
.pr-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 24px;
    padding: 36px 30px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.pr-card:hover {
    box-shadow: 0 14px 36px rgba(30,70,100,.1);
    transform: translateY(-4px);
}
.pr-card-featured {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 16px 48px rgba(6,63,103,.28);
    transform: translateY(-12px);
}
.pr-card-featured:hover {
    box-shadow: 0 22px 56px rgba(6,63,103,.34);
    transform: translateY(-16px);
}
.pr-popular-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 0 0 14px 14px;
}
.pr-card-top { margin-bottom: 28px; }
.pr-plan-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    background: #e8f4fb;
    border: 1px solid #c5dff0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy);
    margin-bottom: 16px;
}
.pr-plan-badge-light {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
}
.pr-plan-icon {
    font-size: 36px;
    margin-bottom: 14px;
}
.pr-card h2 {
    font-size: 24px;
    font-weight: 850;
    color: var(--navy);
    margin: 0 0 10px;
    letter-spacing: -.5px;
}
.pr-card-featured h2 { color: white; }
.pr-plan-desc {
    font-size: 14px;
    color: #526274;
    line-height: 1.6;
    margin: 0 0 22px;
}
.pr-card-featured .pr-plan-desc { color: rgba(255,255,255,.72); }
.pr-price {
    padding: 16px 20px;
    background: #f0f7fc;
    border-radius: 14px;
    border: 1px solid #d5e8f4;
}
.pr-card-featured .pr-price {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
}
.pr-price-label {
    display: block;
    font-size: 20px;
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -.5px;
}
.pr-card-featured .pr-price-label { color: white; }
.pr-price-sub {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 3px;
}
.pr-card-featured .pr-price-sub { color: rgba(255,255,255,.55); }
.pr-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.pr-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #3d5368;
    font-weight: 600;
}
.pr-card-featured .pr-features li { color: rgba(255,255,255,.85); }
.pr-check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
    background: rgba(37,185,154,.08);
}
.pr-check-light {
    border-color: var(--green);
    color: var(--green);
    background: rgba(37,185,154,.15);
}
.pr-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 13px;
    text-align: center;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    transition: all 0.2s;
    font-family: inherit;
    border: none;
    cursor: pointer;
}
.pr-btn-outline {
    background: transparent;
    border: 1.5px solid #c8dce9;
    color: var(--navy);
}
.pr-btn-outline:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
.pr-btn-white {
    background: white;
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.pr-btn-white:hover {
    background: #f0f7fc;
}

/* ---- Included strip ---- */
.pr-included {
    background: white;
    padding: 48px 24px;
    border-top: 1px solid #e8f0f6;
    border-bottom: 1px solid #e8f0f6;
}
.pr-included-inner {
    max-width: 1160px;
    margin: auto;
    text-align: center;
}
.pr-included-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    margin-bottom: 24px;
}
.pr-included-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.pr-included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}
.pr-inc-icon { font-size: 18px; }

/* ---- Comparison table ---- */
.pr-compare-wrap {
    background: #f5fafd;
    padding: 72px 24px;
}
.pr-compare-inner {
    max-width: 1000px;
    margin: auto;
}
.pr-compare-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-align: center;
    margin-bottom: 12px;
}
.pr-compare-title {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.2px;
    text-align: center;
    margin: 0 0 40px;
}
.pr-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid #dde8f0;
    box-shadow: 0 6px 24px rgba(30,70,100,.06);
}
.pr-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}
.pr-table thead tr {
    background: var(--navy);
}
.pr-table thead th {
    padding: 18px 20px;
    color: rgba(255,255,255,.85);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .5px;
    text-align: center;
}
.pr-th-feature { text-align: left; width: 40%; }
.pr-th-featured {
    background: rgba(255,255,255,.1);
    color: white;
}
.pr-table tbody tr {
    border-bottom: 1px solid #edf3f8;
}
.pr-table tbody tr:last-child { border-bottom: none; }
.pr-table tbody tr:hover { background: #f8fcff; }
.pr-table td {
    padding: 14px 20px;
    text-align: center;
    color: var(--text);
}
.pr-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
}
.pr-col-featured { background: rgba(6,63,103,.04); }
.pr-tr-group td {
    background: #eef5fb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy);
    text-transform: uppercase;
    padding: 10px 20px;
}
.pr-tr-group td:not(:first-child) { display: none; }
.pr-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(37,185,154,.12);
    border: 1.5px solid var(--green);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}
.pr-no {
    color: #b0bec5;
    font-size: 18px;
    font-weight: 300;
}

/* ---- FAQ ---- */
.pr-faq-wrap {
    background: white;
    padding: 72px 24px;
}
.pr-faq-inner {
    max-width: 760px;
    margin: auto;
}
.pr-faq-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-align: center;
    margin-bottom: 12px;
}
.pr-faq-title {
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.2px;
    text-align: center;
    margin: 0 0 40px;
}
.pr-faqs { display: flex; flex-direction: column; gap: 12px; }
.pr-faq-item {
    border: 1.5px solid #dde8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.pr-faq-item.open { border-color: var(--navy); }
.pr-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 750;
    color: var(--navy);
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}
.pr-faq-q:hover { background: #f5fafd; }
.pr-faq-item.open .pr-faq-q { background: #f0f7fc; }
.pr-faq-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f0f6;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 300;
    color: var(--navy);
    transition: transform 0.25s, background 0.2s;
}
.pr-faq-item.open .pr-faq-icon {
    transform: rotate(45deg);
    background: var(--navy);
    color: white;
}
.pr-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 14px;
    color: #526274;
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.25s ease;
}
.pr-faq-item.open .pr-faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ---- CTA ---- */
.pr-cta {
    background: linear-gradient(120deg, var(--navy) 0%, #0a5a85 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pr-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
}
.pr-cta-inner {
    max-width: 680px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.pr-cta h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: white;
    letter-spacing: -1.5px;
    margin: 0 0 14px;
}
.pr-cta p {
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 36px;
}
.pr-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.pr-cta-primary {
    padding: 16px 28px;
    background: var(--green);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 6px 18px rgba(37,185,154,.3);
}
.pr-cta-primary:hover { opacity: .9; transform: translateY(-2px); }
.pr-cta-secondary {
    padding: 16px 28px;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,.25);
    transition: background 0.2s;
}
.pr-cta-secondary:hover { background: rgba(255,255,255,.18); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .pr-plans-inner { grid-template-columns: 1fr; max-width: 520px; }
    .pr-card-featured { transform: none; }
    .pr-card-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 640px) {
    .pr-hero { padding: 52px 20px 60px; }
    .pr-hero h1 { font-size: 36px; letter-spacing: -1.5px; }
    .pr-plans-wrap { padding: 44px 20px 60px; }
    .pr-card { padding: 28px 22px; }
    .pr-compare-wrap, .pr-faq-wrap { padding: 52px 20px; }
    .pr-cta { padding: 52px 20px; }
    .pr-cta-actions { flex-direction: column; }
    .pr-cta-actions a { text-align: center; }
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */

/* ---- Hero ---- */
.ind-hero {
    background:
        radial-gradient(circle at 80% 40%, rgba(126,225,232,.22), transparent 30%),
        radial-gradient(circle at 15% 65%, rgba(129,170,255,.12), transparent 30%),
        linear-gradient(120deg, #eefaff 0%, #f9fcff 50%, #eef9ff 100%);
    padding: 22px 24px 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ind-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(#d7e5ee 1px, transparent 1px),
        linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.ind-hero-inner {
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.ind-hero-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid #d2e4ef;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.ind-hero h1 {
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -2.5px;
    line-height: 1.04;
    margin: 0 0 18px;
}
.ind-hero p {
    color: #526274;
    font-size: 17px;
    line-height: 1.65;
    max-width: 780px;
    margin: 0 auto 32px;
}
.ind-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Floating industry chips below hero */
.ind-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}
.ind-chips span {
    padding: 10px 18px;
    background: white;
    border: 1px solid #d0e4ef;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 3px 10px rgba(20,60,90,.06);
}

/* ---- Shared section labels ---- */
.ind-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
}
.ind-section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    text-align: center;
    margin: 0 0 14px;
}
.ind-section-sub {
    color: #526274;
    font-size: 16px;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 22px;
    text-align: center;
}

/* ---- Industry cards grid ---- */
.ind-cards-wrap {
    background: #f5fafd;
    padding: 22px 24px 20px;
}
.ind-cards-inner {
    max-width: 1160px;
    margin: auto;
}
.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ind-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 22px;
    padding: 28px 24px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.ind-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 22px 22px 0 0;
}
.ind-card:hover {
    box-shadow: 0 14px 36px rgba(30,70,100,.11);
    transform: translateY(-5px);
}

/* Per-industry accent colours */
.ind-trading::before       { background: linear-gradient(90deg, #1460a0, #2185d0); }
.ind-manufacturing::before { background: linear-gradient(90deg, #5a30a0, #8b5cf6); }
.ind-pharmacy::before      { background: linear-gradient(90deg, #1a7a5e, #25b99a); }
.ind-hospital::before      { background: linear-gradient(90deg, #b03030, #e05252); }
.ind-restaurant::before    { background: linear-gradient(90deg, #9a5a00, #f59e0b); }
.ind-automobile::before    { background: linear-gradient(90deg, #1460a0, #06b6d4); }
.ind-workshop::before      { background: linear-gradient(90deg, #5a4000, #a07830); }
.ind-growing::before       { background: linear-gradient(90deg, var(--navy), #0e6896); }

.ind-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.ind-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    background: #eef5fb;
    display: grid;
    place-items: center;
    font-size: 22px;
}
.ind-card-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--muted);
    text-transform: uppercase;
}
.ind-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.2;
}
.ind-card p {
    font-size: 13px;
    color: #526274;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.ind-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ind-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #3d5368;
}
.ind-chk {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900;
    background: rgba(37,185,154,.08);
}
.ind-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 750;
    color: var(--navy);
    text-decoration: none;
    padding: 9px 16px;
    border: 1.5px solid #c8dce9;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    align-self: flex-start;
}
.ind-link:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ---- Why industry ERP ---- */
.ind-why {
    background: white;
    padding: 72px 24px;
}
.ind-why-inner {
    max-width: 1160px;
    margin: auto;
}
.ind-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ind-why-card {
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 20px;
    padding: 32px 26px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.ind-why-card:hover {
    box-shadow: 0 10px 28px rgba(30,70,100,.09);
    transform: translateY(-4px);
}
.ind-why-icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.ind-why-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 10px;
}
.ind-why-card p {
    font-size: 13px;
    color: #526274;
    line-height: 1.65;
    margin: 0;
}

/* ---- CTA ---- */
.ind-cta {
    background: linear-gradient(120deg, var(--navy) 0%, #0a5a85 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ind-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
}
.ind-cta-inner {
    max-width: 680px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.ind-cta h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: white;
    letter-spacing: -1.5px;
    margin: 0 0 14px;
}
.ind-cta p {
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 36px;
}
.ind-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.ind-cta-primary {
    padding: 16px 28px;
    background: var(--green);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 6px 18px rgba(37,185,154,.3);
}
.ind-cta-primary:hover { opacity: .9; transform: translateY(-2px); }
.ind-cta-secondary {
    padding: 16px 28px;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,.25);
    transition: background 0.2s;
}
.ind-cta-secondary:hover { background: rgba(255,255,255,.18); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ind-hero { padding: 52px 20px 44px; }
    .ind-hero h1 { font-size: 38px; letter-spacing: -1.5px; }
    .ind-hero-actions { flex-direction: column; align-items: center; }
    .ind-hero-actions .btn { width: 100%; justify-content: center; }
    .ind-cards-wrap, .ind-why { padding: 52px 20px; }
    .ind-grid { grid-template-columns: 1fr; }
    .ind-why-grid { grid-template-columns: 1fr; }
    .ind-cta { padding: 52px 20px; }
    .ind-cta-actions { flex-direction: column; }
    .ind-cta-actions a { text-align: center; }
}

/* ============================================================
   MODULES PAGE
   ============================================================ */

/* ---- Hero ---- */
.mod-hero {
    background:
        radial-gradient(circle at 80% 40%, rgba(126,225,232,.22), transparent 30%),
        radial-gradient(circle at 15% 65%, rgba(129,170,255,.12), transparent 30%),
        linear-gradient(120deg, #eefaff 0%, #f9fcff 50%, #eef9ff 100%);
    padding: 22px 24px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mod-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(#d7e5ee 1px, transparent 1px),
        linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.mod-hero-inner {
    max-width: 780px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.mod-hero-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid #d2e4ef;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.mod-hero h1 {
    font-size: clamp(38px, 4.2vw, 60px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin: 0 0 18px;
}
.mod-hero p {
    color: #526274;
    font-size: 17px;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 32px;
}
.mod-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Count badges bar */
.mod-hero-counts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 20px 20px 0 0;
    padding: 22px 32px;
    box-shadow: 0 -4px 20px rgba(30,70,100,.05);
    flex-wrap: wrap;
}
.mod-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}
.mod-count-num {
    font-size: 30px;
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1;
}
.mod-count-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-top: 4px;
}
.mod-count-divider {
    width: 1px;
    height: 40px;
    background: #dde8f0;
    flex: 0 0 1px;
}

/* ---- Section labels ---- */
.mod-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-align: center;
    margin-bottom: 12px;
}
.mod-section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    text-align: center;
    margin: 0 0 14px;
}
.mod-section-sub {
    color: #526274;
    font-size: 16px;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 22px;
    text-align: center;
}

/* ---- Module cards ---- */
.mod-cards-wrap {
    background: #f5fafd;
    padding: 22px 24px 20px;
}
.mod-cards-inner {
    max-width: 1160px;
    margin: auto;
}
.mod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mod-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
}
.mod-card:hover {
    box-shadow: 0 14px 36px rgba(30,70,100,.11);
    transform: translateY(-5px);
}

/* Top accent bar per module */
.mod-accounting::before,
.mod-inventory::before,
.mod-sales::before,
.mod-ebilling::before,
.mod-crm::before,
.mod-security::before,
.mod-mfg::before,
.mod-reports::before {
    content: "";
    display: block;
    height: 4px;
}
.mod-accounting::before  { background: linear-gradient(90deg, #1460a0, #2185d0); }
.mod-inventory::before   { background: linear-gradient(90deg, #1a7a5e, #25b99a); }
.mod-sales::before       { background: linear-gradient(90deg, #5a30a0, #8b5cf6); }
.mod-ebilling::before    { background: linear-gradient(90deg, #0a7090, #06b6d4); }
.mod-crm::before         { background: linear-gradient(90deg, #6030a0, #a855f7); }
.mod-security::before    { background: linear-gradient(90deg, var(--navy), #0e6896); }
.mod-mfg::before         { background: linear-gradient(90deg, #9a5a00, #f59e0b); }
.mod-reports::before     { background: linear-gradient(90deg, #1a7a5e, #059669); }

.mod-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 22px 0;
    margin-bottom: 14px;
}
.mod-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
}
.mod-icon svg {
    width: 22px;
    height: 22px;
}
.mod-icon-blue   { background: #deeeff; color: #1460a0; }
.mod-icon-green  { background: #d8f5ec; color: #1a7a5e; }
.mod-icon-purple { background: #ede8ff; color: #5a30a0; }
.mod-icon-cyan   { background: #d8f4fc; color: #0a7090; }
.mod-icon-violet { background: #f0e8ff; color: #6030a0; }
.mod-icon-navy   { background: #dde8f5; color: var(--navy); }
.mod-icon-orange { background: #fef3d8; color: #9a5a00; }
.mod-icon-teal   { background: #d8f5ec; color: #1a7a5e; }

.mod-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.mod-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    line-height: 1.25;
}
.mod-card > p {
    font-size: 13px;
    color: #526274;
    line-height: 1.6;
    margin: 0;
    padding: 0 22px;
    flex: 1;
}
.mod-features {
    list-style: none;
    margin: 14px 0 0;
    padding: 14px 22px;
    background: #f8fcff;
    border-top: 1px solid #edf3f8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mod-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #3d5368;
}
.mod-chk {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900;
    background: rgba(37,185,154,.08);
}
.mod-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 750;
    color: var(--navy);
    text-decoration: none;
    padding: 12px 22px;
    border-top: 1px solid #edf3f8;
    transition: background 0.2s, color 0.2s;
}
.mod-link:hover {
    background: var(--navy);
    color: white;
}

/* ---- Quick reference strip ---- */
.mod-strip {
    background: white;
    padding: 44px 24px;
    border-top: 1px solid #e8f0f6;
    border-bottom: 1px solid #e8f0f6;
}
.mod-strip-inner {
    max-width: 1160px;
    margin: auto;
    text-align: center;
}
.mod-strip-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    margin-bottom: 22px;
}
.mod-strip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.mod-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    transition: background 0.2s, border-color 0.2s;
}
.mod-strip-item:hover {
    background: #e8f4fb;
    border-color: #b8d4e8;
}
.mod-strip-item span { font-size: 16px; }

/* ---- CTA ---- */
.mod-cta {
    background: linear-gradient(120deg, var(--navy) 0%, #0a5a85 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mod-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
}
.mod-cta-inner {
    max-width: 680px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.mod-cta h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: white;
    letter-spacing: -1.5px;
    margin: 0 0 14px;
}
.mod-cta p {
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 36px;
}
.mod-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.mod-cta-primary {
    padding: 16px 28px;
    background: var(--green);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 6px 18px rgba(37,185,154,.3);
}
.mod-cta-primary:hover { opacity: .9; transform: translateY(-2px); }
.mod-cta-secondary {
    padding: 16px 28px;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,.25);
    transition: background 0.2s;
}
.mod-cta-secondary:hover { background: rgba(255,255,255,.18); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .mod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .mod-hero { padding: 52px 20px 0; }
    .mod-hero h1 { font-size: 36px; letter-spacing: -1.5px; }
    .mod-hero-actions { flex-direction: column; align-items: center; }
    .mod-hero-actions .btn { width: 100%; justify-content: center; }
    .mod-hero-counts { padding: 18px 12px; gap: 12px; }
    .mod-count-item { padding: 0 16px; }
    .mod-count-divider { display: none; }
    .mod-cards-wrap { padding: 52px 20px; }
    .mod-grid { grid-template-columns: 1fr; }
    .mod-cta { padding: 52px 20px; }
    .mod-cta-actions { flex-direction: column; }
    .mod-cta-actions a { text-align: center; }
}

/* ============================================================
   FEATURES PAGE
   ============================================================ */

/* ---- Hero ---- */
.feat-hero {
    background:
        radial-gradient(circle at 80% 40%, rgba(126,225,232,.22), transparent 30%),
        radial-gradient(circle at 15% 65%, rgba(129,170,255,.12), transparent 30%),
        linear-gradient(120deg, #eefaff 0%, #f9fcff 50%, #eef9ff 100%);
    padding: 22px 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feat-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(#d7e5ee 1px, transparent 1px),
        linear-gradient(90deg, #d7e5ee 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.feat-hero-inner {
    max-width: 780px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.feat-hero-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid #d2e4ef;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.feat-hero h1 {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin: 0 0 18px;
}
.feat-hero p {
    color: #526274;
    font-size: 17px;
    line-height: 1.65;
    max-width: 840px;
    margin: 0 auto 32px;
}
.feat-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Shared section labels ---- */
.feat-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-align: center;
    margin-bottom: 12px;
}
.feat-section-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    text-align: center;
    margin: 0 0 14px;
}
.feat-section-sub {
    color: #526274;
    font-size: 16px;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 52px;
    text-align: center;
}

/* ---- Product cards ---- */
.feat-products-wrap {
    background: #f5fafd;
    padding: 22px 24px 20px;
}
.feat-products-inner {
    max-width: 1160px;
    margin: auto;
}
.feat-products-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}
.feat-prod-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.feat-prod-card:hover {
    box-shadow: 0 14px 36px rgba(30,70,100,.1);
    transform: translateY(-5px);
}
.feat-prod-featured {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 12px 40px rgba(6,63,103,.25);
}
.feat-prod-featured:hover {
    box-shadow: 0 20px 52px rgba(6,63,103,.32);
    transform: translateY(-7px);
}
.feat-prod-top { margin-bottom: 22px; }
.feat-prod-icon-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.feat-prod-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    background: #e8f4fb;
    color: var(--navy);
    display: grid;
    place-items: center;
}
.feat-prod-icon svg { width: 22px; height: 22px; }
.feat-prod-icon-alt {
    background: #eef5fb;
}
.feat-prod-featured .feat-prod-icon {
    background: rgba(255,255,255,.15);
    color: white;
}
.feat-prod-badge {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 18px;
    background: #e8f4fb;
    border: 1px solid #c5dff0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy);
}
.feat-prod-badge-light {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
}
.feat-prod-top h3 {
    font-size: 20px;
    font-weight: 850;
    color: var(--navy);
    margin: 0 0 10px;
    letter-spacing: -.5px;
}
.feat-prod-featured .feat-prod-top h3 { color: white; }
.feat-prod-top p {
    font-size: 14px;
    color: #526274;
    line-height: 1.6;
    margin: 0;
}
.feat-prod-featured .feat-prod-top p { color: rgba(255,255,255,.72); }
.feat-prod-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.feat-prod-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #3d5368;
}
.feat-prod-featured .feat-prod-list li { color: rgba(255,255,255,.85); }
.feat-chk {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
    background: rgba(37,185,154,.08);
}
.feat-chk-light {
    background: rgba(37,185,154,.18);
    border-color: var(--green);
    color: var(--green);
}
.feat-prod-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 13px;
    text-align: center;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: all 0.2s;
    font-family: inherit;
    cursor: pointer;
    border: none;
}
.feat-prod-btn-white {
    background: white;
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.feat-prod-btn-white:hover { background: #f0f7fc; }
.feat-prod-btn-outline {
    background: transparent;
    border: 1.5px solid #c8dce9;
    color: var(--navy);
}
.feat-prod-btn-outline:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ---- Platform features ---- */
.feat-platform-wrap {
    background: white;
    padding: 72px 24px;
}
.feat-platform-inner {
    max-width: 1160px;
    margin: auto;
}
.feat-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feat-plat-card {
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 20px;
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feat-plat-card:hover {
    box-shadow: 0 10px 28px rgba(30,70,100,.09);
    transform: translateY(-4px);
}
.feat-plat-icon {
    font-size: 30px;
    margin-bottom: 14px;
}
.feat-plat-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 8px;
}
.feat-plat-card p {
    font-size: 13px;
    color: #526274;
    line-height: 1.65;
    margin: 0;
}

/* ---- Comparison table ---- */
.feat-compare-wrap {
    background: #f5fafd;
    padding: 72px 24px;
}
.feat-compare-inner {
    max-width: 960px;
    margin: auto;
}
.feat-comp-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid #dde8f0;
    box-shadow: 0 6px 24px rgba(30,70,100,.06);
}
.feat-comp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}
.feat-comp-table thead tr { background: var(--navy); }
.feat-comp-table thead th {
    padding: 16px 18px;
    color: rgba(255,255,255,.8);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .5px;
    text-align: center;
}
.feat-comp-table thead th:first-child { text-align: left; }
.feat-col-featured {
    background: rgba(255,255,255,.1);
    color: white !important;
}
.feat-comp-table tbody tr { border-bottom: 1px solid #edf3f8; }
.feat-comp-table tbody tr:last-child { border-bottom: none; }
.feat-comp-table tbody tr:hover { background: #f8fcff; }
.feat-comp-table tbody td {
    padding: 13px 18px;
    text-align: center;
    color: var(--text);
}
.feat-comp-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
}
.feat-comp-table tbody .feat-col-featured { background: rgba(6,63,103,.04); }
.feat-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(37,185,154,.12);
    border: 1.5px solid var(--green);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
}
.feat-no { color: #b0bec5; font-size: 18px; font-weight: 300; }

/* ---- CTA ---- */
.feat-cta {
    background: linear-gradient(120deg, var(--navy) 0%, #0a5a85 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.feat-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
}
.feat-cta-inner {
    max-width: 680px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.feat-cta h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: white;
    letter-spacing: -1.5px;
    margin: 0 0 14px;
}
.feat-cta p {
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 36px;
}
.feat-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.feat-cta-primary {
    padding: 16px 28px;
    background: var(--green);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 6px 18px rgba(37,185,154,.3);
}
.feat-cta-primary:hover { opacity: .9; transform: translateY(-2px); }
.feat-cta-secondary {
    padding: 16px 28px;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,.25);
    transition: background 0.2s;
}
.feat-cta-secondary:hover { background: rgba(255,255,255,.18); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .feat-products-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .feat-hero { padding: 52px 20px 60px; }
    .feat-hero h1 { font-size: 34px; letter-spacing: -1.5px; }
    .feat-hero-actions { flex-direction: column; align-items: center; }
    .feat-hero-actions .btn { width: 100%; justify-content: center; }
    .feat-products-wrap, .feat-platform-wrap,
    .feat-compare-wrap { padding: 52px 20px; }
    .feat-products-grid { grid-template-columns: 1fr; }
    .feat-platform-grid { grid-template-columns: 1fr; }
    .feat-cta { padding: 52px 20px; }
    .feat-cta-actions { flex-direction: column; }
    .feat-cta-actions a { text-align: center; }
}

/* Resources article grid — feat-prod-card style override */
.res-articles-grid.feat-products-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
}
.res-articles-grid.feat-products-grid .feat-prod-featured {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}
.res-articles-grid.feat-products-grid .feat-prod-featured .feat-prod-top {
    margin-bottom: 0;
}
.res-articles-grid.feat-products-grid .feat-prod-featured .feat-prod-btn {
    align-self: end;
}
@media (max-width: 1100px) {
    .res-articles-grid.feat-products-grid { grid-template-columns: 1fr 1fr; }
    .res-articles-grid.feat-products-grid .feat-prod-featured { grid-template-columns: 1fr; grid-column: auto; }
}
@media (max-width: 640px) {
    .res-articles-grid.feat-products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME PAGE — ADDITIONAL SECTIONS
   ============================================================ */

/* ---- Shared home labels / titles ---- */
.home-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.home-label-center { text-align: center; }
.home-title-center {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    text-align: center;
    margin: 0 0 14px;
    line-height: 1.12;
}
.home-sub-center {
    color: #526274;
    font-size: 16px;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 52px;
    text-align: center;
}

/* ---- Intro section ---- */
.home-intro {
    background: white;
    padding: 20px 24px;
}
.home-intro-inner {
    max-width: 1160px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.home-intro-text h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    line-height: 1.1;
}
.home-intro-text p {
    font-size: 15px;
    color: #526274;
    line-height: 1.7;
    margin: 0 0 16px;
}
.home-text-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 750;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1.5px solid #c8dce9;
    padding-bottom: 2px;
    margin-top: 8px;
    transition: color 0.2s, border-color 0.2s;
}
.home-text-link:hover { color: var(--green); border-color: var(--green); }
.home-intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.home-intro-card {
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 18px;
    padding: 22px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.home-intro-card:hover {
    box-shadow: 0 8px 24px rgba(30,70,100,.09);
    transform: translateY(-3px);
}
.home-intro-icon { font-size: 28px; margin-bottom: 10px; }
.home-intro-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 6px;
}
.home-intro-card p {
    font-size: 13px;
    color: #526274;
    line-height: 1.55;
    margin: 0;
}

/* ---- Features section ---- */
.home-features {
    background: #f5fafd;
    padding: 20px 24px;
}
.home-features-inner {
    max-width: 1160px;
    margin: auto;
}
.home-feat-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
    margin-bottom: 40px;
}
.home-feat-card {
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 20px;
    padding: 26px 22px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.home-feat-card:hover {
    box-shadow: 0 10px 28px rgba(30,70,100,.09);
    transform: translateY(-4px);
}
.home-feat-large {
    grid-row: 1 / 3;
    background: var(--navy);
    border-color: var(--navy);
}
.home-feat-large .home-feat-icon { font-size: 38px; margin-bottom: 14px; }
.home-feat-large h3 {
    font-size: 20px;
    font-weight: 850;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -.5px;
}
.home-feat-large p {
    font-size: 14px;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    margin: 0 0 20px;
}
.home-feat-icon { font-size: 28px; margin-bottom: 12px; }
.home-feat-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 8px;
}
.home-feat-card p {
    font-size: 13px;
    color: #526274;
    line-height: 1.6;
    margin: 0;
}
.home-feat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.home-feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.85);
    font-weight: 600;
}
.hf-chk {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
    background: rgba(37,185,154,.18);
}
.home-feat-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Industries section ---- */
.home-industries {
    background: white;
    padding: 20px 24px;
}
.home-industries-inner {
    max-width: 1160px;
    margin: auto;
}
.home-ind-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}
.home-ind-card {
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 18px;
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.home-ind-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 10px 26px rgba(6,63,103,.2);
    transform: translateY(-4px);
}
.home-ind-card:hover .home-ind-name { color: white; }
.home-ind-icon { font-size: 30px; }
.home-ind-name {
    font-size: 12px;
    font-weight: 750;
    color: var(--navy);
    text-align: center;
    line-height: 1.3;
    transition: color 0.2s;
}

/* ---- Why ERP Easy ---- */
.home-why {
    background: #f5fafd;
    padding: 20px 24px;
}
.home-why-inner {
    max-width: 1160px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.home-why-text h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 850;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    line-height: 1.1;
}
.home-why-text > p {
    font-size: 15px;
    color: #526274;
    line-height: 1.7;
    margin: 0 0 32px;
}
.home-why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home-why-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.home-why-chk {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: rgba(37,185,154,.12);
    border: 1.5px solid var(--green);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
    margin-top: 2px;
}
.home-why-point strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}
.home-why-point span {
    font-size: 13px;
    color: #526274;
    line-height: 1.55;
}

/* Right column: image card + quick links */
.home-why-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Image card */
.home-why-img-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.home-why-img {
    width: 75%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(6,63,103,.18);
    display: block;
    margin: 0 auto;
}
.home-why-badge-1 {
    position: absolute;
    top: 14px;
    left: 0;
    background: white;
    border: 1px solid #dde8f0;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(30,70,100,.1);
    text-align: center;
    z-index: 2;
}
.home-why-badge-1 strong {
    display: block;
    font-size: 22px;
    font-weight: 850;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}
.home-why-badge-1 span {
    font-size: 10px;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}
.home-why-badge-2 {
    position: absolute;
    bottom: 14px;
    right: 0;
    background: var(--navy);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(6,63,103,.25);
    z-index: 2;
}
.home-why-badge-icon { font-size: 20px; }
.home-why-badge-2 span:last-child {
    font-size: 12px;
    font-weight: 750;
    color: white;
    white-space: nowrap;
}

/* Quick links stacked below image */
.home-why-ql {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
    margin-top: 110px;
}

/* ---- Quick links ---- */
.home-quicklinks {
    background: white;
    padding: 0 24px 64px;
}
.home-quicklinks-inner {
    max-width: 1160px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.home-ql-card {
    background: #f5fafd;
    border: 1px solid #dde8f0;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.home-ql-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 10px 26px rgba(6,63,103,.18);
    transform: translateY(-3px);
}
.home-ql-card:hover strong,
.home-ql-card:hover span { color: white; }
.home-ql-card:hover .home-ql-arrow { color: rgba(255,255,255,.7); }
.home-ql-icon {
    font-size: 28px;
    flex: 0 0 auto;
}
.home-ql-card > div {
    flex: 1;
}
.home-ql-card strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
    transition: color 0.2s;
}
.home-ql-card span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    transition: color 0.2s;
}
.home-ql-arrow {
    font-size: 18px;
    color: #c8dce9;
    flex: 0 0 auto;
    transition: color 0.2s;
}

/* ---- CTA Banner ---- */
.home-cta {
    background: linear-gradient(120deg, var(--navy) 0%, #0a5a85 100%);
    padding: 72px 24px;
    position: relative;
    overflow: hidden;
}
.home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 50px 50px;
}
.home-cta-inner {
    max-width: 1160px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.home-cta-text h2 {
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 850;
    color: white;
    letter-spacing: -1.2px;
    margin: 0 0 10px;
}
.home-cta-text p {
    color: rgba(255,255,255,.74);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    max-width: 540px;
}
.home-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.home-cta-primary {
    padding: 16px 28px;
    background: var(--green);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 6px 18px rgba(37,185,154,.3);
}
.home-cta-primary:hover { opacity: .9; transform: translateY(-2px); }
.home-cta-secondary {
    padding: 16px 24px;
    background: rgba(255,255,255,.1);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 750;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,.25);
    white-space: nowrap;
    transition: background 0.2s;
}
.home-cta-secondary:hover { background: rgba(255,255,255,.18); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .home-ind-grid { grid-template-columns: repeat(4, 1fr); }
    .home-feat-grid { grid-template-columns: 1fr 1fr 1fr; }
    .home-feat-large { grid-row: auto; }
    .home-quicklinks-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .home-intro-inner { grid-template-columns: 1fr; gap: 40px; }
    .home-why-inner { grid-template-columns: 1fr; gap: 36px; }
    .home-why-right { flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .home-why-img-card { flex: 0 0 200px; }
    .home-why-img { width: 100%; max-width: 100%; }
    .home-why-ql { flex: 1; min-width: 200px; }
    .home-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .home-intro, .home-features,
    .home-industries, .home-why { padding: 56px 20px; }
    .home-feat-grid { grid-template-columns: 1fr; }
    .home-intro-cards { grid-template-columns: 1fr; }
    .home-ind-grid { grid-template-columns: repeat(2, 1fr); }
    .home-quicklinks { padding: 0 20px 48px; }
    .home-quicklinks-inner { grid-template-columns: 1fr; }
    .home-cta { padding: 52px 20px; }
    .home-cta-actions { flex-direction: column; width: 100%; }
    .home-cta-actions a { text-align: center; }
}

/* ============================================================
   MOBILE NAV — HAMBURGER MENU
   ============================================================ */

/* Hamburger button — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid #c8dce9;
    border-radius: 10px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.nav-toggle:hover {
    background: #e8f4fb;
    border-color: var(--navy);
}
.nav-toggle .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                opacity   0.2s ease,
                width     0.25s ease;
    transform-origin: center;
}

/* Animated X when open */
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
@keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1050px) {

    /* Show hamburger, hide desktop Login */
    .nav-toggle { display: flex; }
    .login { display: none; }
    .demo-top { margin-left: 10px; padding: 11px 14px; font-size: 14px; }

    /* Keep .menu in DOM but collapsed by default */
    .menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        background: white;
        border: 1px solid #dde8f0;
        border-radius: 18px;
        padding: 12px;
        gap: 4px;
        box-shadow: 0 12px 40px rgba(6, 63, 103, 0.14);
        z-index: 200;

        /* Hidden state */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    }

    /* Open state */
    .menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
        animation: mobileMenuIn 0.25s ease both;
    }

    /* Reset stagger animations in mobile (avoid delays on open) */
    .menu a { animation: none; }

    /* Full-width links in mobile drawer */
    .menu a {
        border-radius: 12px;
        padding: 14px 18px;
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        width: 100%;
        display: block;
        transition: background 0.18s, color 0.18s;
    }
    .menu a::after { display: none; }
    .menu a:hover  { background: #f0f7fc; color: var(--navy); }
    .menu a.active { background: var(--navy); color: white; border-radius: 12px; }

    /* Divider line between links for readability */
    .menu a + a { border-top: 1px solid #edf3f8; }
    .menu a.active + a { border-top-color: transparent; }

    /* Make header position relative so dropdown positions correctly */
    header { position: sticky; }
    .nav   { position: relative; flex-wrap: nowrap; }
}

@media (max-width: 650px) {
    .menu { left: 10px; right: 10px; }
    .demo-top { font-size: 13px; padding: 10px 12px; }
}
