:root {
  --teal: #008DC8;
  --teal-dark: #004D79;
  --gold: #FFCC00;
  --gold-soft: #fff4bf;
  --ink: #303945;
  --muted: #66717f;
  --light: #f5f7f8;
  --white: #ffffff;
  --line: #dce5ea;
  --navy: #10384c;
  --shadow: 0 18px 45px rgba(0, 72, 91, .14);
  --radius: 24px;
  --check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  --nav-height: 76px;
}

*, ::after, ::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 800;
  background-image: url(../../images/homepage/PointServ-Logo-on-White.svg);
  background-size: contain;
  background-repeat: no-repeat;
  color: var(--teal-dark);
  width: 220px;
  height: 50px;
}

@media (max-width: 720px) {
  .brand {
    width: 50px;
    background-size: cover;
    background-position: center left;
  }
}

.mb-4 {
    margin-bottom: 2rem;
}

footer .brand {
    background-image: url(../../images/homepage/PointServ-Logo.svg);
}

/*.brand-mark{
       width:38px;
      height:38px;
      border-radius:12px;
      background:linear-gradient(
        135deg,
        var(--gold),
        #ffe27f 45%,
        var(--teal) 46%,
        var(--teal-dark)
      );
    } */

.navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
}

@media (max-width: 940px) {
  .navlinks {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navlinks {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .brand {}

  .topbar .btn-login {
    /*display: none;*/
    padding: 6px 8px 10px 8px !important;
  }

  .login-contact-container {
    /*display: none !important;*/
  }

  .container.nav {
    gap: 5px;
    width: min(1160px, calc(100% - 20px));
    justify-content: space-between;
  }

  .dropdown-toggle {
    gap: 0 !important;
  }

  .navlinks {
    gap: 6px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover,
.btn-gold:hover,
.btn-light:hover {
  /* transform:translateY(-1px); */
  box-shadow: 0 12px 26px rgba(0, 72, 91, .14);
}

.btn-gold {
  background: var(--gold);
  color: #24404a;
}

.btn-light {
  background: #fff;
  color: var(--teal-dark);
  border: 1px solid rgba(0, 143, 179, .22);
}

.topbar .btn,
.topbar .btn-login {
  padding: 7px 22px 10px 22px;
  white-space: nowrap;
}

.topbar .btn-primary {
  border: 1.5px solid var(--teal);
}

@media (max-width: 940px) {
  .topbar .btn-primary {
    display: none;
  }
}

.btn-modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  padding: .125rem .65rem .25rem .65rem;
  border-radius: .5rem;
  font-size: 1.5rem;
  line-height: 1.25;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 400;
  border: 1px solid rgba(0, 143, 179, .22);
}

.btn-modal-close:hover {
  background: var(--light);
  box-shadow: 0 12px 26px rgba(0, 72, 91, .14);
}

.btn-modal-login {
  width: 100%;
  font-size: 1rem;
}

.btn-modal-login:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 26px rgba(0, 72, 91, .14);
}

.hero {
  background: radial-gradient(circle at 82% 20%, rgba(255, 187, 0, .28), transparent 20%), linear-gradient(155deg, #008DC8 0%, #007eb4 38%, #00598d 72%, #004D79 100%);
  color: #fff;
  padding: 56px 0 34px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-grid>div {
  max-width: 920px;
}

.hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-pills {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  gap: 24px;
}

@media (max-width: 576px) {
  .hero .hero-pills {
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
  }
}

.hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .92;
  letter-spacing: -.02em;
  max-width: 620px;
}

.hero p {
  font-size: 22px;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 30px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-radius: 32px;
  padding: 18px 18px 14px;
  box-shadow: 0 30px 80px rgba(0, 50, 62, .28);
}

.hero-card-title {
  font-size: 21px;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}


.pointpal .hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  padding: 86px 0 54px;
}

.pointpal .hero-layout {
  position: relative;
  z-index: 1;
  max-width: 960px;
  text-align: center;
}

.pointpal h1,
.pointpal h2,
.pointpal h3,
.pointpal p {
  margin-top: 0;
}

.pointpal h1 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
  max-width: 920px;
}

.pointpal .hero-copy {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.pointpal .section-nav {
  background: #fff;
  padding: 0 0 56px;
  border-bottom: 1px solid var(--line);
}

.pointpal .section-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media(max-width:940px) {
    .pointpal .section-nav-inner {
        grid-template-columns: 1fr;
    }
}

.pointpal .section-nav article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 60, 76, .06);
  color: var(--teal-dark);
  text-align: left;
}

