:root {
  --ink: #172044;
  --muted: #5f6b8d;
  --soft: #eef4fb;
  --paper: #ffffff;
  --line: #dfe6f2;
  --navy: #17245f;
  --indigo: #5535a6;
  --blue: #177bd8;
  --cyan: #20b7d4;
  --coral: #ff552f;
  --amber: #f5b800;
  --green: #35ba72;
  --lilac: #8762c9;
  --shadow: 0 18px 42px rgba(24, 35, 82, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.svg-defs {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 8%;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(223, 230, 242, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(154px, 14vw, 194px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  color: #253071;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 0.6rem 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.22rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.nav-login,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0.85rem 1.75rem;
  color: #fff;
  background: var(--indigo);
  box-shadow: 0 12px 26px rgba(85, 53, 166, 0.22);
  white-space: nowrap;
}

.nav-login {
  padding: 0.82rem 1.2rem;
  color: var(--indigo);
  background: rgba(85, 53, 166, 0.08);
  border: 1px solid rgba(85, 53, 166, 0.18);
  white-space: nowrap;
}

.site-nav .nav-cta {
  padding: 0.85rem 1.9rem;
}

.site-nav .nav-login {
  padding: 0.82rem 1.35rem;
}

.button {
  padding: 1rem 1.35rem;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 16px 28px rgba(255, 85, 47, 0.25);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

.nav-cta:hover,
.nav-login:hover,
.nav-cta:focus-visible,
.nav-login:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 10px;
}

.hero {
  color: #fff;
  background: linear-gradient(135deg, #1c246c 0%, #1975c7 55%, #22b8d4 100%);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 4.5rem;
  align-items: center;
  padding: 4.4rem 0 3.2rem;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe28a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: 3.2rem;
  line-height: 1.08;
}

.hero-text {
  max-width: 550px;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.3rem;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-list svg {
  color: #9ef1d8;
}

.hero-video {
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 28px 68px rgba(11, 28, 85, 0.28);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 0.85rem;
  background: #eef4fb;
}

.hero-video-player,
.hero-video-embed {
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.hero-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame.is-playing .hero-video-player,
.video-frame.is-playing .hero-video-embed {
  display: block;
}

.video-frame.is-playing .video-poster {
  display: none;
}

.video-poster {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(23, 32, 68, 0.84), rgba(85, 53, 166, 0.68)),
    radial-gradient(circle at 24% 30%, rgba(255, 85, 47, 0.52), transparent 28%),
    radial-gradient(circle at 72% 24%, rgba(32, 183, 212, 0.48), transparent 30%),
    linear-gradient(135deg, #1c246c, #177bd8);
  border-radius: 8px;
  cursor: pointer;
}

.video-poster::before,
.video-poster::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.video-poster::before {
  width: 76%;
  aspect-ratio: 1;
  transform: translate(-28%, 18%);
}

.video-poster::after {
  width: 58%;
  aspect-ratio: 1;
  transform: translate(42%, -24%);
}

.video-logo {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(10, 18, 57, 0.18);
}

.video-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-play {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #fff;
  background: var(--coral);
  border: 3px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  box-shadow: 0 22px 42px rgba(255, 85, 47, 0.32);
}

.video-play svg {
  width: 2.1rem;
  height: 2.1rem;
  margin-left: 0.2rem;
  fill: currentColor;
  stroke-width: 1.4;
}

.video-pill,
.video-duration {
  position: absolute;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  color: #fff;
  background: rgba(10, 18, 57, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  font-weight: 850;
}

.video-pill {
  left: 1rem;
}

.video-duration {
  right: 1rem;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.video-meta p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 720;
}

.video-meta span {
  flex: 0 0 auto;
  color: var(--indigo);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-benefits {
  padding: 1.35rem 0 0;
  background: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card,
.feature-card,
.pricing-card,
.news-card,
.faq-grid details {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 230, 242, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: center;
  min-height: 144px;
  padding: 1.2rem;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border-radius: 50%;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.12);
}

.icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.icon.purple {
  background: var(--indigo);
}

.icon.blue {
  background: var(--blue);
}

.icon.amber {
  color: #3a2b00;
  background: var(--amber);
}

.icon.coral {
  background: var(--coral);
}

.icon.lilac {
  background: var(--lilac);
}

.mini-card h2,
.feature-card h3,
.step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.22rem;
  line-height: 1.18;
}

.mini-card p,
.feature-card p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 620;
}

.mini-card p {
  grid-column: 2;
}

.section {
  padding: 4.7rem 0 0;
  background: #fff;
}

.section-heading {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 1.6rem;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0.55rem;
  color: var(--indigo);
  font-size: 2rem;
  line-height: 1.18;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 620;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 226px;
  padding: 1.25rem;
  text-align: center;
}

.feature-card .icon {
  margin-bottom: 0.95rem;
}

.feature-card.compact {
  min-height: 190px;
}

.how-section {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}

.step {
  position: relative;
  text-align: center;
  counter-increment: steps;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 34px;
  right: -1.1rem;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  border-top: 2px solid var(--indigo);
  border-right: 2px solid var(--indigo);
  transform: rotate(45deg);
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 0.9rem;
  color: var(--indigo);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(24, 35, 82, 0.11);
}

.step:nth-child(2) .step-icon {
  color: var(--blue);
}

.step:nth-child(3) .step-icon {
  color: var(--amber);
}

.step:nth-child(4) .step-icon {
  color: var(--coral);
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
}

.step h3::before {
  content: counter(steps) ". ";
}

.audience-section {
  background: #f7fbff;
}

.pricing-section {
  padding: 4.7rem 0 0;
  background: #f7fbff;
}

.pricing-card {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.45rem 2rem 1.25rem;
  text-align: center;
  border: 2px solid rgba(85, 53, 166, 0.55);
  box-shadow: 0 24px 54px rgba(24, 35, 82, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.25rem 0.75rem;
  color: #322600;
  background: var(--amber);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 0 1.1rem;
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-size: 2rem;
  line-height: 1;
}

.price-line .price {
  color: var(--indigo);
  font-size: 3.2rem;
}

.price-line span {
  color: var(--muted);
  font-weight: 750;
}

.included {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin: 1.25rem 0 1.35rem;
  text-align: left;
}

.included ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.included li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
}

.included svg {
  flex: 0 0 auto;
  color: var(--indigo);
}

.pricing-button {
  min-width: min(100%, 420px);
}

.pricing-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.faq-section {
  padding-bottom: 4.3rem;
  background: #f7fbff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid details {
  padding: 1.1rem 1.25rem;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #263274;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  content: "";
  border-right: 2px solid var(--indigo);
  border-bottom: 2px solid var(--indigo);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-grid details[open] summary::after {
  transform: rotate(225deg);
}

.faq-grid p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 620;
}

.news-section {
  padding: 4.7rem 0 4.3rem;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.articles-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.articles-sidebar {
  position: sticky;
  top: 96px;
}

.articles-sidebar-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid rgba(223, 230, 242, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(24, 35, 82, 0.08);
}

.articles-sidebar-card .eyebrow {
  margin-bottom: 0.25rem;
}

.articles-sidebar-title,
.articles-results-head h2 {
  margin-bottom: 0;
  color: var(--navy);
}

.category-sidebar {
  display: grid;
  gap: 0.55rem;
}

.category-sidebar-link {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid rgba(223, 230, 242, 0.92);
  border-radius: 8px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.category-sidebar-link span {
  line-height: 1.35;
}

.category-sidebar-link strong {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0.2rem 0.55rem;
  color: #522f00;
  background: rgba(245, 184, 0, 0.24);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.category-sidebar-link:hover,
.category-sidebar-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(85, 53, 166, 0.24);
  box-shadow: 0 14px 30px rgba(24, 35, 82, 0.1);
}

.category-sidebar-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(85, 53, 166, 0.98), rgba(23, 123, 216, 0.92));
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(58, 52, 142, 0.24);
}

.category-sidebar-link.is-active strong {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.articles-results {
  display: grid;
  gap: 1rem;
}

.articles-results-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(223, 230, 242, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(24, 35, 82, 0.07);
}

.articles-results-head .eyebrow {
  margin-bottom: 0.3rem;
}

.articles-results-count {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  color: var(--indigo);
  background: rgba(85, 53, 166, 0.08);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.news-grid,
.news-list {
  display: grid;
  gap: 1rem;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-list {
  grid-template-columns: 1fr;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-card:hover {
  border-color: rgba(85, 53, 166, 0.28);
  box-shadow: 0 22px 48px rgba(24, 35, 82, 0.16);
  transform: translateY(-3px);
}

.news-card-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: inherit;
  color: inherit;
  outline: none;
}

.news-card-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(85, 53, 166, 0.18);
}

.news-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef4fb;
  border-bottom: 1px solid rgba(223, 230, 242, 0.86);
}

.news-grid .news-image {
  height: clamp(112px, 10vw, 138px);
  aspect-ratio: auto;
}

.news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.news-meta {
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.72rem;
  color: #522f00;
  background: rgba(245, 184, 0, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.news-card h2,
.news-card h3 {
  margin-bottom: 0.7rem;
  color: var(--navy);
  line-height: 1.2;
}

.news-card h2 {
  font-size: 1.38rem;
}

.news-card h3 {
  font-size: 1.18rem;
}

.news-card p:not(.news-meta) {
  margin-bottom: 1.05rem;
  color: var(--muted);
  font-weight: 620;
}

.news-read {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--indigo);
  font-weight: 850;
}

.news-card-link:hover .news-read,
.news-card-link:focus-visible .news-read {
  color: var(--coral);
}

.news-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.news-card-wide {
  min-height: 0;
}

.news-card-home {
  min-height: 0;
}

.news-card-wide .news-card-link {
  display: flex;
  flex-direction: column;
}

.news-card-wide p:not(.news-meta) {
  margin-bottom: 1rem;
}

.articles-pagination {
  margin-top: 1.7rem;
}

.aicm-pagination {
  display: grid;
  gap: 0.95rem;
  justify-items: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(223, 230, 242, 0.92);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(24, 35, 82, 0.08);
}

.aicm-pagination-summary {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.aicm-pagination-summary strong {
  color: var(--navy);
  font-weight: 850;
}

.aicm-pagination-bar,
.aicm-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.aicm-pagination-arrow,
.aicm-pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.9rem;
  color: var(--indigo);
  background: #fff;
  border: 1px solid rgba(195, 206, 227, 0.92);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(24, 35, 82, 0.08);
  font-size: 0.96rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.aicm-pagination-arrow:hover,
.aicm-pagination-arrow:focus-visible,
.aicm-pagination-page:hover,
.aicm-pagination-page:focus-visible {
  color: var(--coral);
  border-color: rgba(85, 53, 166, 0.3);
  box-shadow: 0 14px 28px rgba(24, 35, 82, 0.12);
  transform: translateY(-1px);
}

.aicm-pagination-page.is-active {
  color: #fff;
  background: linear-gradient(135deg, #25398a 0%, #246bb9 55%, #5b2ba1 100%);
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(37, 57, 138, 0.26);
}

.aicm-pagination-arrow.is-disabled {
  color: rgba(37, 48, 113, 0.42);
  background: #f2f5fb;
  border-color: rgba(223, 230, 242, 0.96);
  box-shadow: none;
  pointer-events: none;
}

.aicm-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 44px;
  color: var(--muted);
  font-weight: 800;
}

.cta-band {
  color: #fff;
  background: linear-gradient(135deg, #25398a 0%, #246bb9 52%, #5b2ba1 100%);
}

.cta-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.6rem;
  align-items: center;
  min-height: 156px;
  padding: 1.6rem 0;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: var(--indigo);
  background: #fff;
  border-radius: 50%;
}

.cta-icon svg {
  width: 2.35rem;
  height: 2.35rem;
}

.cta-inner h2 {
  margin-bottom: 0.35rem;
  font-size: 2rem;
  line-height: 1.15;
}

.cta-inner p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 620;
}

.site-footer {
  padding: 2rem 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  background: #151d54;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(120px, 0.7fr));
  gap: 2rem;
}

.footer-brand {
  width: fit-content;
}

.footer-brand .brand-logo {
  width: 196px;
}

.site-footer p {
  max-width: 270px;
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
}

.site-footer h2 {
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.site-footer a {
  font-size: 0.88rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 1.7rem;
}

.copyright {
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.subpage-main {
  background: #f7fbff;
}

.subpage-hero {
  color: #fff;
  background: linear-gradient(135deg, #1c246c 0%, #1e78c9 58%, #5535a6 100%);
}

.subpage-hero-inner {
  padding: 4.5rem 0;
}

.subpage-hero .eyebrow {
  color: #ffe28a;
}

.subpage-hero h1 {
  max-width: 780px;
  margin-bottom: 0.9rem;
  font-size: 3rem;
  line-height: 1.08;
}

.subpage-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  font-weight: 650;
}

.subpage-section {
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-panel,
.info-card,
.legal-card {
  background: #fff;
  border: 1px solid rgba(223, 230, 242, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 1.4rem;
}

.form-errors,
.form-status {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 680;
}

.form-status {
  color: #35507b;
  background: #eef4fb;
  border: 1px solid rgba(201, 215, 235, 0.96);
}

.form-status.is-success {
  color: #0f6332;
  background: #edf9f1;
  border-color: rgba(44, 154, 92, 0.24);
}

.form-status.is-error,
.form-errors {
  color: #7b2132;
  background: #fff2f4;
  border: 1px solid rgba(220, 79, 114, 0.22);
}

.form-errors p {
  margin-bottom: 0.55rem;
  color: inherit;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-security {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.contact-security label {
  display: grid;
  gap: 0.4rem;
}

.contact-security-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 620;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.full-field {
  grid-column: 1 / -1;
}

.contact-panel label {
  display: grid;
  gap: 0.4rem;
  color: #253071;
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-panel textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 123, 216, 0.14);
}

.form-status[hidden] {
  display: none;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.25rem;
}

.info-card h2,
.legal-card h2 {
  margin-bottom: 0.5rem;
  color: var(--indigo);
  font-size: 1.28rem;
  line-height: 1.18;
}

.info-card p,
.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 640;
}

.accent-card {
  color: #fff;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  border-color: rgba(255, 255, 255, 0.4);
}

.accent-card h2,
.accent-card p {
  color: #fff;
}

.info-list,
.legal-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.info-list div,
.legal-list div {
  display: grid;
  gap: 0.18rem;
}

.info-list dt,
.legal-list dt {
  color: #253071;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-list dd,
.legal-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 680;
}

.legal-section {
  background: #f7fbff;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.35rem;
}

.legal-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-list {
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.article-main {
  background: #f7fbff;
}

.article-hero {
  padding-bottom: 3.2rem;
}

.article-shell {
  position: relative;
  width: min(920px, calc(100% - 40px));
  margin: -3rem auto 4.4rem;
}

.article-body {
  margin-top: 0;
  padding: 2.2rem;
  background: #fff;
  border: 1px solid rgba(223, 230, 242, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-lead {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 720;
}

.article-body h2 {
  margin: 2rem 0 0.65rem;
  color: var(--indigo);
  font-size: 1.45rem;
  line-height: 1.22;
}

.article-body p {
  color: var(--muted);
  font-weight: 640;
}

.article-callout {
  margin: 2rem 0;
  padding: 1.15rem 1.25rem;
  color: var(--ink);
  background: #eef4fb;
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  font-weight: 680;
}

.article-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  margin-top: 2.1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.article-footer-nav a {
  color: var(--indigo);
  font-weight: 850;
}

.article-footer-nav a:hover,
.article-footer-nav a:focus-visible {
  color: var(--coral);
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 5%;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.88rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-video {
    max-width: 760px;
  }

  .card-grid.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.nav-open::before {
    position: fixed;
    inset: 76px 0 0;
    z-index: 11;
    content: "";
    background: rgba(15, 23, 66, 0.34);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    z-index: 12;
    display: grid;
    gap: 0.1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.45rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .benefit-grid,
  .card-grid.four,
  .news-grid,
  .news-list,
  .steps,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    gap: 2rem 1.2rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .cta-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cta-inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .aicm-pagination {
    padding: 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .legal-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  body.nav-open::before {
    inset: 68px 0 0;
  }

  .site-nav {
    top: 68px;
  }

  .brand-logo {
    width: 144px;
  }

  .hero-inner {
    width: min(100% - 32px, 560px);
    gap: 1.8rem;
    padding: 2.6rem 0 2.1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 0.55rem;
  }

  .subpage-hero-inner {
    width: min(100% - 32px, 560px);
    padding: 3rem 0;
  }

  .subpage-hero h1 {
    font-size: 2.15rem;
  }

  .subpage-hero p:last-child {
    font-size: 1rem;
  }

  .subpage-section {
    padding: 2.5rem 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    padding: 0.65rem;
  }

  .video-meta {
    display: grid;
    gap: 0.45rem;
  }

  .video-meta span {
    justify-self: start;
  }

  .video-play {
    width: 68px;
    height: 68px;
  }

  .video-logo {
    width: 46px;
    height: 46px;
  }

  .video-pill,
  .video-duration {
    min-height: 30px;
    font-size: 0.78rem;
  }

  .section {
    padding-top: 3.4rem;
  }

  .quick-benefits {
    padding-top: 1rem;
  }

  .benefit-grid,
  .card-grid.five,
  .card-grid.four,
  .news-grid,
  .news-list,
  .steps,
  .faq-grid,
  .included,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: auto;
  }

  .mini-card p {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .cta-inner h2 {
    font-size: 1.65rem;
  }

  .feature-card,
  .feature-card.compact,
  .news-card {
    min-height: auto;
  }

  .news-section {
    padding: 3.4rem 0;
  }

  .article-shell {
    width: min(100% - 32px, 560px);
    margin: -2rem auto 3rem;
  }

  .article-body {
    padding: 1.3rem;
  }

  .article-lead {
    font-size: 1.04rem;
  }

  .article-body h2 {
    font-size: 1.25rem;
  }

  .pricing-section {
    padding-top: 3.4rem;
  }

  .pricing-card {
    padding: 1.2rem;
  }

  .price-line {
    gap: 0.4rem;
  }

  .price-line strong {
    font-size: 1.5rem;
  }

  .price-line .price {
    font-size: 2.55rem;
  }

  .articles-layout {
    grid-template-columns: 1fr;
  }

  .articles-sidebar {
    position: static;
  }

  .articles-sidebar-card,
  .articles-results-head {
    padding: 1rem;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .cta-icon,
  .cta-inner .button {
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .hero-inner,
  .section-inner,
  .section-heading,
  .pricing-card,
  .article-shell {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 1.95rem;
  }

  .video-logo {
    top: 0.75rem;
    left: 0.75rem;
  }

  .video-pill {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .video-duration {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .video-meta {
    padding: 0.85rem;
  }

  .copyright {
    white-space: normal;
  }

  .aicm-pagination-arrow,
  .aicm-pagination-page {
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
  }

  .footer-grid {
    gap: 1.3rem;
  }
}
