/* ---------- Root ---------- */
:root {
  --white: #ffffff;
  --mint: #f6f8f9;
  --mint-2: #eef2f5;
  --grass: #ad2d42;
  --grass-dark: #8f2436;
  --grass-deep: #144061;
  --lime: #ad2d42;
  --lime-dark: #962639;
  --accent: #ad2d42;
  --accent-soft: #efe3e7;
  --navy: #144061;
  --navy-mid: #30546b;
  --navy-deep: #0f2f48;
  --charcoal: #144061;
  --ink: #144061;
  --ink-soft: #6e7578;
  --line: #e4e8ec;
  --card: #ffffff;
  --page: #ffffff;
  --shadow-sm: 0 2px 10px rgba(20, 64, 97, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 64, 97, 0.1);
  --shadow-lg: 0 24px 60px rgba(20, 64, 97, 0.16);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --pill: 999px;
  --f-display: "Outfit", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --wrap: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- All Common CSS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f-body);
  color: var(--charcoal);
  background: var(--page);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: capitalize;
}
::selection {
  background: var(--accent-soft);
  color: var(--navy);
}
.accent {
  color: var(--accent);
}
.mark-line {
  position: relative;
  color: var(--accent);
  white-space: nowrap;
  z-index: 1;
}
.mark-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 0.22em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 3px;
}
.mark-line.ml-blue-bg::after {
  background: var(--navy);
}

/* ---------- Layout CSS ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
  position: relative;
}
.section--mint {
  background: var(--mint);
}
.center {
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--charcoal);
  padding: 8px 24px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: #ffffff00;
}
.eyebrow i {
  color: var(--lime-dark);
  font-size: 16px;
}
.h-xl {
  font-size: clamp(2rem, 5.3vw, 3.6rem);
}
.h-lg {
  font-size: clamp(1.7rem, 3.9vw, 3.4rem);
}
.h-md {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}
.lead {
  font-size: clamp(1.02rem, 1.6vw, 20px);
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}
.mt-s {
  margin-top: 14px;
}
.mt-m {
  margin-top: 24px;
}
.mt-l {
  margin-top: 44px;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.sec-head {
  max-width: 900px;
  margin: 0 auto 56px;
}
.sec-head.center {
  text-align: center;
}
.sec-head .lead {
  margin-left: auto;
  margin-right: auto;
}
.object-position-top {
  object-position: top;
}

/* ---------- Button CSS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 12px 26px;
  border-radius: var(--pill);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.3s,
    color 0.3s;
  overflow: hidden;
  white-space: nowrap;
}
.btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.35s var(--ease);
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(173, 45, 66, 0.35);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 1;
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 47, 72, 0.4);
}
.btn-primary:hover::before {
  transform: translateY(0);
}
.btn-primary:hover i {
  transform: translateX(4px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--navy);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 1;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(20, 64, 97, 0.28);
}
.btn-ghost:hover::before {
  transform: translateY(0);
}
.btn-ghost:hover i {
  transform: translateX(4px);
}
.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 1;
}
.btn-outline-accent:hover {
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.btn-outline-accent:hover::before {
  transform: translateY(0);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 1;
}
.btn-outline-white:hover {
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.btn-outline-white:hover::before {
  transform: translateY(0);
}
.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 1;
}
.btn-light:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-light:hover::before {
  transform: translateY(0);
}
.btn-light:hover i {
  transform: translateX(4px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 1;
}
.btn-navy:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover::before {
  transform: translateY(0);
}
.btn-navy:hover i {
  transform: translateX(4px);
}
.btn-sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Navbar CSS ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  max-width: var(--wrap);
  padding: 24px 24px;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: color-mix(in srgb, var(--page) 88%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.scrolled .nav-inner {
  padding: 12px 18px;
}
.brand {
  grid-column: 2;
  height: 120px;
  transition: height 0.3s ease-in-out;
}
.nav.scrolled .brand {
  height: 80px;
}
.brand-logo {
  width: 100%;
  height: 100%;
}
.nav-links {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lime-dark);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Currency Toggle Button */
.toggle-pill {
  display: inline-flex;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 3px;
}
.toggle-pill button {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: var(--pill);
  color: #454d54;
  transition: all 0.25s;
}
.toggle-pill button.on {
  background: var(--navy);
  color: var(--white);
}
.nav-login {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.nav-contact,
.nav-login {
  position: relative;
}
.nav-contact::after,
.nav-login::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lime-dark);
  transition: width 0.3s var(--ease);
}
.nav-contact:hover::after,
.nav-contact.active::after,
.nav-login:hover::after,
.nav-login.active::after {
  width: 100%;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.burger span:nth-child(1) {
  top: 15px;
}
.burger span:nth-child(2) {
  top: 21px;
}
.burger span:nth-child(3) {
  top: 27px;
}
body.menu-open .burger span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
body.menu-open .nav {
  background: transparent;
  box-shadow: none;
}
body.menu-open .nav-inner {
  height: 0;
  padding: 0;
  overflow: hidden;
}
body.menu-open .nav .brand,
body.menu-open .nav .nav-links,
body.menu-open .nav .nav-actions> :not(.burger) {
  display: none;
}
body.menu-open .burger {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 102;
  background: var(--page);
  box-shadow: var(--shadow-sm);
}

/* ---------- Mobile Drawer CSS ---------- */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: var(--page);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 84px 30px 40px;
  overflow-y: auto;
}
body.menu-open .drawer {
  transform: translateX(0);
}
.drawer a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer a.btn-primary {
  color: var(--white);
}
.drawer a i {
  color: var(--grass);
  font-size: 1rem;
}
.drawer a.active {
  color: var(--accent);
}
.drawer .drawer-cta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer .drawer-cta .btn {
  justify-content: center;
}
.drawer .drawer-tools {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 14, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 98;
  backdrop-filter: blur(2px);
}
body.menu-open .overlay {
  opacity: 1;
  visibility: visible;
}