.pointpal .section-nav h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.pointpal .section-nav p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.pointpal .nav-button {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: background .2s ease, transform .2s ease;
}

.pointpal .nav-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.pointpal .section-bridge {
  margin: 0 auto;
  padding: 26px 0;
  background: #f8fbfc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}



.flow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .55);
  padding: 16px 18px;
  border-radius: 22px;
  margin-bottom: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}



.flow-item:nth-of-type(2) {}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ffe58b);
  color: var(--teal-dark);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 10px 25px rgba(244, 198, 66, .28);
}

.flow-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.flow-copy {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

@media(max-width:940px) {

  .flow-item:nth-child(2),
  .flow-item:nth-child(3),
  .flow-item:nth-child(4) {
    margin-left: 0;
  }
}

section {
  padding: 86px 0;
  scroll-margin-top: 24px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.015em;
}

.pointpal h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.pointpal h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  margin: 0;
}

.pointpal .feature-band {
  background: linear-gradient(180deg, var(--light), #fff);
  border-top: 1px solid rgba(220, 229, 234, .8);
  border-bottom: 1px solid rgba(220, 229, 234, .8);
}

.pointpal .report-shell {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 46px;
  align-items: start;
}

@media(max-width:940px) {
    .pointpal .report-shell {
        grid-template-columns: 1fr;
    }
}

.pointpal .section-index {
  display: grid;
  gap: 16px;
}

.pointpal .index-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 60, 76, .06);
}

.pointpal .index-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 17px;
  line-height: 1.25;
}

.pointpal .index-card p {
  margin: 0;
  color: var(--muted);
}



.teaser-note {
  margin: 22px auto 0;
  max-width: 980px;
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid rgba(0, 92, 179, 0.24);
  border-radius: 8px;
  background: rgba(0, 142, 224, 0.08);
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.data-delivery .products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.income-iq .products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.integration-grid .product {
  padding: 34px 28px;
}

.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 60, 76, .07);
}

.product h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.product p {
  margin: 0;
  color: var(--muted);
}

.income-iq .product {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(0, 60, 76, .06);
  color: var(--teal-dark);
  text-align: left;
}

.income-iq .product h3,
.pointpal .product h3 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 22px;
}

.income-iq .product p,
.pointpal .product p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.income-iq .nav-button {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: background .2s ease, transform .2s ease;
}

