:root {
  --navy: #0a2d6f;
  --navy-dark: #061f4f;
  --blue: #1e4fa8;
  --sky: #4f8ef7;
  --green: #0a5e14;
  --green-light: #178326;
  --ink: #15233b;
  --muted: #5f6f85;
  --line: #d7e1ef;
  --soft: #f8fafc;
  --tint: #f3f7fd;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(10, 45, 111, 0.08);
  --shadow-lg: 0 22px 60px rgba(10, 45, 111, 0.14);
  --radius: 18px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 82px 0 0;
  pointer-events: none;
  background: url("../posalogo.png?v=2") center / min(58vw, 720px) auto no-repeat;
  filter: grayscale(1);
  opacity: 0.06;
}
body > main,
body > .site-footer {
  position: relative;
  z-index: 1;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
}
p {
  margin: 0 0 1rem;
}
ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}
.section {
  padding: 2.5rem 0;
}
.section-soft {
  background: var(--soft);
}
.section-tint {
  background: var(--tint);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color:black;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow.head{
    color: white;
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 82px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 225, 239, 0.9);
  backdrop-filter: blur(15px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 8px 25px rgba(10, 45, 111, 0.1);
}
.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brand {
  flex: 0 0 auto;
}
.brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.primary-nav .mobile-nav-cta {
  display: none;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.7rem;
  color: #27364d;
  border: 0;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color var(--transition),
    background var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.3rem;
  left: 0.7rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active,
.nav-dropdown.active > .nav-link {
  color: var(--green);
}
.nav-link.active::after,
.nav-dropdown.active > .nav-link::after {
  transform: scaleX(1);
}
.nav-dropdown {
  position: relative;
}
.dropdown-toggle i {
  font-size: 0.65rem;
  transition: transform var(--transition);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  min-width: 190px;
  padding: 0.55rem;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -8px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 0.75rem;
}
.dropdown-menu .nav-link {
  display: flex;
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
}
.dropdown-menu .nav-link::after {
  display: none;
}
.dropdown-menu .nav-link:hover,
.dropdown-menu .nav-link.active {
  background: var(--tint);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.nav-dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  color:white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(10, 45, 111, 0.2);
}
.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}
.button-green {
  /* background: linear-gradient(135deg, #daeeff, #dde3dd); */
  background: white;
  color: #0a2d6f;
}
.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.83rem;
}
.button-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 0%, #fff 58%, #eef5ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 142, 247, 0.18),
    transparent 68%
  );
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 2rem;
  width: min(52%, 700px);
  height: 76%;
  pointer-events: none;
  background: url("../posalogo.png?v=2") center / contain no-repeat;
  filter: grayscale(1);
  opacity: 0.08;
  transform: translateY(-50%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: 5rem;
}
.hero h1 {
  max-width: 770px;
  font-size: clamp(2.8rem, 6vw, 56px);
}
.hero h1 span {
  background: linear-gradient(110deg, var(--blue), var(--green-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-copy .lead {
  max-width: 690px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-panel {
  position: relative;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  border-radius: 22px;
}
.hero-badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  max-width: 230px;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
}
.hero-form-panel {
  width: min(100%, 430px);
  justify-self: end;
  padding: 0;
  overflow: hidden;
  background: var(--navy-dark);
  border-color: rgba(79, 142, 247, 0.24);
  border-radius: 24px;
}
.research-access-form {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
}
.research-form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.research-form-heading h2 {
  margin: 0.25rem 0 0;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 1.35rem;
}
.research-form-heading > i {
  margin-top: 0.4rem;
  color: white;
  font-size: 1.25rem;
}
.research-form-kicker {
  color: #8fb3ec;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.research-field {
  display: grid;
}
.research-field label {
  color: #b8cae7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.research-field input {
  width: 100%;
  padding: 0.72rem 0.9rem;
  color: var(--white);
  background: rgba(2, 21, 48, 0.72);
  border: 1px solid rgba(143, 179, 236, 0.18);
  border-radius: 11px;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.research-field input::placeholder {
  color: #a8bad4;
  opacity: 1;
}
.research-field input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(79, 142, 247, 0.16);
}
.forgot-password-link {
  justify-self: end;
  color: #c8d8f1;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}
.forgot-password-link:hover,
.forgot-password-link:focus-visible {
  color: var(--white);
  text-decoration: underline;
}
.research-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 0.1rem;
  padding-block: 0.65rem;
}
.research-access-form .form-notice {
  margin: 0;
}

.stats-band {
  padding: 3.5rem 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-dark), var(--blue));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stat {
  padding: 1rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}
.stat span {
  color: #d8e5fa;
  font-size: 0.85rem;
}

.page-hero {
  position: relative;
  padding: 1.5rem 0 1.5rem;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-dark), var(--blue));
  
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -80px;
  width: 480px;
  height: 480px;
  border: 80px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 0.45rem; */
}
.compliance-hero .container {
  align-items: flex-start;
  text-align: left;
}
.page-hero .eyebrow,
.page-hero h1,
.page-hero p,
.page-hero .breadcrumb {
  margin: 0;
}
.page-hero h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}
.page-hero p {
  max-width: 760px;
  color: #dce8fb;
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  color: #c9d9f3;
  font-size: 0.82rem;
}
.breadcrumb a:hover {
  color: var(--white);
}

