/* =============================================
   MOTORS INSPECTORS – Styles
   Exact color match to motorsinspectors.com
   Primary: #FA2F59  |  Secondary: #5E0BEC
   ============================================= */

/* ---------- CSS Variables (from WP theme.json) ---------- */
:root {
  --color-primary:         #FA2F59;
  --color-primary-shade1:  #A40D2C;
  --color-primary-shade2:  #6B0A1E;
  --color-secondary:       #5E0BEC;
  --color-secondary-shade1:#3C0995;
  --color-secondary-shade2:#25045C;
  --color-light:           #ffffff;
  --color-black:           #101010;
  --color-dark-shade:      #0A0A0A;
  --color-bg-alt:          #19161C;
  --color-foreground:      #6C6C6C;
  --color-foreground-alt:  #C0C0C0;
  --color-border:          #453E4D;

  /* Named gradients from the WP preset */
  --gradient-one:   radial-gradient(25.38% 41.96% at 3.49% 45.05%, var(--color-primary-shade1) 0%, var(--color-primary) 22%, var(--color-primary-shade2) 44%, var(--color-dark-shade) 100%);
  --gradient-three: radial-gradient(30% 50% at 100% 0%, var(--color-primary-shade1) 0%, var(--color-primary) 44%, var(--color-primary-shade2) 89%, var(--color-dark-shade) 130%);
  --gradient-five:  radial-gradient(34.34% 24.21% at 50% -11%, var(--color-primary) 0%, var(--color-primary-shade1) 20%, var(--color-primary-shade2) 22%, var(--color-black) 100%);
  --gradient-ten:   radial-gradient(38.18% 60.36% at 6.37% 95.31%, var(--color-secondary) 0%, var(--color-secondary-shade1) 22%, var(--color-secondary-shade2) 44%, var(--color-dark-shade) 100%);
  --gradient-twelve: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-thirteen: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);

  --font-primary: "Inter", "Archivo", system-ui, sans-serif;
  --font-heading: "Funnel Display", "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background: var(--color-dark-shade);
  color: var(--color-foreground-alt);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-light);
  line-height: 1.3;
}

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

img { max-width: 100%; height: auto; display: block; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gradient-one);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 55px;
  width: auto;
}

.site-title {
  font-size: clamp(16px, 1.1rem + 0.3vw, 22px);
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-light);
  line-height: 2;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: color 0.2s, opacity 0.2s;
}
.nav-links a:hover { opacity: 0.75; }
.nav-links a.active { color: var(--color-primary); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}
.hamburger svg { fill: white; }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-light);
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover {
  color: var(--color-primary);
  background: rgba(250,47,89,0.06);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 1rem 4rem;
  text-align: center;
}

/* Very light overlay – same as dim=0 in WP */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(40px, 3.5rem + 2vw, 80px);
  font-weight: 600;
  color: var(--color-light);
  line-height: 1.25;
  margin-bottom: 2rem;
  margin-top: 1.25rem;
}

/* VIN search bar */
.hero-search {
  display: flex;
  align-items: center;
  max-width: 540px;
  margin: 0 auto 1.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 60px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.hero-search input {
  flex: 1;
  padding: 16px 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.65); }
.hero-search .btn-check {
  flex-shrink: 0;
  padding: 12px 26px;
  background: var(--gradient-thirteen);
  color: var(--color-light);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: 60px;
  margin: 4px;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.hero-search .btn-check:hover { opacity: 0.88; }

.hero-description {
  font-size: clamp(14px, 0.875rem + 0.2vw, 18px);
  color: var(--color-foreground-alt);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Badge pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-alt);
  border: 1px solid rgba(250,47,89,0.4);
  border-radius: 60px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-light);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--color-black);
  padding: 7rem 1rem;
  text-align: center;
}

.section-title {
  font-size: clamp(26px, 1.74rem + 1.2vw, 48px);
  font-weight: 500;
  color: var(--color-light);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: clamp(14px, 0.875rem + 0.24vw, 18px);
  color: var(--color-foreground-alt);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section tag pill */
.section-tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-alt);
  border: 1px solid rgba(250,47,89,0.35);
  border-radius: 60px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-light);
}

/* ============================================================
   SERVICES
   ============================================================ */
/* Header band above services */
.services-header-band {
  background: var(--gradient-three);
  padding: 7rem 1rem 4rem;
  text-align: center;
}
.services-header-band .section-title {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Individual service blocks */
.service-block {
  padding: 3rem 1rem 4rem;
}
.service-block.dark-shade  { background: var(--color-dark-shade); }
.service-block.gradient-ten { background: var(--gradient-ten); }

.service-block-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}
.service-block-inner.rev { flex-direction: row-reverse; }

.service-img {
  flex: 0 0 50%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 510px;
}
.service-img img {
  width: 100%;
  height: 510px;
  object-fit: cover;
}

.service-text {
  flex: 1;
  padding: 2rem;
}
.service-text.align-right { text-align: right; }