.income-iq .nav-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.feature-band {
  background: linear-gradient(180deg, var(--light), #fff);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.split-reverse {
  grid-template-areas:
    "card-left card-right";
}

.card-left {
  grid-area: card-left;
}

.card-right {
  grid-area: card-right;
}


@media(max-width:940px) {
  .split.split-reverse {
    grid-template-areas:
      "card-right"
      "card-left";
  }
}


.visual-card {
  background: linear-gradient(150deg, #e7f7fb, #fff 62%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.data-delivery .financial-statement-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 648 / 749;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.data-delivery .financial-statement-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}






.income-iq .product-shot {
  overflow: hidden;
  border: 1px solid rgba(0, 72, 91, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 72, 91, .16);
}

.income-iq .product-shot img {
  width: 100%;
  height: auto;
}

.income-iq .section-image img {
  max-height: 760px;
  object-fit: cover;
  object-position: top;
}

.income-iq .money-reveal {
  position: relative;
  overflow: hidden;
  aspect-ratio: 937 / 879;
  background: #fff;
}

.income-iq .money-reveal .money-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: var(--money-start-position, center top);
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity .55s ease,
    object-position 1.45s cubic-bezier(.2, .72, .2, 1),
    transform 1.45s cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, object-position, transform;
}

.income-iq .money-reveal .money-image.is-current {
  opacity: 1;
  transform: scale(1);
}

.income-iq .money-reveal .money-image.is-positioning {
  transition:
    opacity .55s ease,
    object-position 0s linear,
    transform 1.45s cubic-bezier(.2, .72, .2, 1);
}

.income-iq .money-reveal .money-image.is-current.is-focused {
  object-position: var(--money-focus-position, center top);
}

.money-button,
.money-result-message {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(82%, 560px);
  min-height: 82px;
  padding: 18px 30px;
  border: 2px solid rgba(0, 143, 179, .72);
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--teal);
  box-shadow: 0 18px 42px rgba(0, 72, 91, .12);
  opacity: 0;
  visibility: hidden;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.money-button {
  top: 50%;
  cursor: pointer;
  transform: translate(-50%, calc(-50% + 12px));
  transition: opacity .55s ease, visibility 0s linear .55s, transform .55s ease, box-shadow .2s ease;
}

.money-result-message {
  top: 27%;
  transform: translate(-50%, 14px);
  transition: opacity .4s ease, visibility 0s linear .4s, transform .4s ease;
}

.money-button:hover,
.money-button:focus-visible {
  transform: translate(-50%, calc(-50% - 1px));
  box-shadow: 0 16px 34px rgba(0, 72, 91, .22);
}

.money-reveal.is-overlay-visible .money-button {
  opacity: .96;
  visibility: visible;
  transform: translate(-50%, -50%);
  transition: opacity .35s ease, visibility 0s linear 0s, transform .35s ease, box-shadow .2s ease;
}

.money-button:focus-visible {
  outline: 3px solid rgba(0, 143, 179, .35);
  outline-offset: 3px;
}

.money-reveal.is-revealed .money-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.96);
  transition: opacity .55s ease, visibility 0s linear .55s, transform .55s ease, box-shadow .2s ease;
}

.money-reveal.is-result-visible .money-result-message {
  opacity: .96;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity .4s ease, visibility 0s linear 0s, transform .4s ease;
}

.income-iq .self-employed-reveal,
.income-iq .wage-earner-reveal {
  position: relative;
  overflow: hidden;
}

.income-iq .self-employed-reveal img,
.income-iq .wage-earner-reveal img {
  transition: opacity .55s ease, transform .55s ease;
}

.income-iq .self-image-layer {
  width: 100%;
}

.income-iq .self-image-layer:not(:first-of-type) {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(42px);
}

.income-iq .self-employed-reveal[data-step="1"] .self-image-1,
.income-iq .self-employed-reveal[data-step="2"] .self-image-1,
.income-iq .self-employed-reveal[data-step="2"] .self-image-2,
.income-iq .wage-earner-reveal[data-step="1"] .self-image-1,
.income-iq .wage-earner-reveal[data-step="2"] .self-image-1,
.income-iq .wage-earner-reveal[data-step="2"] .self-image-2 {
  opacity: 0;
  transform: translateX(-32px);
}

.income-iq .self-employed-reveal[data-step="1"] .self-image-2,
.income-iq .self-employed-reveal[data-step="2"] .self-image-3,
.income-iq .wage-earner-reveal[data-step="1"] .self-image-2,
.income-iq .wage-earner-reveal[data-step="2"] .self-image-3 {
  opacity: 1;
  transform: translateX(0);
}

.income-iq .self-reveal-overlay {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(86%, 540px);
  min-height: 78px;
  padding: 16px 18px 16px 24px;
  border: 2px solid rgba(0, 143, 179, .72);
  border-radius: 12px;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 72, 91, .12);
  transform: translateX(-50%);
  transition: opacity .55s ease, visibility 0s linear 0s, transform .25s ease;
}

.income-iq .self-employed-reveal.is-overlay-fading .self-reveal-overlay,
.income-iq .wage-earner-reveal.is-overlay-fading .self-reveal-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility 0s linear .55s, transform .25s ease;
}