.feature-card,
.service-card,
.value-card {
  height: 100%;
  padding: 1.7rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.feature-card:hover,
.service-card:hover,
.value-card:hover {
  border-color: #abc3e6;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--green);
  background: #e8f4ea;
  border-radius: 13px;
  font-size: 1.25rem;
}
.feature-card p,
.service-card p,
.value-card p {
  color: var(--muted);
}
.perspectives-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(23, 131, 38, 0.08), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(79, 142, 247, 0.1), transparent 28%),
    var(--white);
}
.grid.perspective-cards {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 1.4rem;
}
.perspective-cards blockquote {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 4.5rem 2rem 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96)) padding-box,
    linear-gradient(135deg, rgba(30, 79, 168, 0.3), rgba(23, 131, 38, 0.28)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 42px rgba(10, 45, 111, 0.09);
}
.perspective-cards blockquote::before {
  content: "\201C";
  position: absolute;
  top: 0.45rem;
  left: 1.7rem;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.22;
  transition:
    opacity var(--transition),
    transform var(--transition);
}
.perspective-cards blockquote::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -65px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(23, 131, 38, 0.16), transparent 68%);
  border-radius: 50%;
  transition: transform 450ms ease;
}
.perspective-cards blockquote p {
  position: relative;
  margin-bottom: 1.6rem;
  color: #455a76;
  font-size: 1rem;
  line-height: 1.8;
}
.perspective-cards blockquote strong {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-size: 0.86rem;
  letter-spacing: 0.025em;
}
.perspective-cards blockquote strong::before {
  content: "";
  width: 28px;
  height: 3px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--blue), var(--green-light));
  border-radius: 999px;
  transition: width var(--transition);
}
.perspective-cards blockquote:hover {
  border-color: transparent;
  box-shadow: 0 24px 55px rgba(10, 45, 111, 0.16);
  transform: translateY(-8px);
}
.perspective-cards blockquote:hover::before {
  opacity: 0.35;
  transform: translateY(-3px) rotate(-4deg);
}
.perspective-cards blockquote:hover::after {
  transform: scale(1.25);
}
.perspective-cards blockquote:hover strong::before {
  width: 42px;
}
@media (max-width: 900px) {
  .grid.perspective-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .perspective-cards blockquote {
    min-height: 230px;
    padding: 4.2rem 1.5rem 1.6rem;
  }
}
.profile-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 3.5rem;
}
.profile-card {
  padding: 2rem;
  text-align: center;
  background: var(--tint);
}
.profile-card .avatar {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.4rem;
  color: var(--green);
  background: var(--white);
  border: 4px solid var(--green);
  border-radius: 50%;
  font-size: 3.5rem;
}
.profile-copy p {
  color: var(--muted);
  text-align: justify;
}
.quote-panel {
  grid-column: 1 / -1;
  padding: 1.5rem 1.8rem;
  color: var(--navy);
  background: #dce7f8;
  border-left: 5px solid var(--green);
  border-radius: 12px;
  font-weight: 600;
  font-style: italic;
}
.content-box {
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background: #dce7f8;
}
.content-box > .eyebrow {
  margin-bottom: 0.2rem;
}
.content-box p {
  color: #42546c;
  text-align: justify;
}