/* ---------- Home Page CSS ---------- */
.hero {
  position: relative;
  padding: 200px 0 90px;
  overflow: hidden;
  background: var(--mint);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero h1 {
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 .accent {
  position: relative;
  color: var(--accent);
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 0.22em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 3px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-mini {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-mini div {
  display: flex;
  flex-direction: column;
}
.hero-mini b {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.hero-mini small {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.hero-visual {
  position: relative;
}
.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--mint-2);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
}
.float-card.fc-1 {
  top: 26px;
  left: -26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-card.fc-2 {
  bottom: 30px;
  right: -22px;
  width: 210px;
}
.fc-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--mint-2);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex: none;
}
.fc-1 b {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.fc-1 small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  display: block;
}
.fc-2 .fc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 5px 0;
}
.fc-2 .fc-row b {
  font-family: var(--f-display);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.fc-2 .fc-row .down {
  color: var(--navy-mid);
  font-weight: 600;
}
.fc-2 .fc-title {
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
  font-weight: 500;
}
.spark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  margin-top: 8px;
}
.spark i {
  flex: 1;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.85;
}
section.stats {
  padding: 66px 0;
}
.stats {
  background-image: url("../images/stats-section-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 12% -10%,
      rgba(173, 45, 66, 0.18),
      transparent 60%),
    radial-gradient(500px 300px at 100% 120%,
      rgba(255, 255, 255, 0.06),
      transparent 55%);
}
.stats .wrap {
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--accent);
  border: 2px solid rgba(108, 147, 177, 0.5);
  border-radius: 60px;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}
.stat-card .si {
  width: 60px;
  height: 60px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0;
  flex: none;
  transition: transform 0.4s var(--ease);
}
.stat-card .si img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stat-card:hover .si {
  transform: rotate(-8deg) scale(1.06);
}
.stat-card .stat-text {
  min-width: 0;
}
.stat-card b {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 500;
  display: block;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
.stat-card span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  display: block;
  margin-top: 2px;
  font-weight: 500;
}
.stat-card::after {
  display: none;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 55px 35px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s;
}
.fcard::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.fcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.fcard:hover::after {
  width: 100%;
}
.fcard .ic {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: transparent;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: all 0.4s var(--ease);
}
.fcard .ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fcard:hover .ic {
  background: transparent;
  color: var(--accent);
  transform: rotate(-6deg);
}
.fcard h3 {
  font-size: 23px;
  margin-bottom: 10px;
}
.features-cards .fcard h3 {
  font-size: 20px;
  font-weight: 500;
}
.fcard p {
  color: #000;
  font-size: 19px;
  line-height: 1.4;
}
.fcard .fcard-btn {
  margin-top: 18px;
}
.features-cards .fcard .fcard-btn {
  margin-top: 18px;
  padding: 6px 32px;
}
.why-pain .fcard {
  background: #1440610a;
  border: 2px solid rgba(108, 147, 177, 0.15);
  border-radius: 85px;
}
.engine {
  position: relative;
  overflow: hidden;
  background: var(--mint);
}
.engine-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.engine-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.engine .wrap {
  position: relative;
  z-index: 2;
}
.engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.engine-card {
  border-radius: 85px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(108, 147, 177, 0.2);
}
.engine-card .engine-ic {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}
.engine-card .engine-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.engine-card.congu {
  background: var(--white);
}
.engine-card.whs {
  background: var(--navy-deep);
  color: var(--white);
  border-color: transparent;
}
.engine-card.whs .engine-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.engine-card.whs .engine-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.engine-card.whs>*:not(.engine-media) {
  position: relative;
  z-index: 2;
}
.engine-card .tag {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: none;
  padding: 8px 16px;
  border-radius: var(--pill);
  display: inline-block;
  margin-bottom: 20px;
}
.engine-card.congu .tag {
  background: var(--accent-soft);
  color: var(--accent);
}
.engine-card.whs .tag {
  background: var(--accent);
}
.engine-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  font-weight: 500;
}
.engine-card.whs h3 {
  color: var(--white);
}
.engine-card p {
  color: #333;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
.engine-card.whs p {
  color: rgb(255, 255, 255);
}
.engine-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.engine-list i {
  color: var(--accent);
  font-size: 16px;
}
.engine-card.whs .engine-list i {
  background-color: var(--white);
  border-radius: 50px;
}
.engine-card.whs .engine-list li {
  color: var(--white);
}

.board-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.board {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.board-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--mint);
}
.board-top h3 {
  font-size: 18px;
}
.board table {
  width: 100%;
  border-collapse: collapse;
}
.board th {
  text-align: left;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 44px;
}
.board td {
  padding: 14px 44px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
}
.board tr {
  transition: background 0.25s;
}
.board tbody tr:hover {
  background: var(--mint);
}
.board .rank {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--mint-2);
  color: var(--navy);
  display: inline-grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
}
.board tr:first-child .rank {
  background: var(--accent);
  color: var(--white);
}
.board .hcp {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
}
.price-groups {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 80px;
}
.price-group {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: stretch;
}
.pg-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 28px;
  padding: 28px 24px;
}
.pg-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.pg-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}
.pg-icon--blue {
  background: #e4edfb;
  color: #2557a7;
}
.pg-icon--pink {
  background: #fbe3ea;
  color: var(--accent);
}
.pg-icon--green {
  background: #e1f5e9;
  color: #1f7a45;
}
.pg-icon--purple {
  background: #ece3fb;
  color: #6a3fc7;
}
.pg-head-text {
  min-width: 0;
}
.pg-head-text h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.pg-head-text p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
}
.pg-count {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: var(--pill);
  white-space: nowrap;
}
.pg-cards {
  display: grid;
  gap: 24px;
}
.pg-cards-2 {
  grid-template-columns: repeat(2, 1fr);
}
.pg-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pcard {
  position: relative;
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 28px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.pcard h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.pcard-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 46px;
  color: var(--ink);
  margin-bottom: 20px;
}
.pcard-price .cur {
  font-size: 32px;
  color: var(--accent);
}
.pcard-price .price-val {
  color: var(--accent);
}
.pcard-period {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-left: 3px;
}
.pcard-price-custom {
  font-size: 46px;
  color: var(--accent);
}
.pcard-stat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy);
  background: var(--mint-2);
  border: 1px solid var(--line);
  padding: 9px 18px 9px 9px;
  border-radius: var(--pill);
  margin-bottom: 28px;
}
.pcard-stat i {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
}
.pcard>.btn {
  margin-top: auto;
  width: 100%;
}
.pcard-photo {
  border: none;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.pcard-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: center/cover;
  z-index: 0;
}
.pcard-photo--golfer::before {
  background-image: url("../images/card-1-golf-player.jpg");
}
.pcard-photo--kitty::before {
  background-image: url("../images/card-2-kitty-organizer.jpg");
}
.pcard-photo--league::before {
  background-image: url("../images/card-3-private-league.jpeg");
}
.pcard-photo--club::before {
  background-image: url("../images/card-4-club-manager.jpeg");
}
.pcard-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgb(20 64 97 / 85%);
  z-index: 1;
}
.pcard-photo > * {
  position: relative;
  z-index: 2;
}
.pcard-photo h4,
.pcard-photo .pcard-price,
.pcard-photo .pcard-price .price-val,
.pcard-photo .pcard-price .cur {
  color: var(--white);
}
.pcard-photo .pcard-period {
  color: rgba(255, 255, 255, 0.65);
}
.pcard-photo .pcard-stat {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.pcard-photo .pcard-stat i {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.pcard-photo:hover {
  transform: translateY(-6px);
}
.pcard-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.76rem;
  color: var(--white);
  white-space: nowrap;
  z-index: 3;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: var(--pill);
  box-shadow: 0 6px 16px rgba(173, 45, 66, 0.35);
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.ptcard {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 32px;
  padding: 36px 26px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s;
}
.ptcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.ptcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.ptcard-cat {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ptcard h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 6px 0 10px;
}
.ptcard-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  min-height: 2.9em;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.ptcard-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--ink);
  margin-top: 22px;
}
.ptcard-price .cur {
  font-size: 22px;
  color: var(--accent);
}
.ptcard-price .price-val {
  color: var(--accent);
}
.ptcard-price-custom {
  font-size: 32px;
  color: var(--accent);
}
.ptcard .pcard-stat {
  margin: 16px 0 24px;
  align-self: flex-start;
}
.ptcard>.btn {
  margin-top: auto;
  width: 82%;
}
.pricing-teaser-more {
  text-align: center;
  margin-top: 48px;
}
.cta-band {
  background: var(--grass-deep);
  border-radius: 80px;
  padding: 66px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.9vw, 3.4rem);
  position: relative;
  z-index: 2;
  width: 60%;
  margin: 0 auto;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
  margin: 16px auto 0;
  position: relative;
  z-index: 2;
}
.cta-band .hero-cta {
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ---------- Page Hero CSS (inner pages) ---------- */
.page-hero {
  padding: 180px 0 56px;
  position: relative;
  overflow: hidden;
  background: var(--mint) url("../images/features/hero-bg.png") center/cover no-repeat;
  text-align: center;
  border-bottom: 10px solid var(--navy);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 50% -20%,
      var(--mint-2),
      transparent 60%);
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  margin: 18px 0;
}
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 8px 20px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--card);
}
.crumbs i {
  color: var(--accent);
  font-size: 0.8rem;
}
.crumbs a {
  color: var(--ink);
  font-weight: 600;
}
.crumbs a:hover {
  color: var(--grass-dark);
}

