@charset "UTF-8";
.container {
  max-width: 1250px !important;
}

.ready-card {
  background: #0f141a;
  color: #e9eef4;
  border-radius: 12px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.ready-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 40px 40px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 64px 64px;
  opacity: 0.6;
  pointer-events: none;
}

.ready-title {
  font-weight: 600;
  color: #e9eef4;
}

.ready-sub {
  color: #b9c2cc;
  font-size: 1.1rem;
}

.btn-outline-gold {
  border: 1px solid #e0b82c;
  color: #e0b82c;
  background: #0f141a;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-gold:hover {
  background: #e0b82c;
  color: #0f141a;
}

.ready-visual {
  position: relative;
  height: 320px;
}

.ready-people {
  position: absolute;
  right: 20px;
  bottom: 0;
  display: flex;
  align-items: end;
  gap: 16px;
  z-index: 3;
}

.person {
  position: relative;
}

.person-1 {
  width: 160px;
  height: 240px;
}

.person-2 {
  width: 150px;
  height: 260px;
}

.person-img {
  width: 100%;
  height: 100%;
  top: -20px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.ready-shapes {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shape-1 {
  position: absolute;
  right: 60px;
  top: 40px;
  width: 320px;
  height: 180px;
  background: #e0b82c;
  border-radius: 160px/90px;
  transform: rotate(-15deg);
  box-shadow: 0 10px 30px rgba(224, 184, 44, 0.35);
}

.shape-2 {
  position: absolute;
  right: 30px;
  top: 20px;
  width: 400px;
  height: 240px;
  border-radius: 200px/120px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-10deg);
}

.ready-dots {
  position: absolute;
  right: 8px;
  top: 20px;
  width: 120px;
  height: 280px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1.5px,
    transparent 1.5px
  );
  background-size: 12px 12px;
  opacity: 0.6;
  z-index: 0;
}

.a-common-section-bg {
  background-image: url("./bg.jpg");
  min-height: 100vh;
}

