/* ================================
   AUDIT AREAS
================================ */
*,
*::before
*::after {
    box-sizing: border-box;
}
.audit-areas-section {
  background-color: #f5f8fc;
}

.section-label {
  display: inline-block;
  color: #1677ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audit-areas-section h2 {
  color: #102a43;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 750;
}

.section-intro {
  max-width: 680px;
  color: #52667a;
  font-size: 1.05rem;
  line-height: 1.7;
}

.audit-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e1e9f2;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(16, 42, 67, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Blue line at the top of each card */
.audit-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #22a7f0);
  content: "";
}

.audit-card:hover {
  border-color: #b9d5ff;
  box-shadow: 0 16px 35px rgba(16, 42, 67, 0.13);
  transform: translateY(-6px);
}

.audit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #0d6efd, #22a7f0);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.22);
}

.audit-card h3 {
  margin-bottom: 0.8rem;
  color: #102a43;
  font-size: 1.25rem;
  font-weight: 700;
}

.audit-card p {
  margin-bottom: 0;
  color: #52667a;
  line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .audit-areas-section {
    padding-right: 0.35rem;
    padding-left: 0.35rem;
  }

  .audit-card {
    padding: 1.6rem;
  }

  /* Hover movement can feel awkward on touchscreens */
  .audit-card:hover {
    transform: none;
  }
}

select {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 15px;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
}

/* ================================
   FAQ SECTION
================================ */

.faq-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(124, 58, 237, 0.08),
      transparent 34%
    ),
    #f5f8fc;
}

.faq-heading {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.faq-heading h2 {
  margin: 0.65rem 0 0.8rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 750;
}

.faq-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e1e9f2;
  border-radius: 14px;
  box-shadow: 0 7px 24px rgba(11, 31, 58, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(45, 156, 219, 0.45);
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.1);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: rgba(45, 156, 219, 0.6);
  box-shadow: 0 14px 35px rgba(11, 31, 58, 0.11);
}

/* Clickable question */
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

/* Removes default marker in Safari and Chrome */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus icon container */
.faq-icon {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--purple)
  );
  border-radius: 10px;
  transition: transform 0.25s ease;
}

/* Turns the plus into an X when opened */
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* Answer area */
.faq-answer {
  padding: 0 1.5rem 1.4rem;
}

.faq-answer::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 1.1rem;
  background-color: #e5eaf1;
  content: "";
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* Keyboard accessibility */
.faq-item summary:focus-visible {
  outline: 3px solid rgba(45, 156, 219, 0.35);
  outline-offset: -3px;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .faq-item summary {
    padding: 1.15rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.15rem 1.2rem;
  }

  .faq-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .faq-item:hover {
    transform: none;
  }
}

/* ================================
   LANDING PAGE FOOTER
================================ */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 0;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top right,
      rgba(124, 58, 237, 0.28),
      transparent 32%
    ),
    linear-gradient(135deg, #07172d, var(--navy));
}

/* Decorative glow */
.site-footer::before {
  position: absolute;
  top: -140px;
  left: -100px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  background: rgba(45, 156, 219, 0.14);
  border-radius: 50%;
  filter: blur(20px);
  content: "";
}

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

/* Main columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

/* Logo */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.footer-logo:hover {
  color: #ffffff;
}

.footer-brand p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

/* Column headings */
.footer-column h2 {
  position: relative;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 750;
}

.footer-column h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--purple)
  );
  border-radius: 10px;
  content: "";
}

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

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

.footer-links a,
.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-links i {
  width: 18px;
  color: #6bbcf0;
  text-align: center;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.footer-note {
  text-align: right;
}

/* Tablet */
@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

.promo-video-section {
  padding: 4rem 1.25rem;
  background: #eaf4ff;
}

.promo-video-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  align-items: center;
  gap: 3rem;
}

.promo-video-frame {
  max-width: 380px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 22px;
  background: #071630;
  box-shadow: 0 20px 45px rgba(7, 22, 48, 0.2);
}

.promo-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .promo-video-layout {
    grid-template-columns: 1fr;
  }

  .promo-video-copy {
    text-align: center;
  }

  .promo-video-frame {
    width: min(100%, 340px);
  }
}