/* ---------- Features page ---------- */
.feat-hero {
  position: relative;
  padding: 180px 0 56px;
  text-align: center;
  overflow: hidden;
  background: var(--mint);
}
.feat-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.feat-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feat-hero .wrap {
  position: relative;
  z-index: 2;
}
.feat-hero .crumbs {
  margin-bottom: 22px;
}
.feat-hero h1 {
  margin: 16px auto 20px;
  font-weight: 500;
  max-width: none;
}
.feat-hero .lead {
  max-width: 58ch;
  margin: 0 auto;
  color: #333;
  font-weight: 500;
}
.feat-filter {
  position: sticky;
  top: 112px;
  z-index: 40;
  padding: 0;
  overflow: hidden;
}
.feat-filter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  opacity: 0.92;
  z-index: 1;
}
.feat-filter .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 16px 24px;
  justify-content: center;
  flex-wrap: nowrap;
}
.feat-filter .wrap::-webkit-scrollbar {
  display: none;
}
.chip-btn {
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--pill);
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: all 0.3s var(--ease);
  flex: none;
  line-height: 1;
}
.chip-btn:hover {
  border-color: var(--white);
  color: var(--white);
}
.chip-btn.on {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.feat-section {
  position: relative;
  padding: 80px 0;
}
.feat-section--light {
  background: var(--white);
}
.feat-section--white {
  background: var(--white);
}
.feat-section--pattern {
  background: var(--mint) url("../images/features/section-pattern.png") center top/cover no-repeat;
}
.feat-section--dark {
  color: var(--white);
  padding: 88px 0 72px;
}
.feat-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.feat-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feat-section--dark .wrap {
  position: relative;
  z-index: 2;
}
.feat-sec-head {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}
.feat-sec-head h2 {
  font-weight: 500;
  margin-bottom: 14px;
}
.feat-sec-head--light.feat-sec-head h2 {
  color: var(--white);
}
.feat-sec-head--light.feat-sec-head h2 .mark-line {
  color: var(--white);
}
.feat-sec-head--light.feat-sec-head h2 .mark-line::after {
  background: rgba(255, 255, 255, 0.102);
}
.feat-sec-head p {
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 70ch;
  margin: 0 auto;
}
.feat-sec-head--light p {
  color: rgba(255, 255, 255, 0.78);
}
.feat-grid {
  display: grid;
  gap: 42px 42px;
  position: relative;
  z-index: 10;
}
.feat-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.feat-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 100px;
}
.feat-grid.score--sub {
  gap: 72px 42px;
  margin-top: 48px;
}