.income-iq .self-reveal-text {
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.income-iq .self-employed-reveal[data-step="1"] .self-reveal-text-start,
.income-iq .self-employed-reveal[data-step="2"] .self-reveal-text-start,
.income-iq .wage-earner-reveal[data-step="1"] .self-reveal-text-start,
.income-iq .wage-earner-reveal[data-step="2"] .self-reveal-text-start {
  display: none;
}

.income-iq .self-reveal-text-next,
.income-iq .self-reveal-text-final {
  display: none;
}

.income-iq .self-employed-reveal[data-step="1"] .self-reveal-text-next,
.income-iq .wage-earner-reveal[data-step="1"] .self-reveal-text-next {
  display: inline;
}

.income-iq .self-employed-reveal[data-step="2"] .self-reveal-text-final,
.income-iq .wage-earner-reveal[data-step="2"] .self-reveal-text-final {
  display: inline;
}


.pointpal .hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  padding: 86px 0 54px;
}

.pointpal .hero-layout {
  position: relative;
  z-index: 1;
  max-width: 960px;
  text-align: center;
}

.pointpal h1,
.pointpal h2,
.pointpal h3,
.pointpal p {
  margin-top: 0;
}

.pointpal h1 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
  max-width: 920px;
}

.pointpal .hero-copy {
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.pointpal .section-nav {
  background: #fff;
  padding: 0 0 56px;
  border-bottom: 1px solid var(--line);
}

.pointpal .callout-box {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: #fff;
  color: #53606d;
  box-shadow: 0 8px 24px rgba(0, 60, 76, .06);
}

.pointpal .dark-section {
  background: var(--navy);
  color: #fff;
}

.pointpal .dark-section .lead,
.pointpal .dark-section p {
  color: rgba(255, 255, 255, .72);
}

.pointpal .chat-card {
  background: #f8fafb;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 28px 70px rgba(0, 28, 42, .32);
}

.pointpal .chat-card img {
  width: 100%;
  border-radius: 6px;
}

.pointpal .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pointpal .pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 750;
}

.pointpal .process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media(max-width:940px) {
    .pointpal .process-strip {
        grid-template-columns: 1fr;
    }
}

.pointpal .process-step {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 60, 76, .06);
}

.pointpal .step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 900;
}

.pointpal .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media(max-width:940px) {
    .pointpal .trust-grid {
        grid-template-columns: 1fr;
    }
}

.pointpal .trust-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.pointpal .trust-card h3 {
  color: #fff;
}

.pointpal .notice {
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.7;
}





.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.check-list li:before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.pos-layout {
  grid-template-columns: minmax(300px, .74fr) minmax(560px, 1.26fr);
  gap: 48px;
}

.pos-layout h2,
.los-layout h2 {
  margin-bottom: 0;
}

.los-layout {
  grid-template-columns: minmax(560px, 1.26fr) minmax(300px, .74fr);
  gap: 48px;
}

.pos-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pos-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.security-strip {
  background: #f8fbfc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.security-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal-dark);
}

.security-items span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 6px 18px rgba(0, 60, 76, .05);
}

.logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.logo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.logo-card img {
  max-width: 180px;
  height: 50px;
  object-fit: contain;
  margin: auto;
}

.code-card {
  background: #26323b;
  color: #d9f7ff;
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.code-card pre {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.7;
  font-size: 14px;
}

.gold {
  color: #ffe58b;
}

.quote-band {
  background: var(--teal-dark);
  color: #fff;
  padding: 70px 0;
}

.quote-text {
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
  max-width: 920px;
  margin: 0;
}

.quote-text span {
  color: var(--gold);
}


.cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border-radius: 36px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  margin: 0;
  /* max-width:720px; */
  color: rgba(255, 255, 255, .82);
  /* font-size:18px; */
}


footer {
  padding: 50px 0;
  background: #f0f4f6;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

@media(max-width:940px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .products,
  .logos {
    grid-template-columns: 1fr;
  }

  /*.navlinks {
        display: none;
    }*/
}

@media(max-width:940px) {}

/* ==================================
   ENTERPRISE FOOTER
================================== */

.site-footer {
  background: #0a678f;
  color: rgba(255, 255, 255, .78);
  padding: 72px 0 34px;
}

/* TOP */

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-heading {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .46);
}

.footer-col a,
.footer-legal a {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, .86);
  transition: opacity .2s ease;
}

.footer-col a:hover,
.footer-legal a:hover {
  opacity: .62;
}

/* DIVIDER */

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 56px auto;
}

/* BOTTOM */

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 80px;
}

.footer-brand {
  color: #fff;
}