.service-card {
  display: flex;
  flex-direction: column;
}
.service-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0.3rem 0 1.5rem;
  color: var(--muted);
  list-style: none;
}
.service-card li {
  display: flex;
  gap: 0.6rem;
}
.service-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}
.service-card .button {
  margin-top: auto;
  align-self: flex-start;
}
.product-note-section .container {
  width: min(1460px, calc(100% - 2rem));
}
.product-note-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}
.product-note-grid .service-card {
  align-self: start;
  height: 520px;
}
.product-note-grid .service-card.is-expanded {
  height: auto;
}
.product-note-grid .service-card .button {
  margin-top: 1rem;
}
.product-price-highlight {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.3rem 0.62rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(10, 94, 20, 0.16);
  font-family: Poppins, sans-serif;
  font-size: 0.92em;
  line-height: 1.2;
}
.product-disclosure-card {
  overflow: hidden;
}
.product-disclosure-content {
  position: relative;
  max-height: 16.5rem;
  overflow: hidden;
  transition: max-height 420ms ease;
}
.product-disclosure-card.is-expanded .product-disclosure-content {
  max-height: var(--expanded-height, 5000px);
}
.product-disclosure-content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3.2rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 76%);
}
.product-disclosure-card.is-expanded .product-disclosure-content::after {
  opacity: 0;
}
.product-disclosure-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.15rem;
}
.product-disclosure-actions .button {
  margin-top: 0;
}
.product-disclosure-toggle {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 10px 22px rgba(10, 45, 111, 0.15);
}
.product-disclosure-toggle:hover,
.product-disclosure-toggle:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10, 45, 111, 0.24);
}
.product-disclosure-toggle:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(10, 45, 111, 0.18);
}
.subscription-modal[hidden] {
  display: none;
}
.subscription-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.subscription-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 79, 0.62);
  backdrop-filter: blur(4px);
}
.subscription-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 760px);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  outline: none;
}
.subscription-modal__dialog h2 {
  margin-bottom: 1rem;
  padding-right: 3rem;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}