/* accent-bar cards (engine, course, clubs, api) */
.feat-card--accent {
  background: #f6f8f9;
  border-radius: 75px;
  padding: 38px 36px 38px 44px;
  position: relative;
  box-shadow: 0 4px 28px rgba(20, 64, 97, 0.07);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  border: 2px solid rgba(108, 147, 177, 0.15);
}
.feat-card--accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 58%;
  background: var(--accent);
  border-radius: 8px 0px 0px 8px;
}
.feat-card--accent:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20, 64, 97, 0.12);
}
.feat-card--accent h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}
.feat-card--accent p {
  color: #333;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

/* bracket icon cards (group management) */
.feat-bracket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 28px;
}
.feat-bracket {
  text-align: center;
  position: relative;
  padding-top: 8px;
}
.feat-bracket-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto -60px;
  position: relative;
  z-index: 2;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 6px var(--white),
    0 0 0 10px var(--navy);
}
.feat-bracket-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.feat-bracket-body {
  position: relative;
  border: 4px solid var(--navy);
  border-radius: 0 0 100px 100px;
  padding: 80px 16px 16px;
  background: transparent;
  height: 300px;
}
.feat-bracket h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.25;
}
.feat-bracket p {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* numbered cards (player management — dark section) */
.feat-card--numbered {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px 32px 72px;
  position: relative;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.feat-card--numbered::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  display: grid;
  place-items: center;
  border-radius: 0 14px 14px 0;
}
.feat-card--numbered::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--accent);
  transform: scale(1.1);
  border-radius: 16px;
  z-index: -1;
}
.feat-num-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}
.feat-num-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feat-card--numbered h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--navy);
}
.feat-card--numbered p {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

/* ribbon-tab cards (score submission) */
.feat-card--ribbon {
  background: var(--white);
  border-radius: 50px;
  padding: 52px 28px 36px;
  text-align: center;
  position: relative;
  border: 2px solid var(--accent);
  transition: transform 0.4s var(--ease);
}
.feat-card--ribbon:hover {
  transform: translateY(-6px);
}
.feat-ribbon {
  width: 130px;
  height: 90px;
  margin: -68px auto 18px;
  position: relative;
  z-index: 2;
  background: var(--accent);
  border-radius: 0 0 16px 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(173, 45, 66, 0.35);
}
.feat-ribbon::before,
.feat-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--lime-dark);
}
.feat-ribbon::before {
  left: -10px;
  border-radius: 0 8px 0 0;
  transform: skewX(-20deg);
}
.feat-ribbon::after {
  right: -10px;
  border-radius: 8px 0 0 0;
  transform: skewX(20deg);
}
.feat-ribbon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.feat-card--ribbon h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--navy);
}
.feat-card--ribbon p {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* viewer cards (icon tab flush on a fully-bordered card) */
.feat-grid.public--dashboard {
  gap: 42px 64px;
}
.feat-card--viewer {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 32px;
  padding: 64px 28px 24px;
  text-align: center;
  position: relative;
  margin-top: 36px;
  margin-bottom: 12px;
  transition: transform 0.4s var(--ease);
}
.feat-card--viewer::after {
  position: absolute;
  content: "";
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: var(--navy);
  transform: scale(1.1);
  border-radius: 16px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: -1;
}
.feat-card--viewer .feat-ribbon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  margin: 0;
  border: 8px solid var(--white);
  border-radius: 100px;
  z-index: 2;
}
.feat-card--viewer .feat-ribbon::before,
.feat-card--viewer .feat-ribbon::after {
  display: none;
}
.feat-card--viewer .feat-ribbon img {
  width: 42px;
  height: 42px;
}
.feat-card--viewer h3,
.feat-card--viewer p {
  position: relative;
  z-index: 2;
}
.feat-card--viewer h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--navy);
}
.feat-card--viewer p {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.feat-card--viewer:hover {
  transform: translateY(-5px);
}
.feat-card--hidden {
  display: none;
}
.feat-card--hidden.is-visible {
  display: block;
}
.feat-load-more-wrap {
  text-align: center;
  margin-top: 44px;
}
.feat-load-more-wrap.public--dashboard {
  margin-top: 64px;
}
.feat-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--pill);
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(173, 45, 66, 0.35);
}
.feat-load-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(173, 45, 66, 0.4);
}
.feat-load-more.is-done {
  display: none;
}
.feat-load-more--navy {
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(20, 64, 97, 0.35);
}
.feat-load-more--navy:hover {
  box-shadow: 0 14px 32px rgba(20, 64, 97, 0.45);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 0.96rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
/* custom dropdown arrow with equal spacing left/right (matches 15px text padding) */
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23144061' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--grass);
  box-shadow: 0 0 0 4px rgba(46, 139, 79, 0.12);
}
.field input::placeholder,
.field select::placeholder,
.field textarea::placeholder {
  color: #ccc;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.field.has-error input:focus,
.field.has-error select:focus,
.field.has-error textarea:focus {
  box-shadow: 0 0 0 4px rgba(173, 45, 66, 0.12);
}
.field-error {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 6px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 16px;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success i {
  font-size: 2.6rem;
  color: var(--grass);
  margin-bottom: 14px;
}
.form-success h3 {
  margin-bottom: 8px;
}
.form-success.show {
  display: block;
}
.info-card {
  background: var(--navy);
  border: none;
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex: none;
}
.info-card h4 {
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--white);
}
.info-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.info-card a {
  color: var(--white);
  font-weight: 500;
}
.faq {
  margin-top: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  color: var(--ink);
}
.faq-q i {
  transition: transform 0.3s;
  color: var(--grass);
  flex: none;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}
/* in-content links (FAQ answers + interlinks) — accent colour + animated underline (matches nav links) */
.faq-a a,
.ilink {
  color: var(--accent);
  font-weight: 600;
  position: relative;
}
.faq-a a::after,
.ilink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.faq-a a:hover::after,
.ilink:hover::after {
  width: 100%;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.08s;
}
.reveal[data-d="2"] {
  transition-delay: 0.16s;
}
.reveal[data-d="3"] {
  transition-delay: 0.24s;
}

/* ============================================================
   ADD-ONS: modern footer, back-to-top, video popup, photo CTA
   ============================================================ */

/* ---------- Modern footer ---------- */
.footer {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.68);
  padding: 0;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-inner {
  position: relative;
  z-index: 2;
  padding: 74px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1.95fr 1.25fr;
  gap: 28px;
  padding-bottom: 46px;
}
.footer-brand-col .brand-logo {
  width: auto;
  height: 120px;
}
.footer-brand-col p {
  font-size: 17px;
  max-width: 34ch;
  margin: 18px 0 22px;
  color: var(--white);
  line-height: 1.4;
  font-weight: 500;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}
.footer h2 {
  font-family: var(--f-display);
  color: var(--white);
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 600;
  text-transform: none;
}
.footer li {
  margin-bottom: 8px;
}
.footer li a {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    color 0.25s,
    transform 0.25s;
}
.footer li a i {
  font-size: 10px;
  background: var(--accent);
  color: var(--white);
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}
.footer li a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer-news {
  background: var(--white);
  border: none;
  border-radius: 28px;
  padding: 26px 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
.footer-news h2 {
  color: var(--navy);
  margin-bottom: 8px;
}
.footer-news p {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.news-form {
  display: flex;
  gap: 8px;
  background: var(--navy);
  border: none;
  border-radius: var(--pill);
  padding: 5px 5px 5px 18px;
  transition: box-shadow 0.3s;
}
.news-form:focus-within {
  box-shadow: 0 0 0 4px rgba(20, 64, 97, 0.18);
}
.news-form input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}
.news-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.news-form button {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}
.news-form button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark, var(--accent));
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  font-size: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all 0.35s var(--ease);
}
.footer-social a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-4px);
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-bottom a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 14px;
  font-weight: 500;
  color: rgb(181 181 181);
}
.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.footer-legal a {
  font-size: 14px;
  font-weight: 500;
  color: rgb(181 181 181);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-legal a:hover {
  color: var(--white);
}

/* ---------- Back-to-top ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(173, 45, 66, 0.4);
  z-index: 85;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: 0.4s var(--ease);
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-5px);
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  z-index: 90;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.wa-float i {
  position: relative;
  z-index: 2;
  line-height: 1;
}
.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: 0;
  animation: waPulse 2.4s var(--ease) infinite;
}
.wa-ring:nth-of-type(2) {
  animation-delay: 1.2s;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.wa-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.55);
}

/* ---------- Photo-background CTA ---------- */
.cta-photo {
  position: relative;
  background: var(--mint);
  isolation: isolate;
}
.cta-photo .cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-photo .cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-photo h2,
.cta-photo p,
.cta-photo .hero-cta {
  position: relative;
  z-index: 2;
}
.cta-photo h2 {
  color: var(--navy);
}
.cta-photo p {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 18px;
  max-width: 100%;
}

/* ---------- Features Showcase ---------- */
.features-show {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
}
.features-show-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.features-show-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-show .wrap {
  position: relative;
  z-index: 2;
}
.features-show-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.features-show .eyebrow {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.features-show .eyebrow i {
  color: var(--accent);
}
.features-show h2 {
  color: var(--white);
}
.features-show .lead {
  color: rgba(255, 255, 255, 0.82);
}
.features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.features-cards .fcard {
  background: var(--white);
  border: none;
  text-align: center;
  padding: 32px 24px;
  border-radius: 50px;
}
.features-cards .fcard .ic {
  margin-left: auto;
  margin-right: auto;
}
.features-cards .fcard h3 {
  color: var(--navy);
  font-size: 18px;
}
.features-cards .fcard p {
  color: #222;
  font-size: 14px;
  font-weight: 600;
}
.features-cards .fcard::after {
  display: none;
}
.features-show-copy .hero-cta {
  margin-top: 28px;
}
.eyebrow i {
  color: var(--accent);
}
.nav-links a::after {
  background: var(--accent);
}
.overlay {
  background: rgba(15, 47, 72, 0.5);
}
.drawer a i {
  color: var(--accent);
}
.chip-btn:hover {
  border-color: var(--white);
  color: var(--white);
}
.chip-btn.on {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(173, 45, 66, 0.12);
}
.form-success i {
  color: var(--accent);
}
.faq-q i {
  color: var(--accent);
}
.info-card .ic {
  color: var(--white);
}

/* ---------- Legal / prose content ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-updated {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 36px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 42px 0 14px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 22px 0 10px;
}
.legal-content p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 16px;
}
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.legal-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 5px;
}
.legal-content strong {
  color: var(--ink);
}
.legal-content a {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Auth (login / register) ---------- */
.auth-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.auth-wrap .form-card {
  text-align: left;
}
.auth-switch {
  text-align: center;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.auth-switch a {
  color: var(--accent);
  font-weight: 600;
}
/* animated underline for auth-page links (matches the navbar links) */
.auth-switch a,
.auth-link {
  position: relative;
  display: inline-block;
}
.auth-switch a::after,
.auth-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lime-dark);
  transition: width 0.3s var(--ease);
}
.auth-switch a:hover::after,
.auth-link:hover::after {
  width: 100%;
}

/* ---------- Pricing category SVG icons ---------- */
.pg-icon svg {
  width: 48px;
  height: 48px;
}
.pg-icon--blue,
.pg-icon--pink,
.pg-icon--green,
.pg-icon--purple {
  background: var(--accent);
  color: var(--white);
}
.pg-icon {
  transition: transform 0.4s var(--ease);
}
.price-group:hover .pg-icon {
  transform: rotate(-6deg) scale(1.05);
}
.ptcard-icon svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================
   New-page UI polish (about / demo / faqs / setup / auth / legal)
   ========================================================== */

/* Legal pages — elevated document panel */
.legal-content {
  max-width: 840px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4.5vw, 54px);
}
.legal-content h2 {
  padding-left: 15px;
  border-left: 4px solid var(--accent);
  line-height: 1.25;
}
.legal-updated {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.82rem;
}