.footer-description {
  margin: 22px 0 34px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62);
}

.footer-address {
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .52);
}

.footer-phone {
  color: rgba(255, 255, 255, .72);
  transition: opacity .2s ease;
}

.footer-phone:hover {
  opacity: .7;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, .42);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* DISCLAIMER */

.footer-disclaimer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .42);
  max-width: 980px;
}

/* MOBILE */

@media(max-width:940px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width:640px) {

  .footer-top {
    grid-template-columns: 1fr;
  }
}


.workflow-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow-core {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, .92);
  border-radius: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .45);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 50, 62, .28);
}

.workflow-header {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}

.workflow-node {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(0, 72, 91, .08);
  box-shadow: 0 10px 30px rgba(0, 72, 91, .06);
}

.workflow-node.active {
  border: 1px solid rgba(0, 143, 179, .18);
  background: linear-gradient(135deg, rgba(0, 143, 179, .04), #fff);
}

.node-label {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workflow-tags span {
  background: rgba(0, 143, 179, .08);
  color: var(--teal-dark);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.workflow-line {
  width: 2px;
  height: 24px;
  margin: 8px auto;
  background: linear-gradient(to bottom, rgba(0, 143, 179, .12), rgba(0, 143, 179, .45));
}

.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(0, 72, 91, .12);
}

.chip-1 {
  top: 22px;
  right: -10px;
}

.chip-2 {
  bottom: 110px;
  left: -18px;
}

.chip-3 {
  bottom: 22px;
  right: -12px;
}

.workflow-subtitle {
  margin-top: -2px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 600;
}

.workflow-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.source-chip {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(0, 95, 114, .12);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}


.infrastructure-trust-row {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(0, 72, 91, .08);
  border-radius: 22px;
  padding: 18px 22px;
  backdrop-filter: blur(10px);
}

.trust-item img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.trust-item span {
  max-width: 240px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 700;
}

.btn-login {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-login:hover {
  background: #f5f7f8;
}

/* ==================================
   PLATFORM MENU
================================== */

.platform-menu {
  width: min(980px, 92vw);
  padding: 28px;
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 42px;
  align-items: start;
}

/* LEFT PANEL */

.platform-feature {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 42%, #eef7ff 100%);
  border: 1px solid #d5e4ee;
  box-shadow: 0 14px 42px rgba(12, 67, 92, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.platform-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(12, 67, 92, .11);
}

/* subtle enterprise grid */

.platform-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11, 93, 130, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 93, 130, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .38;
  pointer-events: none;
}

/* soft data glow */

.platform-feature::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 58px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 180, 197, .26) 0%, rgba(26, 180, 197, .08) 42%, rgba(26, 180, 197, 0) 74%);
  filter: blur(8px);
  pointer-events: none;
}

.platform-feature-content {
  position: relative;
  z-index: 2;
  max-width: 260px;
}

.platform-feature h3 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 560;
  color: #17212b;
}

.platform-feature p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #5f6f82;
  max-width: 245px;
  font-weight: 400;
}

.platform-ui-chip,
.platform-metric {
  position: absolute;
  z-index: 3;
  backdrop-filter: blur(8px);
}

.platform-ui-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(143, 183, 205, .6);
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 520;
  color: #1f3f54;
  letter-spacing: .01em;
}

.platform-ui-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #13c7b4 0%, #1092cd 100%);
  box-shadow: 0 0 0 4px rgba(19, 199, 180, .15);
}

.platform-chip-payroll {
  top: 36px;
  right: 18px;
}

.platform-chip-ai {
  top: 84px;
  right: 42px;
}

.platform-metric {
  min-width: 130px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(130, 176, 201, .48);
  background: linear-gradient(180deg, rgba(255, 255, 255, .93) 0%, rgba(240, 249, 255, .88) 100%);
  box-shadow: 0 10px 22px rgba(11, 79, 112, .1);
}

.platform-metric-label {
  margin: 0 0 5px;
  font-size: 10px;
  color: #5d7287;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.platform-metric-value {
  margin: 0;
  font-size: 21px;
  line-height: 1;
  font-weight: 620;
  color: #163247;
}