.subscription-modal__form {
  border: 0;
  box-shadow: none;
}
.subscription-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}
.subscription-modal__close:hover,
.subscription-modal__close:focus-visible {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}
.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
}
.process-item {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(145deg, var(--white), #f7faff);
  border: 1px solid #cddbee;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(10, 45, 111, 0.09);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.process-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--green-light), var(--blue), var(--navy));
  background-size: 220% 100%;
  animation: process-accent-flow 5s linear infinite;
  transition: height var(--transition);
}
.process-item::before {
  counter-increment: process;
  content: "0" counter(process);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  background: linear-gradient(135deg, #c4d0e6,#476ec1 );
  border-radius: 16px;
  box-shadow: 0 9px 22px rgba(30, 79, 168, 0.24);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 800;
  animation: process-badge-float 4s ease-in-out infinite;
}
.process-item:nth-child(even)::before {
  background: linear-gradient(135deg, #92ce99, #326a3a);
  box-shadow: 0 9px 22px rgba(10, 94, 20, 0.2);
  animation-delay: -2s;
}
.process-item h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
  transition:
    color var(--transition),
    transform var(--transition);
}
.process-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}
.process-item:hover {
  border-color: #9ebbe2;
  box-shadow: 0 22px 48px rgba(10, 45, 111, 0.15);
  transform: translateY(-7px);
}
.process-item:hover::after {
  height: 7px;
}
.process-item:hover h3 {
  color: var(--blue);
  transform: translateX(4px);
}
.process-item.reveal {
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow var(--transition),
    border-color var(--transition);
}
.process-item.reveal.visible:hover {
  transform: translateY(-7px) perspective(700px) rotateX(1.5deg);
}

@keyframes process-accent-flow {
  to {
    background-position: -220% 0;
  }
}

@keyframes process-badge-float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.6rem;
}
.knowledge-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.knowledge-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}
.knowledge-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8eef7;
}
.knowledge-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}
.knowledge-card:hover .knowledge-thumb img {
  transform: scale(1.055);
}
.platform-badge {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.7rem;
  color: var(--white);
  background: rgba(6, 31, 79, 0.9);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(7px);
}
.knowledge-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem;
}
.knowledge-body p {
  color: var(--muted);
}
.knowledge-body .button {
  margin-top: auto;
  align-self: flex-start;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.filter-button {
  padding: 0.6rem 1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
}
.filter-button.active,
.filter-button:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.knowledge-card[hidden] {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  align-items: stretch;
  gap: 1.4rem;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
}
.pricing-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-dark), var(--blue));
  border-color: var(--blue);
  transform: translateY(-8px);
}
.pricing-card.featured h2,
.pricing-card.featured h3,
.pricing-card.featured .price {
  color: var(--white);
}
.plan-label {
  color: var(--green);
  font-size: 1.75rem;
  font-weight: 500;
  /* letter-spacing: 0.12em; */
  text-transform: uppercase;
}
.pricing-card.featured .plan-label {
  color: #9dffad;
}
.price {
  margin: 0.7rem 0 1.2rem;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}
.price small {
  font-family: Poppins, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}
.pricing-card ul {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
  list-style: none;
}
.pricing-card li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--green-light);
  font-weight: 800;
}
.pricing-card .button {
  margin-top: auto;
}
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
}
.contact-panel {
  width: min(1200px, 100%);
  justify-self: center;
  padding: 2rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-dark), var(--blue));
}
.contact-panel p {
  max-width: 760px;
}
.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
  list-style: none;
}
.contact-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.8rem;
  align-items: start;
}
.contact-list i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 10px;
}
.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.field {
  display: grid;
  gap: 0.45rem;
}
.field-full {
  grid-column: 1 / -1;
}
.field label {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8d5e7;
  border-radius: 9px;
  outline: none;
  transition:
    border var(--transition),
    box-shadow var(--transition);
}
.field textarea {
  min-height: 135px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 79, 168, 0.11);
}
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--tint);
  border: 1px solid #c8d5e7;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}