/* Auth cards — premium accent bar */
.auth-wrap .form-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding-top: 42px;
}
.auth-wrap .form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--navy));
}

/* Setup-process numbered cards — hover lift */
.feat-card--numbered {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.feat-card--numbered:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* FAQ category headings — accent underline rhythm */
.faq + .h-md,
.legal-content h2:not(:first-of-type) {
  scroll-margin-top: 120px;
}

/* ==========================================================
   Audience info cards (replaces persona carousel)
   ========================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.aud-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 28px 32px;
  text-align: left;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.aud-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.aud-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.aud-card:hover::before {
  transform: scaleX(1);
}
.aud-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--white);
  background: var(--accent);
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease);
}
.aud-card:hover .aud-icon {
  transform: rotate(-8deg) scale(1.06);
}
.aud-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.aud-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ==========================================================
   Blog — shared card
   ========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 52px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.blog-card--in {
  animation: blogCardIn 0.35s var(--ease) both;
}
@keyframes blogCardIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-thumb img {
  transform: scale(1.07);
}
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: var(--pill);
}
.blog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 26px;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.blog-meta i {
  color: var(--accent);
  margin-right: 5px;
}
.blog-body h3 {
  font-size: 1.2rem;
  line-height: 1.32;
  margin-bottom: 12px;
}
.blog-body h3 a {
  transition: color 0.3s;
}
.blog-body h3 a:hover {
  color: var(--accent);
}
.blog-excerpt {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}
.blog-more i {
  transition: transform 0.3s var(--ease);
}
.blog-more:hover i {
  transform: translateX(5px);
}

/* ==========================================================
   Blog listing — featured + filter
   ========================================================== */

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.blog-chip {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: var(--card);
  padding: 9px 20px;
  border-radius: var(--pill);
  transition: all 0.3s var(--ease);
}
.blog-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.blog-chip.on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ==========================================================
   Blog single — article
   ========================================================== */

.article-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
}
.article-content h3 {
  font-size: 1.18rem;
  margin: 30px 0 10px;
}
.article-content p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.8;
}
.article-content ul {
  margin: 0 0 20px;
}
.article-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.article-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 6px;
}
.article-content a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-quote {
  border-left: 4px solid var(--accent);
  background: var(--mint);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 22px 26px;
  margin: 28px 0;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
}
.article-share {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.article-share span {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
}
.article-share-links {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.article-share-links a,
.article-share-links .btn-share-more {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  color: var(--navy);
  background: transparent;
  text-decoration: none;
  font: inherit;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  padding: 0;
}
.article-share-links .btn-share-more {
  width: 42px;
}
.article-share-links a:hover,
.article-share-links .btn-share-more:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}
.article-share-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  padding-block: 6px;
  margin-block: -6px;
  margin-left: -10px;
  transform: translateX(-8px);
  transition: max-width 0.45s var(--ease), opacity 0.35s var(--ease),
    transform 0.45s var(--ease), margin-left 0.45s var(--ease);
  pointer-events: none;
}
.article-share-links.is-open .article-share-more {
  max-width: 400px;
  opacity: 1;
  margin-left: 0;
  transform: translateX(0);
  pointer-events: auto;
}
.article-share-more a {
  width: 42px;
  height: 42px;
  opacity: 0;
}
.article-share-links.is-open .article-share-more a {
  opacity: 1;
}
.article-share-links.is-open .article-share-more a:nth-child(1) {
  transition-delay: 0.06s;
}
.article-share-links.is-open .article-share-more a:nth-child(2) {
  transition-delay: 0.12s;
}
.article-share-links.is-open .article-share-more a:nth-child(3) {
  transition-delay: 0.18s;
}
.article-share-links.is-open .article-share-more a:nth-child(4) {
  transition-delay: 0.24s;
}
.article-share-more a i {
  width: auto;
}
.btn-share-more i {
  transition: transform 0.4s var(--ease);
}
.article-share-links.is-open .btn-share-more i {
  transform: rotate(135deg);
}