.platform-metric-income {
  right: 18px;
  bottom: 122px;
}

.platform-metric-confidence {
  right: 48px;
  bottom: 44px;
}

/* ARROW */

.platform-arrow {
  position: absolute;
  left: 32px;
  bottom: 30px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(165deg, rgba(255, 255, 255, .96) 0%, rgba(233, 246, 255, .9) 100%);
  border: 1px solid rgba(155, 187, 208, .65);
  display: grid;
  place-items: center;
  font-size: 40px;
  color: #1e384a;
  box-shadow: 0 16px 32px rgba(12, 67, 92, .16), inset 0 1px 0 rgba(255, 255, 255, .8);
  z-index: 3;
  transition: transform .2s ease, box-shadow .2s ease;
}

.platform-feature:hover .platform-arrow {
  transform: translateX(5px) translateY(-1px);
  box-shadow: 0 20px 40px rgba(12, 67, 92, .22), inset 0 1px 0 rgba(255, 255, 255, .9);
}

/* COLUMNS */

.platform-column {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.platform-label {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-dark);
}

/* LINKS */

.platform-link {
  display: block;
}

.platform-link h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1e2328;
}

.platform-link p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 240px;
}

.platform-link:hover h4 {
  opacity: .65;
}

/* MOBILE */

@media(max-width:1100px) {

  .platform-menu {
    grid-template-columns: 1fr;
  }

  .platform-feature {
    min-height: 370px;
  }

  /*    .platform-feature-content {
        max-width: 100%;
        padding-right: 188px;
    }*/
}


@media(max-width:680px) {
  .platform-feature {
    min-height: 340px;
    padding: 28px;
  }

  .platform-feature-content {
    padding-right: 0;
    max-width: 100%;
  }

  .platform-ui-chip,
  .platform-metric {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    display: inline-flex;
    margin-top: 12px;
    margin-right: 8px;
  }

  .platform-metric {
    display: inline-block;
    min-width: 0;
  }

  .platform-arrow {
    width: 72px;
    height: 72px;
    bottom: 24px;
    left: 24px;
  }
}

/* =========================
   DROPDOWN / MEGA MENU
========================= */

.mega-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
  padding: 1.5rem 0;
}

.dropdown-toggle:hover {
  opacity: .72;
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 11px;
  font-weight: 700;
  opacity: .55;
  margin-top: 2px;
  transition: transform .2s ease;
}

.mega-dropdown:hover .dropdown-toggle::after {
  transform: translateY(1px);
}

.mega-menu {
  position: absolute;
  /*top: calc(100% + 24px);*/
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(860px, 85vw);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(220, 229, 234, .9);
  border-radius: 32px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 44px;
  box-shadow: 0 30px 80px rgba(0, 72, 91, .16), 0 8px 24px rgba(0, 72, 91, .08);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-46%) translateY(0);
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 20px;
  transition: background .2s ease, transform .2s ease;
}

.mega-item:hover {
  background: #f5f7f8;
  transform: translateY(-1px);
}

.mega-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #ffe58b);
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), 0 10px 24px rgba(244, 198, 66, .22);
}

.mega-item h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  /* not bold */

  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.mega-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
}

/* mobile */

/*@media(max-width:940px) {

    .mega-menu {
        position: static;
        width: 100%;
        margin-top: 18px;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        grid-template-columns: 1fr;
        padding: 24px;
    }
}*/
/* ==================================
   PLATFORM MENU FINAL FIX
================================== */

.platform-dropdown .platform-menu {
  width: 1120px !important;
  max-width: calc(100vw - 80px);
  left: 46%;
  transform: translateX(-46%) translateY(12px);
  padding: 34px 36px !important;
  display: grid !important;
  grid-template-columns: 320px minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
  gap: 44px;
  align-items: start;
}

.platform-dropdown .company-menu {
  width: 800px !important;
  max-width: calc(100vw - 80px);
  left: 50%;
  transform: translateX(-46%) translateY(12px);
  padding: 34px 36px !important;
  display: grid !important;
  grid-template-columns: 320px minmax(200px, 1fr);
  gap: 44px;
  align-items: start;
}

/* stop inherited 2-col mega menu rules */

.platform-dropdown .platform-menu .platform-column {
  min-width: 0;
}