.service-text h3 {
  font-size: clamp(22px, 1.74rem + 1.2vw, 40px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-light);
  margin-bottom: 1.2rem;
}
.service-text p {
  font-size: clamp(14px, 0.875rem + 0.24vw, 18px);
  color: var(--color-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-report {
  display: inline-block;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  background: var(--gradient-thirteen);
  color: var(--color-light);
  font-weight: 700;
  font-size: clamp(14px, 0.875rem + 0.12vw, 16px);
  border-radius: 70px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.btn-report:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-view-all {
  display: inline-block;
  padding: 20px 32px;
  background: var(--gradient-twelve);
  color: var(--color-light);
  font-weight: 600;
  font-size: clamp(14px, 0.875rem + 0.37vw, 20px);
  border-radius: 60px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.btn-view-all:hover { opacity: 0.9; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--color-dark-shade);
  padding: 7rem 1rem 4rem;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-title {
  font-size: clamp(28px, 2rem + 1.4vw, 54px);
  font-weight: 500;
  color: var(--color-light);
  line-height: 1.3;
  margin: 1.2rem 0 1rem;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(250,47,89,0.4);
  transform: translateY(-3px);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  object-fit: cover;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.author-name {
  font-size: clamp(14px, 0.875rem + 0.37vw, 20px);
  font-weight: 500;
  color: var(--color-light);
}
.rating-stars {
  width: 100px;
  height: 20px;
  object-fit: contain;
  margin: 1rem 0;
}
.testimonial-text {
  font-size: clamp(14px, 0.875rem + 0.24vw, 18px);
  color: var(--color-foreground-alt);
  line-height: 1.7;
}

.testimonials-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-section {
  background: var(--gradient-five);
  padding: 7rem 1rem 3rem;
}
.why-inner {
  max-width: 760px;
  margin: 0 auto;
}
.why-header {
  text-align: center;
  margin-bottom: 4rem;
}
.why-title {
  font-size: clamp(28px, 2rem + 1.4vw, 54px);
  font-weight: 500;
  color: var(--color-light);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.why-desc {
  font-size: clamp(14px, 0.875rem + 0.37vw, 20px);
  color: var(--color-foreground-alt);
}

/* Accordion (details/summary) */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-item + .accordion-item { margin-top: 0; }

.accordion-summary {
  padding: 1.5rem;
  font-size: clamp(14px, 0.875rem + 0.24vw, 18px);
  font-weight: 500;
  color: var(--color-light);
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-summary::-webkit-details-marker { display: none; }
.accordion-summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
details[open] > .accordion-summary::after { content: '−'; }

.accordion-body {
  padding: 0 1.5rem 1.25rem;
  font-size: clamp(14px, 0.875rem + 0.24vw, 18px);
  color: var(--color-foreground-alt);
  line-height: 1.6;
  font-weight: 400;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--gradient-five);
  padding: 7rem 1rem 3rem;
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}
.contact-title {
  font-size: clamp(28px, 2rem + 1.4vw, 54px);
  font-weight: 500;
  color: var(--color-light);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
}

/* Form */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-light);
  margin-bottom: 6px;
}
.required { color: var(--color-primary); margin-left: 2px; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-light);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.char-counter {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
  margin-top: 4px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-thirteen);
  color: var(--color-light);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}
.form-submit-btn:hover { opacity: 0.88; }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form messages */
.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.form-message.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  display: block;
}
.form-message.error {
  background: rgba(250,47,89,0.12);
  border: 1px solid rgba(250,47,89,0.3);
  color: #fb7185;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark-shade);
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 1rem 32px;
  text-align: center;
}
.footer-car-img {
  width: 200px;
  max-width: 100%;
  /* Negative bottom margin compensates for transparent PNG bottom space */
  margin: -40px auto -55px;
  display: block;
}
.footer-desc {
  font-size: 0.95rem;
  color: var(--color-light);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}
.footer-scroll-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 1.5rem 1rem;
}
.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: var(--color-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.scroll-top-btn:hover { background: var(--color-primary); }

/* ============================================================
   GET REPORT PAGE – extra styles
   ============================================================ */
.report-page-main {
  background: var(--color-dark-shade);
  min-height: calc(100vh - 90px);
  padding: 4rem 1rem 6rem;
}
.report-wrapper {
  max-width: 680px;
  margin: 0 auto;
}
.report-heading {
  font-size: clamp(26px, 2rem + 1.2vw, 44px);
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 2.5rem;
}
.report-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-light);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.1);
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }

.form-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-light);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-select:focus { border-color: var(--color-primary); }
.form-select option { background: #1a1a1a; color: #fff; }

.form-label-rp {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-light);
  margin-bottom: 6px;
}
.required-star { color: var(--color-primary); }