.faq-title {
  font-weight: 600;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item--active {
  border: 1px solid #e0b82c;
  box-shadow: 0 8px 32px rgba(224, 184, 44, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
}

.faq-item--active .faq-text {
  color: #e0b82c;
  font-weight: 700;
}

.faq-item:not(.faq-item--active) .faq-text {
  color: #2c3138;
  font-weight: 500;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: #e0b82c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-icon i {
  line-height: 1;
}

.faq-answer {
  padding: 0 28px 24px;
  color: #5b6470;
  line-height: 1.6;
}

/* ==== (NEW) RESPONSIVE BLOCK placed right after FAQ styles ==== */
@media (max-width: 575.98px) {
  /* FAQ tap targets on mobile */
  .faq-question {
    padding: 18px 20px;
  }
  .faq-answer {
    padding: 0 20px 18px;
  }
}

/* ===========================
   RESPONSIVE ADD-ONS (SAFE)
   =========================== */

/* 1) Fluid type for key headings */
.hero .display-4 {
  font-size: clamp(24px, 3.6vw, 32px);
}
.security-title {
  font-size: clamp(20px, 2.2vw, 24px);
}
.getstarted-title {
  font-size: clamp(24px, 3.1vw, 42px);
}

/* 2) Hero slider height scales down */
@media (max-width: 1199.98px) {
  .hero-slider {
    height: 420px;
  }
}
@media (max-width: 991.98px) {
  .hero-slider {
    height: 360px;
  }
}
@media (max-width: 767.98px) {
  .hero-slider {
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  .hero-slider {
    height: 220px;
  }
}

/* 3) Floating hero bits */
@media (max-width: 1199.98px) {
  .exam-stats img {
    max-width: 86%;
    height: auto;
  }
}

/* 4) Why figure height */
@media (max-width: 1199.98px) {
  .why-figure {
    height: 420px;
  }
}
@media (max-width: 991.98px) {
  .why-figure {
    height: auto;
  }
  .why-figure img {
    height: auto;
    object-fit: cover;
  }
}

/* 5) Security dots off on tablet/phone */
@media (max-width: 991.98px) {
  .sec-dots {
    display: none;
  }
}

/* 6) Card padding on phones */
@media (max-width: 575.98px) {
  .env-card,
  .why-card,
  .sec-card {
    padding: 18px;
  }
  .env-title,
  .why-title-sm,
  .sec-title {
    margin-bottom: 6px;
  }
}

/* 7) More readable buttons/chips on phones */
@media (max-width: 575.98px) {
  .btn,
  .btn-gold,
  .btn-pill {
    padding: 10px 16px;
    font-size: 14px;
  }
  .badge-chip {
    padding: 0.6rem 0.85rem;
    font-size: 14px;
  }
}

/* 8) Hero badges/lead spacing */
@media (max-width: 767.98px) {
  .hero .lead {
    font-size: 15px !important;
  }
  .badge-chip + .badge-chip {
    margin-top: 6px;
  }
}

/* 9) Get Started panel & artwork */
@media (max-width: 1199.98px) {
  .getstarted-inner {
    height: 330px;
    padding: 48px 54px;
  }
  .people-art {
    transform: translate(6px, 56px);
    height: 112%;
  }
}
@media (max-width: 991.98px) {
  .getstarted-inner {
    height: auto;
    padding: 40px 32px;
  }
  .getstarted-image {
    justify-content: center;
  }
  .people-art {
    transform: translate(0, 24px);
    height: 100%;
    max-height: 360px;
  }
}
@media (max-width: 575.98px) {
  .people-art {
    max-height: 300px;
    transform: translate(0, 16px);
  }
}

/* 10) Header/nav options panel */
@media (max-width: 991.98px) {
  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .p365-nav {
    gap: 1rem;
  }
  .options-in-header {
    display: none !important;
  }
}

/* 11) Equal-height envx cards */
@media (max-width: 991.98px) {
  .envx-card {
    height: 100%;
  }
  .envx-card-content {
    align-items: flex-start;
  }
}

/* 12) Footer spacing */
@media (max-width: 991.98px) {
  .site-footer .row > [class*="col-"] {
    margin-bottom: 12px;
  }
}

/* 13) Safe media defaults */
img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* 14) Prevent horizontal overflow */
html,
body {
  overflow-x: hidden;
}
.hero-slider,
.why-figure,
.getstarted-inner,
.getstarted-image,
.people-art {
  max-width: 100%;
}

/* ======= continue with the rest of the original CSS ======= */

.envx-title {
  font-weight: 600;
}

.envx-cards {
  margin-top: 1rem;
}

.envx-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
}

.envx-card-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.envx-text-section {
  flex: 1;
  z-index: 11;
}

.envx-icon-section {
  flex-shrink: 0;
  position: absolute;
  right: -9px;
  top: -9px;
}

.envx-icon-large {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envx-icon-outer {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 14px solid #f0f0f0;
}

.envx-icon-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envx-glyph {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.envx-icon {
  position: absolute;
  right: 26px;
  top: -30px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #0f141a;
  display: grid;
  place-items: center;
}

.envx-icon::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 20, 26, 0.06) 50%,
    transparent 51%
  );
}

.envx-card-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.envx-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.envx-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  padding-bottom: 8px;
}

.envx-list li:last-child {
  padding-bottom: 0;
}

.envx-list li::before {
  content: "✓"; /* checkmark */
  font-weight: 900;
  color: #fff;
  background: #e0b82c;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 8px;
}

.bottom-cta {
  padding-top: 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(234, 246, 255, 0),
    rgb(234, 246, 255)
  );
}

.why-section {
  background: #eaf8fb;
}

.why-title {
  font-weight: 600;
}

.why-sub {
  color: #6f7680;
}

.why-figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.why-figure::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 20px;
  background: #e7c560;
  border-radius: 12px;
}

.why-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.why-dots {
  position: absolute;
  left: -10px;
  top: 80px;
  width: 360px;
  height: 120px;
  pointer-events: none;
}

.why-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(160, 170, 180, 0.45) 2px,
    transparent 2px
  );
  background-size: 22px 22px;
  opacity: 0.35;
}

.why-dots--top {
  left: 60px;
  top: -10px;
  width: 520px;
  height: 140px;
}