/* tighter content spacing */

.platform-dropdown .platform-column {
  gap: 30px;
}

/* compact left panel */

.platform-dropdown .platform-feature {
  min-height: 430px;
}

/* make text widths smaller */

.platform-dropdown .platform-link p {
  max-width: 220px;
}

/* mobile */

@media(max-width:1300px) {

  .platform-dropdown .platform-menu {
    width: 900px !important;
    left: 35%;
    grid-template-columns: 1fr 1fr 1fr;
    transform: translateX(-35%) translateY(12px) !important;
  }

  .platform-dropdown.products-dropdown .platform-menu {
    transform: translateX(-45%) translateY(12px) !important;
  }

  .platform-dropdown .company-menu {
    transform: translateX(-55%) translateY(12px) !important;
  }

  .mega-dropdown:hover .mega-menu {
    transform: translateX(-35%) translateY(-5px) !important;
  }

  .platform-dropdown.products-dropdown:hover .platform-menu {
    transform: translateX(-45%) translateY(-5px) !important;
  }

  .mega-dropdown:hover .company-menu {
    transform: translateX(-55%) translateY(-5px) !important;
  }

  .platform-menu .platform-feature {
    display: none;
  }
}

@media(max-width:950px) {

  .platform-dropdown .platform-menu,
  .platform-dropdown.products-dropdown .platform-menu,
  .platform-dropdown .company-menu {
    left: 20px;
    grid-template-columns: 1fr 1fr;
    transform: translateX(0) translateY(12px) !important;
    position: fixed;
    max-width: calc(100vw - 40px) !important;
    max-height: calc(100vh - var(--nav-height) - 32px);
  }

  .mega-dropdown:hover .mega-menu,
  .platform-dropdown.products-dropdown:hover .platform-menu {
    transform: translateX(0) translateY(-5px) !important;
  }

  .platform-dropdown .company-menu {
    left: auto;
    right: 20px;
    max-width: calc(50vw - 40px) !important;
    height: auto !important;
    grid-template-columns: 1fr;
  }

  .platform-feature {
    display: none;
  }

  .platform-link h4 {
    font-size: 18px;
  }

  .platform-dropdown .platform-column {
    gap: 20px;
  }
}

@media (max-width: 576px) {

  .platform-dropdown .platform-menu,
  .platform-dropdown .company-menu,
  .platform-dropdown.products-dropdown:hover .platform-menu {
    grid-template-columns: 1fr;
    left: 10px;
    max-width: calc(100vw - 20px) !important;
    padding: 30px 34px !important;
    height: auto !important;
    max-height: calc(100vh - var(--nav-height) - 32px);
  }

  .platform-dropdown .platform-link p {
    max-width: 100%;
    display: none;
  }

  .platform-dropdown .platform-column {
    gap: 12px;
  }

  .platform-link h4 {
    margin: 0 0 5px;
    font-size: 17px;
    letter-spacing: 0;
  }

  .platform-dropdown .platform-menu {
    gap: 35px;
  }

  .platform-label {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 0;
  }
}

/* login */

.ps-login-input {
  padding: 11px 9px;
  border: 2px solid var(--line);
  border-radius: 8px;
  transition: border-color .2s ease;
  width: 100%;
  background-color: #f8fbfc;
  font-size: 1rem;
  letter-spacing: 1px;
}

.ps-login-input:focus {
  border-color: var(--teal);
  outline: none;
}

.ps-login-checkbox {
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
  border: 2px solid var(--line);
  transition: border-color .2s ease;
  background-color: #f8fbfc;
}

.ps-login-checkbox:checked[type="checkbox"] {
  border-color: var(--teal);
  background-color: var(--teal);
  outline: none;
  background-image: var(--check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.legal-hero h1 {
  max-width: 900px;
}

.news-page .hero {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.news-page .hero p {
  color: var(--muted);
}

.news-page .eyebrow {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--teal-dark);
}

.news-page .hero-grid {
  justify-content: center;
  text-align: center;
}

.news-page .hero-grid>div {
  margin: 0 auto;
  max-width: 960px;
}

.news-page .hero h1,
.news-page .hero p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.legal-page .legal-content,
.news-page .news-feed-section {
  padding: 64px 0 84px;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 72, 91, 0.08);
  padding: 32px;
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--teal-dark);
}