.package-box {
  background: rgba(250,47,89,0.08);
  border: 1px solid rgba(250,47,89,0.25);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.package-box strong { color: var(--color-light); }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-thirteen);
  color: var(--color-light);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover { opacity: 0.88; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.form-msg.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  display: block;
}
.form-msg.error {
  background: rgba(250,47,89,0.12);
  border: 1px solid rgba(250,47,89,0.3);
  color: #fb7185;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links   { display: none; }
  .hamburger   { display: block; }

  /* Hero search stacks vertically */
  .hero-search {
    flex-direction: column;
    background: transparent;
    border: none;
    overflow: visible;
    gap: 0.75rem;
  }
  .hero-search input {
    width: 100%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 60px;
    padding: 14px 20px;
  }
  .hero-search .btn-check {
    width: 100%;
    border-radius: 60px;
    margin: 0;
    padding: 14px 24px;
    text-align: center;
  }

  /* Services: force single column */
  .service-block-inner,
  .service-block-inner.rev {
    flex-direction: column !important;
    gap: 2rem;
  }
  .service-img { flex: none; width: 100%; min-height: unset; }
  .service-img img { height: 320px; }
  .service-text { padding: 0; text-align: left !important; }

  /* Testimonials: single column */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Report card */
  .report-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(28px, 9vw, 44px); }
  .hero-section { padding: 4rem 1rem 3rem; min-height: auto; }
}

/* ============================================================
   POLICY / STATIC CONTENT PAGES
   (Privacy Policy, Terms & Conditions, About Us)
   ============================================================ */

/* Page hero banner */
.page-banner {
  background: var(--gradient-one);
  padding: 5rem 1rem 4rem;
  text-align: center;
}
.page-banner .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.page-banner .breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.page-banner .breadcrumb a:hover { color: #fff; }
.page-banner .breadcrumb span { color: rgba(255,255,255,0.35); }
.page-banner h1 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.page-banner .updated {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

/* Content body wrapper */
.policy-body {
  background: var(--color-dark-shade);
  padding: 4rem 1.25rem 2rem;
}
.policy-container {
  max-width: 840px;
  margin: 0 auto;
}

/* Intro paragraph above first numbered section */
.policy-intro {
  font-size: clamp(15px, 0.95rem + 0.15vw, 17px);
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

/* Section blocks — card-style */
.policy-section {
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2rem 2.25rem 1.75rem;
  transition: border-color 0.25s;
}
.policy-section:hover {
  border-color: rgba(250,47,89,0.18);
}

.policy-section h2 {
  font-size: clamp(17px, 1.1rem + 0.4vw, 22px);
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-section h2 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  background: var(--gradient-thirteen);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0;
}
.policy-section p {
  font-size: clamp(14px, 0.9rem + 0.1vw, 15.5px);
  color: var(--color-foreground-alt);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul,
.policy-section ol {
  margin: 0.75rem 0 0.75rem 1.5rem;
  padding: 0;
}
.policy-section li {
  font-size: clamp(14px, 0.9rem + 0.1vw, 15.5px);
  color: var(--color-foreground-alt);
  line-height: 1.75;
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}
.policy-section li:last-child { margin-bottom: 0; }
.policy-section li::marker { color: var(--color-primary); }
.policy-section a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,47,89,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.policy-section a:hover {
  border-color: var(--color-primary);
  color: #ff6b8e;
}

/* Highlight box */
.policy-highlight {
  background: rgba(250,47,89,0.07);
  border: 1px solid rgba(250,47,89,0.22);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 0.5rem;
}
.policy-highlight p {
  margin: 0 !important;
  color: rgba(255,255,255,0.82) !important;
  font-size: clamp(14px, 0.9rem + 0.1vw, 15.5px) !important;
  line-height: 1.7 !important;
}
.policy-highlight p + p { margin-top: 0.5rem !important; }
.policy-highlight strong { color: #fff; }

/* About Us – feature cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.about-card:hover {
  border-color: rgba(250,47,89,0.4);
  transform: translateY(-3px);
}
.about-card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}
.about-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 0.4rem;
}
.about-card p {
  font-size: 0.85rem;
  color: var(--color-foreground-alt);
  line-height: 1.5;
  margin: 0;
}

/* Mission banner */
.mission-banner {
  background: var(--gradient-thirteen);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.mission-banner h3 {
  font-size: clamp(20px, 1.5rem + 0.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.mission-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer nav links  */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  margin-top: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-links .sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  align-self: center;
}

/* Responsive policy pages */
@media (max-width: 768px) {
  .about-cards { grid-template-columns: 1fr 1fr; }
  .page-banner { padding: 4rem 1rem 3rem; }
  .policy-body { padding: 2.5rem 1rem 1.5rem; }
  .policy-section { padding: 1.5rem 1.25rem 1.25rem; }
  .policy-intro { padding: 1.25rem 1.25rem; }
  .mission-banner { padding: 2rem 1.25rem; }
}
@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
  .policy-section { padding: 1.25rem 1rem 1rem; }
  .policy-section h2 { font-size: 1rem; }
}