.why-dots--bottom {
  left: 60px;
  bottom: -20px;
  top: auto;
  width: 520px;
  height: 160px;
}

/* .why-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
} */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(
    90deg,
    #e0b82c 0%,
    #f0c553 30%,
    rgba(240, 197, 83, 0.5) 60%,
    transparent 100%
  );
  border-radius: 16px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.why-card .why-icon {
  margin-left: auto;
  margin-right: auto;
}

.why-card .why-desc {
  max-width: 26ch;
  margin-left: auto;
  margin-right: auto;
}

.why-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 1.4rem;
}

.why-cta span {
  transition: transform 0.2s ease;
}

.why-cta:hover span {
  transform: translateX(3px);
}

/* Footer */
.site-footer {
  background: #0f141a;
  color: #cfd6de;
  position: relative;
}

/* subtle grid pattern (both directions) */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  /* subtle square grid */
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand .brand-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
}

.footer-address {
  color: #9aa4b0;
}

.footer-heading {
  color: #fff;
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cfd6de;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffd15e;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a2230;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-circle:hover {
  background: #ffd15e;
  color: #0f141a;
  transform: translateY(-2px);
}

.footer-sep {
  border-color: rgba(255, 255, 255, 0.7254901961);
}

.footer-copy {
  color: #ffffff;
  text-align: center;
}


.why-figure {
  height: 502px;
}

.why-card--raised {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #10141a;
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.why-svg {
  width: 26px;
  height: 26px;
  color: #ffd15e;
}

.why-title-sm {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 20px;
}

.why-desc {
  color: #5b6470;
}

.text-gold {
  color: #caa13e;
}

.env-section-container {
  background: radial-gradient(
      ellipse at 70% 30%,
      rgba(255, 250, 240, 0.8) 0%,
      rgba(248, 252, 250, 0.6) 40%,
      rgba(240, 248, 245, 0.4) 70%,
      rgba(235, 245, 240, 0.2) 100%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(252, 250, 245, 0.7) 50%,
      rgba(245, 250, 248, 0.5) 100%
    );
}

.env-section {
  position: relative;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #a0a7b0;
}

.heading-tight {
  line-height: 1.15;
}

.subhead {
  color: #6f7680;
}

/* .env-card {
  background: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
} */

.env-icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  margin: 0 auto 28px;
  background: #10141a;
  color: #fff;
  border-radius: 14px;
  font-size: 28px;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.env-card:hover .env-icon {
  background: #caa13e;
}
.env-card:hover .env-title {
  color: #caa13e;
}

.env-icon--circle {
  border-radius: 14px;
}

.env-svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.env-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.env-desc {
  color: #5b6470;
  margin: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

/* Global section rhythm */
.py-lg-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.section-tight h2,
.section-tight .display-6,
.section-tight .faq-title,
.section-tight .envx-title {
  margin-bottom: 1.25rem;
}

.section-tight .subhead,
.section-tight .why-sub,
.section-tight .ready-sub {
  margin-bottom: 1.75rem;
}

.bg-gradient {
  background: radial-gradient(
      1000px 600px at 70% 20%,
      rgba(255, 214, 122, 0.25),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 10% 60%,
      rgba(139, 199, 255, 0.18),
      transparent 60%
    ),
    #ffffff;
}

/* when options card is inside header, we don't need panel wrapper */
.options-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #eef0f3;
  border-radius: 12px 0 0 12px;
  padding: 3px;
  box-shadow: none;
  width: 120px;
  background-color: #eaeaea;
}

.options-card .option {
  text-align: center;
  /* background: #f8f9fa; */
  border-bottom: 1px solid #e9ecef;
  /* border-radius: 8px; */
  /* padding: 5px 4px; */
  color: #6c757d;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.3;
  min-height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.options-card .option.active {
  /* background: linear-gradient(135deg, #fff3cd, #ffeaa7); */
  color: #caa330;
  /* border-color: #ffc107; */
  font-weight: 700;
}

.brand {
  color: #212529;
}

.navbar .nav-link {
  color: #6f7680;
  font-weight: 600;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #1d2126;
}

.navbar .nav-link {
  position: relative;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.logo-hex {
  width: 28px;
  height: 28px;
}

.logo-hex-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero .display-4 {
  font-weight: 600;
  font-size: 44px;
}

.lh-tight {
  line-height: 1.1;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eaf8fb;
  border: 1px solid #e6edf4;
  color: #2b3138;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  width: fit-content;
  font-weight: 600;
}

.badge-chip .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7bd1ff, #2c90ff);
  box-shadow: 0 0 0 4px rgba(44, 144, 255, 0.12);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 9px solid #e0e0e0;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.slider-btn i {
  font-size: 18px;
  color: #333;
}
.slider-btn:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.1);
}
.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: #e0b82c;
  transform: scale(1.2);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.watch-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: none;
  color: #e0b82c;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 0;
}
.watch-demo-btn .play {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b82c, #d4a74a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(224, 184, 44, 0.3);
  padding-left: 4px;
}
.watch-demo-btn:hover {
  color: #d4a74a;
}
.watch-demo-btn:hover .play {
  background: linear-gradient(135deg, #d4a74a, #c19932);
  transform: scale(1.05);
}

.btn-gold {
  background: #cda734 !important;
  border: 0 !important;
  color: #fff !important;
  padding: 12px 24px !important;
  letter-spacing: 0.6px !important;
  border-radius: 8px !important;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.btn-pill {
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
}

.btn-gold:focus {
  outline: 3px solid rgba(224, 184, 44, 0.4) !important;
  outline-offset: 2px !important;
}

.btn-outline-gold:focus {
  outline: 3px solid rgba(224, 184, 44, 0.4) !important;
  outline-offset: 2px !important;
}

.btn-gold:hover {
  background: #d4a74a !important;
  color: #fff !important;
}

.shadow-gold {
  box-shadow: 0 10px 22px rgba(183, 143, 46, 0.28) !important;
}

.btn-outline-dark {
  border-radius: 10px !important;
}

.btn-outline-dark .play {
  font-size: 0.9rem;
}

.btn-sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-sec-cta .arrow {
  transition: transform 0.2s ease;
}

.btn-sec-cta:hover .arrow {
  transform: translateX(3px);
}

.security-section {
  padding-bottom: 4rem;
}

@media (max-width: 991.98px) {
  .security-section {
    padding-bottom: 6rem;
  }
}
.mobile-cta {
  position: sticky;
  bottom: 0;
  padding: 0.75rem 0;
  background: linear-gradient(
    180deg,
    rgba(15, 20, 26, 0),
    rgba(15, 20, 26, 0.85)
  );
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.device-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eef0f3;
  position: relative;
  overflow: hidden;
}

.device-bar {
  height: 42px;
  background: #f6f7f9;
  border-bottom: 1px solid #eef0f3;
}

.device-body {
  background: #ffffff;
}

.stat-tile {
  border-radius: 14px;
  padding: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.stat-tile .stat-value {
  font-size: 1.4rem;
  line-height: 1;
}

.stat-tile .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.95;
}

.stat-tile.blue {
  background: linear-gradient(135deg, #4ba3ff, #1e79f0);
}

.stat-tile.purple {
  background: linear-gradient(135deg, #8e7cfb, #6a5ae0);
}

.mini-chart {
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 12px;
}

.mini-title {
  font-weight: 600;
  color: #2c3138;
  font-size: 0.9rem;
}

.mini-line {
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(30, 121, 240, 0.35),
    rgba(30, 121, 240, 0)
  );
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mini-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes floatSideBySide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
.exam-stats,
.data-analytics {
  animation: floatUpDown 4s ease-in-out infinite;
}

.how-ite-works-animation {
  animation: floatUpDown 4s ease-in-out infinite;
}

.exam-stats {
  position: absolute;
  top: -90px;
  right: 20px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
}

.exam-stats .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #e8c45a, #bf9532);
  position: relative;
}

.exam-stats .lines {
  flex: 1;
  display: grid;
  gap: 6px;
}

.exam-stats .lines span {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ffdb6e, #ff8e8e);
}

.exam-stats .lines span:nth-child(2) {
  background: linear-gradient(90deg, #ffd15e, #ffa5a5);
}

.exam-stats .lines span:nth-child(3) {
  background: linear-gradient(90deg, #ffc64e, #ffdede);
}

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
}

.exam-data {
  left: -50px;
  bottom: 25px;
  animation-delay: 0.5s, 0.3s;
  animation: floatUpDown 4s ease-in-out infinite,
    floatSideBySide 3s ease-in-out infinite;
}

.data-analytics {
  right: 60px;
  bottom: -43px;
  animation-delay: 1s, 0.7s;
}

.floating-card .title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c3138;
  margin-bottom: 6px;
}

.exam-data .bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 46px;
}

.exam-data .bars span {
  display: inline-block;
  width: 8px;
  background: #e1b54e;
  border-radius: 2px;
}

.exam-data .bars span:nth-child(1) {
  height: 26px;
}
.exam-data .bars span:nth-child(2) {
  height: 34px;
  background: #e98f9a;
}
.exam-data .bars span:nth-child(3) {
  height: 18px;
  background: #f2c8cf;
}
.exam-data .bars span:nth-child(4) {
  height: 40px;
}
.exam-data .bars span:nth-child(5) {
  height: 24px;
  background: #d8b56a;
}

@media (max-width: 991.98px) {
  .floating-card {
    display: none;
  }
}

.security-section {
  position: relative;
  background: #0f141a;
  color: #cfd6de;
}

.security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 40px 40px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}

.security-title {
  color: #eef3f8;
  font-weight: 600;
  line-height: 1.2;
  font-size: 36px;
}

.text-sec-muted {
  color: #9aa4b0;
}

.why-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  min-height: 220px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  text-align: center;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    235.11deg,
    #ffffff 0.08%,
    #cfa935 50.04%,
    #ffffff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    321.11deg,
    #ffffff 0.08%,
    #cfa935 50.04%,
    #ffffff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.why-card:hover::before {
  opacity: 0;
}
.why-card:hover::after {
  opacity: 1;
}