.legal-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-list li {
  margin-bottom: 12px;
}

.news-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.news-list {
  margin-top: 26px;
  display: grid;
  gap: 20px;
}

.news-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 72, 91, 0.08);
  padding: 24px;
}

.news-item-date {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.news-item-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
}

.news-item-subtitle,
.news-item-content {
  margin: 0 0 12px;
  color: var(--muted);
}

.news-item-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {

  .legal-card,
  .news-item {
    padding: 20px;
  }

  .news-item-title {
    font-size: 24px;
  }
}

.company-intro {
  padding: 64px 0 36px;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.company-intro .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.company-intro h1 {
  margin: 0 0 16px;
  max-width: 940px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.02;
  color: var(--ink);
}

.company-intro p {
  margin: 0;
  max-width: 980px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--muted);
}

.company-about {
  padding: 72px 0;
  background: #fff;
}

.company-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.company-about h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3.6vw, 64px);
  line-height: 1.05;
}

.company-about-accent {
  color: var(--teal);
}

.company-about .lead {
  max-width: 760px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.5;
}

.company-about-image-wrap {
  border: 0;
  border-radius: clamp(20px, 4vw, 52px);
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 32px rgba(0, 72, 91, .09);
}

.company-about-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.company-about-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.company-about-highlights article {
  padding: 18px 14px 0;
  border-right: 1px solid var(--line);
  text-align: center;
}

.company-about-highlights article:last-child {
  border-right: 0;
}

.company-about-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
}

.company-about-icon svg {
  width: 100%;
  height: 100%;
  stroke: #1594cf;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-about-highlights h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: clamp(14px, .95vw, 18px);
  line-height: 1.35;
}

.company-about-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, .84vw, 16px);
  line-height: 1.4;
}

.company-news {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-news .section-head {
  margin-bottom: 24px;
  max-width: 920px;
}

.company-news .news-list {
  margin-top: 0;
  gap: 16px;
}

.company-news-item {
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(0, 72, 91, .08);
}

.company-news .news-item-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.1vw, 34px);
}

.company-news .news-item-subtitle {
  margin: 0;
}

.company-news .news-item-subtitle a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.company-news-all {
  margin-top: 24px;
}

.company-contact {
  padding: 72px 0;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-contact .lead {
  max-width: 920px;
}

.company-contact-form {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(0, 72, 91, .08);
}

.company-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.company-form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.company-form-field input,
.company-form-field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cad8e0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
}

.company-form-field input:focus,
.company-form-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 141, 200, .15);
}

.company-form-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.company-form-status {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.company-demo {
  padding: 72px 0 88px;
  background: #fff;
}

.company-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.company-demo-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.company-demo-points span::before {
  content: "\2713";
  display: inline-block;
  margin-right: 10px;
  color: var(--teal);
  font-weight: 800;
}

.company-demo-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 16px 36px rgba(0, 72, 91, .1);
}

.company-demo-card h3 {
  margin: 0 0 8px;
  font-size: 44px;
  line-height: 1.2;
}

.company-demo-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
}

.company-demo-card .btn {
  min-width: 190px;
}

.company-demo-powered {
  margin-top: 14px !important;
  font-size: 16px !important;
}

@media (max-width: 1024px) {

  .company-about-grid,
  .company-demo-grid {
    grid-template-columns: 1fr;
  }

  .company-about-image-wrap {
    max-width: 760px;
  }

  .company-about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .company-about-highlights article:nth-child(2n) {
    border-right: 0;
  }

  .company-about-highlights article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .company-intro p {
    font-size: 18px;
  }

  .company-news-item {
    padding: 18px;
  }

  .company-news .news-item-title {
    font-size: 22px;
  }

  .company-form-grid {
    grid-template-columns: 1fr;
  }

  .company-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-about-highlights {
    grid-template-columns: 1fr;
  }

  .company-about-highlights article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .company-about-highlights article:last-child {
    border-bottom: 0;
  }

  .company-demo-card {
    padding: 24px;
  }
}

.legal-updated {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
}