.terms-checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  accent-color: var(--green);
}
.terms-checkbox a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.terms-checkbox:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 79, 168, 0.11);
}
.form-notice {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  color: #075b11;
  background: #e7f7e9;
  border: 1px solid #a8daad;
  border-radius: 9px;
}
.form-notice.show {
  display: block;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 2.5rem;
}
.legal-nav {
  position: sticky;
  top: 110px;
  padding: 1.25rem;
}
.legal-nav h2 {
  font-size: 1.2rem;
}
.legal-nav a {
  display: block;
  padding: 0.55rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.legal-nav a:hover {
  color: var(--green);
}
.legal-content {
  padding: clamp(1.5rem, 4vw, 2.7rem);
}
.legal-content section + section {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content ul {
  padding-left: 1.2rem;
}
.important-disclaimer {
  padding: 2.2rem 0;
  /* background: linear-gradient(135deg, #fff1f0, #fff8f7);
  border-top: 1px solid #efb4af;
  border-bottom: 1px solid #efb4af; */
}
.important-disclaimer-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 1.45rem 1.6rem;
  background: var(--white);
  
  /* border-left: 6px solid #b42318; */
  border-radius: 15px;
  /* box-shadow: 0 14px 34px rgba(180, 35, 24, 0.12); */
}
.important-disclaimer-spaced {
  margin-bottom: 30px;
  padding: 1.5rem;
}
.important-disclaimer-inner::after {
  content: "!";
  position: absolute;
  right: 1.5rem;
  color: rgba(180, 35, 24, 0.07);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
}
.important-disclaimer-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #8f1d15;
  background: linear-gradient(135deg, #ffd8d4, #ffb9b2);
  border: 1px solid #e88f87;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(180, 35, 24, 0.18);
  font-size: 1.25rem;
}
.important-disclaimer-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #a3241a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.important-disclaimer h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.important-disclaimer p {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0;
  color: #5e2723;
  font-weight: 500;
  line-height: 1.7;
}
.compliance-documents {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 94% 6%, rgba(79, 142, 247, 0.1), transparent 24%),
    var(--soft);
}
.disclosures {
  display: grid;
  gap: 1rem;
}
.disclosure {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(10, 45, 111, 0.07);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
.disclosure:hover,
.disclosure[open] {
  border-color: #adc4e5;
  box-shadow: 0 18px 42px rgba(10, 45, 111, 0.12);
}
.disclosure[open] {
  transform: translateY(-2px);
}
.disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(135deg, #ffffff, #f5f8fd);
}
.disclosure summary::-webkit-details-marker {
  display: none;
}
.disclosure summary h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
}
.disclosure__chevron {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--green);
  transition: transform var(--transition);
}
.disclosure[open] .disclosure__chevron {
  transform: rotate(180deg);
}
.disclosure__body {
  padding: 0.4rem clamp(1.25rem, 4vw, 2rem) 2rem;
  border-top: 1px solid #e5edf7;
}
.disclosure__body h4 {
  margin: 1.6rem 0 0.7rem;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.disclosure__body p,
.disclosure__body li {
  color: #465a73;
  line-height: 1.75;
}
.disclosure__body ol,
.disclosure__body ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.35rem;
}
.disclosure__body li > ul,
.disclosure__body li > ol {
  margin-top: 0.55rem;
}
.disclosure__body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.terms-consent {
  padding: 1rem 1.1rem;
  color: #344966;
  background: #eef4fd;
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  font-style: italic;
}
.mono {
  font-family: Consolas, "Courier New", monospace;
  letter-spacing: 0.02em;
}
.pdf-list {
  padding-left: 0 !important;
  list-style: none;
}
.pdf-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0.9rem;
  background: #f2f6fc;
  border: 1px solid #d8e3f2;
  border-radius: 9px;
  text-decoration: none !important;
}
.pdf-link::before {
  content: "\f1c1";
  color: #c0392b;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.compliance-muted {
  color: var(--muted) !important;
}
.compliance-small {
  font-size: 0.875rem;
}
.compliance-space-top {
  margin-top: 1rem;
}
.process-section-block {
  margin-bottom: 30px;
}
.compliance-heading {
  margin-bottom: 0;
  padding-top: 50px;
}
@media (max-width: 620px) {
  .important-disclaimer-inner {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .compliance-documents {
    padding: 3.3rem 0;
  }
  .disclosure summary {
    min-height: 68px;
    padding: 1rem;
  }
  .disclosure summary h3 {
    font-size: 1.05rem;
  }
  .disclosure__body {
    padding: 0.25rem 1rem 1.5rem;
  }
}

.cta-band {
  padding: 4rem 0;
  color: var(--ink);
  background: #dfeaf1;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.cta-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 4.5rem 0 1.3rem;
  color:white;
  background: #061f4f;
  /* background: white; */
 /* background:  linear-gradient(135deg, var(--navy-dark), var(--blue)); */
 
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(160px, 0.8fr) minmax(240px, 1.2fr);
  gap: 2.5rem;
}
.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1rem;
  padding: 4px;
  background: var(--white);
  border-radius: 8px;
}
.site-footer h2 {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
}
.site-footer p {
  font-size: 0.85rem;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 0.65rem;
  list-style: none;
}
.footer-links a,
.footer-contact a {
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #8df29a;
}
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.footer-contact i {
  margin-top: 0.3rem;
  color: #8df29a;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}
.whatsapp-button {
  position: fixed;
  z-index: 900;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 1.8rem;
  transition: transform var(--transition);
}
.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-link {
    padding-inline: 0.55rem;
    font-size: 0.78rem;
  }
  .nav-cta {
    padding-inline: 0.8rem;
    font-size: 0.76rem;
  }
  .product-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 82px;
  }
  .section {
    padding: 3.75rem 0;
  }
  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .primary-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    width: min(390px, 100vw);
    height: auto;
    display: block;
    padding: 1.2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background: var(--white);
    box-shadow: -15px 25px 35px rgba(10, 45, 111, 0.12);
    transform: translateX(100%);
    will-change: transform;
    transition:
      transform 240ms ease,
      visibility 240ms ease;
  }
  .primary-nav.open {
    visibility: visible;
    transform: translateX(0);
  }
  .primary-nav > .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-link::after {
    display: none;
  }
  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0.3rem 0 0.3rem 1rem;
    visibility: visible;
    opacity: 1;
    border: 0;
    box-shadow: none;
    transform: none;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
    transform: none;
  }
  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown.open:hover .dropdown-menu,
  .nav-dropdown.open:focus-within .dropdown-menu {
    display: block;
  }
  .dropdown-menu .nav-link {
    padding: 0.75rem 0.9rem;
  }
  .primary-nav .mobile-nav-cta {
    width: 100%;
    display: inline-flex;
    margin-top: 1rem;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .profile-grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }
  .contact-list {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 2.75rem;
    padding-block: 4rem;
  }
  .hero-panel {
    width: min(560px, 100%);
    margin-inline: auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body::before,
  .hero::before,
  .hero::after,
  .page-hero::after {
    display: none;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.35rem);
  }
  .hero-copy .lead {
    font-size: 1rem;
  }
  .hero-form-panel {
    justify-self: center;
  }
  .page-hero {
    padding-block: 2.5rem;
  }
  .process-item,
  .process-item::before {
    animation: none;
  }
}