/* ==========================================================
   Blog pagination
   ========================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 56px;
}
.pagination a,
.pagination span {
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  border: 1.5px solid var(--line);
  background: var(--card);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.pagination .is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.pagination .pg-arrow {
  gap: 8px;
}
.pagination .is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pagination .pg-dots {
  border: none;
  background: none;
}

/* ==========================================================
   Blog single — two-column layout
   ========================================================== */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 52px;
  align-items: start;
}
.article-main {
  min-width: 0;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.pb-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mint-2);
  border: 2px solid var(--accent-soft);
  padding: 6px;
}
.pb-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pb-name {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}
.pb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 500;
}
.pb-meta i {
  color: var(--accent);
  margin-right: 5px;
}
.post-cover {
  margin-bottom: 32px;
}
.post-cover img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.article-content h2 {
  scroll-margin-top: 110px;
}
.article-figure {
  margin: 32px 0;
}
.article-figure img {
  width: 100%;
  border-radius: var(--r);
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.article-figure figcaption {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 10px;
  font-style: italic;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.article-tags .at-label {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  margin-right: 4px;
}
.article-tags a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--mint);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: var(--pill);
  transition: all 0.3s var(--ease);
}
.article-tags a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ---------- Comments ---------- */
.comments {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.comments-title {
  font-size: 1.4rem;
  margin-bottom: 28px;
}
.comment {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.comment.is-reply {
  margin-left: 60px;
}
.comment-avatar {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
}
.comment-avatar svg {
  width: 26px;
  height: 26px;
}
.comment-body {
  flex: 1;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 22px;
}
.comment-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.comment-head h4 {
  font-size: 1rem;
  color: var(--ink);
}
.comment-date {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 500;
}
.comment-body p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 10px;
}
.comment-reply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--accent);
}
.comment-form {
  margin-top: 36px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
}
.comment-form h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.comment-form .cf-sub {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.comment-success {
  display: none;
  text-align: center;
  padding: 20px 10px;
}
.comment-success.show {
  display: block;
}
.comment-success i {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

/* ---------- Article sidebar ---------- */
.article-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 24px 26px;
}
.sidebar-widget h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: toc;
}
.toc-list a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border-left: 2px solid transparent;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.25s var(--ease);
}
.toc-list a:hover {
  background: var(--mint);
  color: var(--ink);
}
.toc-list a.active {
  background: var(--accent-soft);
  border-left-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}