.env-card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 18px;
  padding: 26px;
  min-height: 220px;
  box-shadow: 0px 0px 14px 0px #3540520d;
  text-align: center;
}
.env-card:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    235.11deg,
    #ffffff 0.08%,
    #cfa935 50.04%,
    #ffffff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.env-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    321.11deg,
    #ffffff 0.08%,
    #cfa935 50.04%,
    #ffffff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
/* .env-card:hover::before { 
  opacity: 0; 
}
.env-card:hover::after  { 
  opacity: 1; 
} */

.sec-card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 18px;
  padding: 26px;
  min-height: 220px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}
.sec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    235.11deg,
    #ffffff 0.08%,
    #171a24 50.04%,
    #ffffff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.sec-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    321.11deg,
    #ffffff 0.08%,
    #171a24 50.04%,
    #ffffff 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.sec-card:hover::before {
  opacity: 0;
}
.sec-card:hover::after {
  opacity: 1;
}

.sec-card--active {
  background: linear-gradient(
    135deg,
    rgba(255, 234, 160, 0.1),
    rgba(255, 214, 122, 0.08)
  );
  border-color: rgba(255, 214, 122, 0.55);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 214, 122, 0.25) inset;
}

.sec-card--focusable {
  outline: none;
}

.sec-card--focusable:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 214, 122, 0.55),
    0 22px 56px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 214, 122, 0.75);
}