@media (max-width: 620px) {
  body {
    padding-top: 72px;
  }
  .container {
    width: min(100% - 1.25rem, 1180px);
  }
  .site-header {
    height: 72px;
  }
  .brand img {
    height: 50px;
  }
  .primary-nav {
    top: 72px;
  }
  .section {
    padding: 3rem 0;
  }
  .hero-grid {
    gap: 2rem;
    padding-block: 2.75rem;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .hero-copy .lead {
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .hero-actions {
    gap: 0.7rem;
    margin-top: 1.5rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-form-panel {
    border-radius: 18px;
  }
  .research-access-form {
    padding: 1.2rem;
  }
  .research-form-heading h2 {
    font-size: 1.18rem;
  }
  .hero-badge {
    right: 0.4rem;
    bottom: 1.2rem;
  }
  .stats-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .knowledge-grid,
  .product-note-grid,
  .pricing-grid,
  .process-list,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .field-full {
    grid-column: auto;
  }
  .product-disclosure-actions {
    justify-content: stretch;
  }
  .product-disclosure-actions .button {
    width: 100%;
  }
  .product-note-grid .service-card {
    height: 460px;
  }
  .product-note-grid .service-card.is-expanded {
    height: auto;
  }
  .product-disclosure-content {
    max-height: 14rem;
  }
  .page-hero {
    padding: 2.25rem 0;
  }
  .page-hero h1 {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }
  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .cta-inner .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    gap: 0.65rem;
  }
  .important-disclaimer-inner::after {
    display: none;
  }
  .important-disclaimer-spaced {
    padding: 1.25rem;
  }
  .compliance-heading {
    padding-top: 36px;
  }
}

@media (hover: none), (pointer: coarse) {
  .reveal,
  .process-item.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .process-item,
  .process-item::before {
    animation: none;
  }
  .button:hover,
  .feature-card:hover,
  .service-card:hover,
  .value-card:hover,
  .knowledge-card:hover,
  .perspective-cards blockquote:hover,
  .process-item:hover,
  .process-item.reveal.visible:hover,
  .whatsapp-button:hover {
    transform: none;
  }
  .knowledge-card:hover .knowledge-thumb img,
  .perspective-cards blockquote:hover::after {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