.mini-post {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}
.mini-post + .mini-post {
  border-top: 1px solid var(--line);
}
.mini-post img {
  width: 62px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
}
.mini-post h5 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.25s;
}
.mini-post:hover h5 {
  color: var(--accent);
}
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.sidebar-tags a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--mint);
  border: 1px solid var(--line);
  padding: 6px 13px;
  border-radius: var(--pill);
  transition: all 0.3s var(--ease);
}
.sidebar-tags a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.sidebar-cta {
  background: var(--navy);
  border: none;
  color: var(--white);
  text-align: center;
}
.sidebar-cta h4 {
  color: var(--white);
  border: none;
  padding: 0;
  margin-bottom: 8px;
}
.sidebar-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* ---------- Nav: Contact moved to top-right actions ---------- */
.nav-contact {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--accent);
  transition: color 0.3s;
  line-height: 1.5;
}
.nav-contact:hover,
.nav-contact.active {
  color: var(--accent);
}

/* ---------- Setup Process: bordered step cards ---------- */
.steps-section .feat-card--numbered {
  border: 2px solid var(--accent);
}

/* ==========================================================
   Remove scale / lift hover + startup animations on card
   sections (a hovered card was being overlapped by its
   neighbours because the transform raised it without z-index)
   ========================================================== */
.stat-card:hover .si,
.price-group:hover .pg-icon,
.aud-card:hover .aud-icon,
.blog-card:hover .blog-thumb img {
  transform: none;
}
.aud-card:hover,
.blog-card:hover,
.stat-card:hover {
  transform: none;
}
.aud-card::before {
  display: none;
}
.stat-card.reveal,
.aud-card.reveal,
.blog-card.reveal {
  opacity: 1;
  transform: none;
  transition:
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

/* ==========================================================
   Keep the scaled colour-backing blocks on the feature cards
   (Player Management numbered cards + Public Dashboard viewer
   cards + Setup Process steps) — the ::after transform:scale
   design stays. Only remove the card's own hover + startup
   (reveal) transforms, which toggled the card's stacking
   context and made the block flicker in front / behind.
   ========================================================== */
.feat-card--numbered:hover,
.feat-card--viewer:hover {
  transform: none;
}
.feat-card--numbered.reveal,
.feat-card--viewer.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ==========================================================
   ABOUT PAGE — modern bespoke layout (scoped .about-page)
   ========================================================== */

/* --- Framed image with decorative pattern (reused) --- */
.about-frame {
  position: relative;
  isolation: isolate;
}
.about-frame-img {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 30px 60px rgba(20, 64, 97, 0.18);
}
.about-frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
/* dotted pattern panel offset behind the photo */
.about-frame::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 26px -26px -26px 34px;
  border-radius: 30px;
  background:
    radial-gradient(rgba(20, 64, 97, 0.18) 2px, transparent 2.4px) 0 0 / 18px 18px,
    var(--mint-2);
}
/* accent dashed frame offset top-left */
.about-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -18px;
  top: -18px;
  width: 44%;
  height: 46%;
  border: 2px dashed rgba(173, 45, 66, 0.45);
  border-radius: 24px;
}
.about-frame--alt::after {
  inset: 26px 34px -26px -26px;
  background:
    radial-gradient(rgba(173, 45, 66, 0.16) 2px, transparent 2.4px) 0 0 / 18px 18px,
    var(--accent-soft);
}
.about-frame--alt::before {
  left: auto;
  right: -18px;
  border-color: rgba(20, 64, 97, 0.35);
}

/* --- Our Story --- */
.about-story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.about-story-copy .eyebrow {
  margin-bottom: 6px;
}
.about-story-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-pills span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--mint);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: var(--pill);
}
.about-pills i {
  color: var(--accent);
}

/* --- Mission & Vision (alternating image rows) --- */
.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mv-row + .mv-row {
  margin-top: 84px;
}
.mv-row--rev .mv-figure {
  order: -1;
}
.mv-text .eyebrow {
  margin-bottom: 6px;
}
.mv-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
/* distinct image style: organic asymmetric radius + tinted offset panel */
.mv-figure {
  position: relative;
  isolation: isolate;
}
.mv-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 28px 96px 28px 96px;
  box-shadow: 0 30px 60px rgba(20, 64, 97, 0.2);
}
.mv-figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20px -20px 34px 34px;
  border-radius: 28px 96px 28px 96px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(20, 64, 97, 0.14));
}
.mv-figure::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -12px;
  bottom: 18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px dashed rgba(173, 45, 66, 0.4);
}
.mv-tag {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 8px 16px;
  border-radius: var(--pill);
  box-shadow: var(--shadow-sm);
}
.mv-tag i {
  color: var(--accent);
}
.leader-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}
.leader-row + .leader-row {
  margin-top: 84px;
}
.leader-row--rev .leader-portrait {
  order: -1;
}