.sec-card:active {
  transform: translateY(-1px) scale(0.995);
}

.sec-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #3f4c5a;
  display: grid;
  place-items: center;
  color: #1b1f26;
  margin-bottom: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* .sec-icon :hover{ background: #DCB02A; } */
.sec-svg {
  width: 20px;
  height: 20px;
}

.sec-title {
  color: #eef3f8;
  font-weight: 500;
  margin-bottom: 8px;
  min-height: 50px;
}

.sec-desc {
  color: #b7c0ca;
  margin: 0;
  font-size: 14px;
}

.sec-card:hover .sec-title {
  color: #ffe08a;
}

.sec-card:hover .sec-icon {
  background: #dcb02a;
}

.sec-card--active .sec-title {
  color: #ffd776;
}

@media (min-width: 992px) {
  .security-section .col-md-6:nth-child(1) .sec-card {
    margin-top: 8px;
  }
  .security-section .col-md-6:nth-child(2) .sec-card {
    margin-top: 0;
  }
  .security-section .col-md-6:nth-child(3) .sec-card {
    margin-top: 12px;
  }
  .security-section .col-md-6:nth-child(4) .sec-card {
    margin-top: -6px;
  }
  .security-section .col-md-6:nth-child(5) .sec-card {
    margin-top: 16px;
  }
  .security-section .col-md-6:nth-child(6) .sec-card {
    margin-top: 0;
  }
}
.sec-dots {
  position: absolute;
  height: 120px;
  right: 80px;
  bottom: 120px;
}

.sec-dots::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 280px;
  height: 120px;
  opacity: 0.25;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.32) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.2));
}

.how-section {
  background: linear-gradient(
    180deg,
    #fefefe 0%,
    #fafbfc 25%,
    #f6f8fa 50%,
    #f2f5f8 75%,
    #eef2f6 100%
  );
}

.how-dots {
  position: absolute;
  left: -24px;
  top: 0;
  width: 260px;
  height: 260px;
  pointer-events: none;
}

.how-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(186, 194, 204, 0.45) 2px,
    transparent 2px
  );
  background-size: 28px 28px;
  opacity: 0.35;
}

.how-grid {
  align-items: stretch;
}

.how-title {
  font-weight: 600;
  margin-bottom: 0;
}
.how-sub {
  color: #6f7680;
}

.how-figure {
  position: relative;
  border-radius: 28px;
}
.how-figure img {
  width: 100%;
}

.audio-chip {
  position: absolute;
  top: 150px;
  right: -37px;
}

@media (max-width: 767.98px) {
  .audio-chip {
    right: 12px;
  }

  .mobile-margin-top-20 {
    margin-top: 20px !important;
  }
}

.how-chip img {
  position: absolute;
  left: -64px;
  bottom: 150px;
}

.chip-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, #3bb0ff, #1d74d2);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.chip-value {
  font-weight: 800;
  line-height: 1;
}
.chip-label {
  color: #6f7680;
  font-size: 0.92rem;
}

.how-play {
  position: absolute;
  right: -8px;
  bottom: -7px;
  width: 155px;
  height: 155px;
  border: 0;
  border-radius: 50%;
  /* background: #ffffff; */
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 8px;
}

.how-play::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #f8f6f0 0%,
    #f0e8d0 30%,
    #e8d4a0 60%,
    #d4b04d 100%
  );
}

.how-play .play-inner {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c7a047;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #ffffff;
}

.how-play:hover .play-inner {
  transform: scale(1.05);
}

.how-steps .how-step {
  display: grid;
  grid-template-columns: 52px auto;
  gap: 24px;
  align-items: start;
  background: transparent;
  border: 0;
  padding: 6px 0;
  box-shadow: none;
}

.how-steps .how-step .step-icon {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 12px;
}

.how-steps .how-step:hover {
  transform: none;
  box-shadow: none;
}

.how-steps .step-title {
  font-weight: 600;
  font-size: 20px;
}
.how-steps .step-desc {
  color: #5b6470;
  margin-top: 2px;
}
.how-note {
  color: #6f7680;
  font-style: italic;
}

.p365-header {
  background-color: #ffffff;
}

/* Animated fixed-on-scroll header */
.navbar--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: none;
  animation: headerSlideDown 0.18s ease-out;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.getstarted-section {
  padding: 60px 0;
}