/* --- Portrait frame (photo + icon + role badge) --- */
.leader-portrait {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 30px 60px rgba(20, 64, 97, 0.22);
}
.leader-portrait--alt {
  background: linear-gradient(160deg, var(--accent) 0%, var(--navy-deep) 100%);
}
/* subtle dot texture (shows only if the photo is missing) */
.leader-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
}
.leader-portrait img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* bottom scrim keeps the icon + badge legible over the photo */
.leader-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(15, 47, 72, 0.5), transparent 40%);
}
.leader-portrait .lp-icon {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.3rem;
}
.leader-portrait .lp-badge {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--pill);
  box-shadow: var(--shadow-sm);
}
/* fallback monogram (only if you use <span class="leader-mono"> instead of a photo) */
.leader-mono {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
}

/* --- Text side of each profile --- */
.leader-body .eyebrow {
  margin-bottom: 8px;
}
.leader-body h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 6px 0 6px;
}
.leader-subhead {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.leader-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.leader-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.leader-chips span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--navy);
  background: var(--mint);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: var(--pill);
}
.leader-chips i {
  color: var(--accent);
}

/* --- "Why this platform exists" band --- */
.why-exists {
  text-align: center;
}
.why-exists-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.why-exists-pillars .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--pill);
  padding: 13px 24px;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--navy);
}
.why-exists-pillars .pill i {
  color: var(--accent);
}
@media (max-width: 991px) {
  .leader-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .leader-row .leader-portrait {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .leader-row + .leader-row {
    margin-top: 56px;
  }
}
@media (max-width: 576px) {
  .leader-portrait {
    border-radius: 26px;
  }
  .why-exists-pillars .pill {
    width: 100%;
    justify-content: center;
  }
}

/* --- What We Believe (value cards) --- */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.value-card {
  position: relative;
  text-align: center;
  border-radius: 26px;
  padding: 44px 28px 36px;
  /* beautiful 2px gradient border via layered backgrounds */
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(140deg, var(--accent), var(--navy)) border-box;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.value-card .v-ic {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.45rem;
  transition:
    transform 0.45s var(--ease),
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}
.value-card:hover .v-ic {
  background: linear-gradient(135deg, var(--accent), var(--navy));
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.value-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Who We Serve (photo cards) --- */
.about-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.serve-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(108, 147, 177, 0.16);
  border-radius: 28px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.serve-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.serve-card .s-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.serve-card .s-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.serve-card:hover .s-media img {
  transform: scale(1.08);
}
/* pattern overlay on the photo */
.serve-card .s-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.4px) 0 0 / 14px 14px,
    linear-gradient(to top, rgba(15, 47, 72, 0.62), rgba(15, 47, 72, 0.05) 55%);
}
.serve-card .s-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 7px 15px;
  border-radius: var(--pill);
  box-shadow: var(--shadow-sm);
}
.serve-card .s-chip i {
  color: var(--accent);
}
.serve-card .s-body {
  padding: 22px 24px 26px;
}
.serve-card .s-body p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* --- Why Choose (split) --- */
.about-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
/* changed image pattern: offset accent outline frame */
.why-figure {
  position: relative;
  isolation: isolate;
}
.why-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 26px 54px rgba(20, 64, 97, 0.18);
}
.why-figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--accent);
  border-radius: 30px;
}
/* icon + heading only, centered */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 22px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-item .w-ic {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.35rem;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.4s var(--ease);
}
.why-item:hover .w-ic {
  background: linear-gradient(135deg, var(--accent), var(--navy));
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}
.why-item h3 {
  font-size: 1.06rem;
  color: var(--navy);
  line-height: 1.35;
}

/* --- More Than Software (full-width band) --- */
.about-more {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: #fff;
  text-align: center;
}
.about-more-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-more-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-more::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(15, 47, 72, 0.80), rgba(15, 47, 72, 0.80));
}
.about-more .wrap {
  position: relative;
  z-index: 2;
}
.about-more-inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-more h2 {
  color: #fff;
}
.about-more p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0 auto;
}
/* About Statistics section uses its own supplied image (dark overlay keeps text readable) */
.about-page .stats {
  background-image:
    linear-gradient(rgba(15, 47, 72, 0.8), rgba(15, 47, 72, 0.86)),
    url("../images/about/statistics.jpeg");
}

/* ==========================================================
   ABOUT PAGE — responsive
   ========================================================== */
@media (max-width: 1024px) {
  .about-story-grid,
  .about-why-grid,
  .mv-row {
    gap: 44px;
  }
  .about-values-grid,
  .about-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .about-story-grid,
  .about-why-grid,
  .mv-row {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  /* stack: text above image on every split row */
  .about-story-media,
  .about-why-media,
  .mv-row .mv-figure {
    order: 2;
  }
  .about-story-copy,
  .about-why-copy,
  .mv-row .mv-text {
    order: 1;
  }
  .mv-row + .mv-row {
    margin-top: 52px;
  }
  .about-frame,
  .mv-figure,
  .why-figure {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-values-grid,
  .about-serve-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-frame-img {
    border-width: 6px;
  }
  .about-frame::before,
  .mv-figure::after {
    display: none;
  }
  .about-more {
    padding: 74px 0;
  }
  .why-item {
    padding: 24px 14px;
  }
  .why-item h3 {
    font-size: 0.98rem;
  }
}

/* visually-hidden section headings (accessible labels for correct heading order) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