/* Panel */
.getstarted-inner {
  position: relative;
  background: #131820;
  border-radius: 20px;
  padding: 56px 64px;
  height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle grid overlay (no image needed) */
.getstarted-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
        circle at 0 0,
        transparent 18px,
        rgba(255, 255, 255, 0.04) 19px
      )
      0 0/48px 48px,
    linear-gradient(#0000, #0000);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* Typography */
.getstarted-title {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.getstarted-title .highlight {
  color: #cfa935;
}

.getstarted-subtext {
  color: #cfd3da;
  font-size: clamp(16px, 1.5vw, 20px);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.getstarted-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.getstarted-buttons .btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

/* Outline (gold) */
.getstarted-buttons .btn-outline {
  background: transparent;
  border: 1px solid #cfa935;
  color: #cfa935;
}
.getstarted-buttons .btn-outline:hover {
  background: #cfa935;
  color: #111;
}

/* Solid gold */
.getstarted-buttons .btn-primary {
  background: #cfa935;
  border: 0;
  color: #ffffff;
  box-shadow: 0 8px 26px rgba(207, 169, 53, 0.28);
}
.getstarted-buttons .btn-primary:hover {
  background: #b8942a;
  transform: translateY(-2px);
}

/* Illustration wrapper */
.getstarted-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 0;
}

/* Artwork sizing/positioning */
.people-art {
  height: 100%;
  width: auto;
  object-fit: contain;
  transform: translate(14px, 76px);
  pointer-events: none;
  user-select: none;
  display: block;
}

/* Prevent layout jump when header becomes fixed */
body.has-fixed-header .hero {
  padding-top: 1.25rem;
}

.p365-hex {
  width: 28px;
  height: 28px;
}
.p365-hex-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-text {
  color: #212529;
}

.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Ensure absolute positioning anchor for the corner options card */
.navbar .container {
  position: relative;
}

.p365-nav .nav-link {
  font-weight: 600;
}
.navbar .nav-link {
  color: rgba(0, 0, 0, 0.8705882353);
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #cda734;
}

/* Brand typography to match mock */
.brand {
  font-weight: 800;
  font-size: 1.35rem;
}

/* Nav link sizing and spacing */
.p365-nav {
  gap: 2.75rem;
}
.p365-nav .nav-link {
  font-size: 1rem;
  letter-spacing: 0.1px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Add breathing room between CTA and options box */
@media (min-width: 992px) {
  .navbar .btn-gold {
    margin-right: 12px;
  }
}
/* Place options card pinned to top-right inside the header on desktop */
@media (min-width: 992px) {
  .navbar .options-in-header {
    position: absolute;
    z-index: 10;
    right: 10px;
  }
}

.btn-p365 {
  background-image: linear-gradient(180deg, #d4b04d, #b78f2e);
  color: #ffffff;
  border: 0;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-p365:hover,
.btn-p365:focus {
  background-image: linear-gradient(180deg, #e0bb57, #c19932);
  color: #ffffff;
}

.btn-p365:active {
  background-image: linear-gradient(180deg, #b78f2e, #9f7b28);
  color: #ffffff;
}

.shadow-p365 {
  box-shadow: 0 8px 18px rgba(183, 143, 46, 0.3);
}

.corner-widget {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1050;
}

.corner-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e9ecef;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.corner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: transparent;
  padding-left: 0;
}

.corner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 60px;
  text-decoration: none;
  background: #f3f4f6;
  color: #8a8f98;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02) inset;
}

.corner-item .label {
  font-size: 12px;
}
.corner-item .num {
  font-size: 14px;
  font-weight: 700;
}

.corner-item.active {
  background: linear-gradient(135deg, #fff5cf, #f1dfb0);
  color: #9f7b28;
  border-color: #d1b063;
}

@media (max-width: 767.98px) {
  .corner-widget {
    display: none;
  }
}
.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm);
}
/* ===========================
   MOBILE/TABLET FIX PATCH
   =========================== */

/* General safety */
html,
body {
  overflow-x: hidden;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* ---------------------------
   HERO (image + floating cards)
   --------------------------- */
.hero-slider {
  overflow: visible; /* allow safe in-frame overlays */
  border-radius: 16px;
}
.slider-container {
  border-width: 8px;
  overflow: hidden; /* keep everything clipped to slider */
}

/* We previously hid the small cards <= 991px.
   Show them again and scale/position safely. */
@media (max-width: 991.98px) {
  .floating-card {
    display: block !important;
  }

  /* Exam stats (top-right) */
  .exam-stats {
    top: -30px !important;
    right: 20px !important;
    left: auto !important;
    transform: none !important;
    max-width: 180px;
    z-index: 2;
  }

  /* Bars (bottom-left) */
  .floating-card.exam-data {
    left: 25px !important;
    bottom: -38px !important;
    right: auto !important;
    transform: none !important;
    max-width: 150px;
    z-index: 2;
  }

  /* Analytics pie (bottom-right) */
  .floating-card.data-analytics {
    right: 25px !important;
    bottom: -38px !important;
    left: auto !important;
    transform: none !important;
    max-width: 170px;
    z-index: 2;
  }

  /* Trim border on small viewports for better fit */
  .slider-container {
    border-width: 6px;
  }
}

/* Very small phones */
@media (max-width: 575.98px) {
  .hero-slider {
    height: 260px !important;
  }
  .slider-container {
    border-width: 5px;
  }

  .exam-stats {
    max-width: 100px;
  }
  .floating-card.exam-data {
    max-width: 130px;
  }
  .floating-card.data-analytics {
    max-width: 100px;
  }
}

/* Ensure hero image always fits nicely */
.slide img {
  width: 100%;
  height: auto;
  object-fit: fill;
  object-position: center;
}

/* ---------------------------
   HOW IT WORKS photo overlays
   (fix “250k Proctors Assisted” chip)
   --------------------------- */
.how-figure {
  position: relative;
  border-radius: 24px;
}

/* That chip was hanging outside with negative left; bring it inside */

@media (max-width: 991.98px) {
  .how-chip img {
    left: 14px !important;
    bottom: 14px !important;
    max-width: 65%;
  }
}
@media (max-width: 575.98px) {
  .how-chip img {
    left: 12px !important;
    bottom: 12px !important;
    max-width: 60%;
  }
}

/* Play button was oversized on tablet—reduce and keep inside */
@media (max-width: 991.98px) {
  .how-play {
    right: 10px !important;
    bottom: 10px !important;
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 575.98px) {
  .how-play {
    right: 8px !important;
    bottom: 8px !important;
    width: 110px;
    height: 110px;
  }
}

/* ---------------------------
   GET STARTED panel artwork sizing
   --------------------------- */
@media (max-width: 1199.98px) {
  .getstarted-inner {
    height: 330px;
    padding: 44px 48px;
  }
  .people-art {
    transform: translate(0, 48px);
    height: 112%;
  }
}
@media (max-width: 991.98px) {
  .getstarted-inner {
    height: auto;
    padding: 36px 28px;
  }
  .getstarted-image {
    justify-content: center;
  }
  .people-art {
    transform: translate(0, 24px);
    height: 100%;
    max-height: 360px;
  }
}
@media (max-width: 575.98px) {
  .people-art {
    max-height: 300px;
    transform: translate(0, 16px);
  }
}

/* ---------------------------
   FAQ spacing (mobile tap targets)
   --------------------------- */
@media (max-width: 575.98px) {
  .faq-question {
    padding: 18px 20px;
  }
  .faq-answer {
    padding: 0 20px 18px;
  }
}

/* ---------------------------
   Bottom CTA (“Explore Solutions”) alignment
   --------------------------- */
/* ===== Explore CTA: desktop vs mobile fix ===== */

/* Base: don’t force full width */
.bottom-cta {
  padding-top: 2.5rem;
}
.bottom-cta .btn,
.bottom-cta .btn-gold {
  max-width: none;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px; /* keep a pleasant width on large screens */
  border-radius: 12px;
}

/* Center the button on desktop/tablet */
@media (min-width: 768px) {
  .bottom-cta {
    text-align: center;
  }
  .bottom-cta .btn,
  .bottom-cta .btn-gold {
    margin: 0 auto; /* allow centering inside text-align:center parent */
  }
}

/* Make it full-bleed and easy to tap on phones */
@media (max-width: 767.98px) {
  .bottom-cta {
    text-align: initial;
  } /* don’t affect other content on mobile */
  .bottom-cta .btn,
  .bottom-cta .btn-gold {
    display: block;
    width: 100%;
    min-width: 0;
  }
}
