:root {
  --orange: #FF6B00;
  --orange-dk: #cc5500;
  --navy: #1A1A2E;
  --navy-card: #252545;
  --navy-light: #2e2e50;
  --white: #FFFFFF;
  --gray: #9a9ab0;
  --t: 0.26s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: #1a1a2e;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Oswald', sans-serif;
}

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

img {
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.up {
  transform: translateY(28px);
}

.reveal.left {
  transform: translateX(-28px);
}

.reveal.right {
  transform: translateX(28px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-wrap img {
  height: 54px;
  width: auto;
  display: block;
}

.logo-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-txt__main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-txt__sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2.8px;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.3px;
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--t);
}

.nav a:hover,
.nav a.active {
  color: var(--orange);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}

.header__phone:hover {
  background: var(--orange-dk);
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.45rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--t);
  line-height: 1;
}

.hamburger:hover {
  color: var(--orange);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-card);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 6px 0 14px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--t), background var(--t);
}

.mobile-nav a:hover {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.06);
}

.mobile-nav .mob-phone {
  margin: 12px 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border-bottom: none !important;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.88);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 80px 24px 90px;
}

.hero__logo {
  width: 180px;
  height: auto;
  margin: 0 auto 28px;
}

@keyframes pulse-ring {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.45);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 107, 0, 0.55);
  background: rgba(255, 107, 0, 0.12);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.hero__title .accent {
  color: var(--orange);
}

.hero__sub {
  font-size: clamp(0.96rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.78;
  max-width: 640px;
  margin: 0 auto 42px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 14px 30px;
  border-radius: 7px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--orange:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 107, 0, 0.45);
}

.btn--outline-w {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--outline-w:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════════════════
   MARQUEE BANNER
══════════════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--orange);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 24px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════ */
.stats {
  background: var(--navy-card);
  border-bottom: 3px solid rgba(255, 107, 0, 0.25);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats__item {
  padding: 30px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stats__item:last-child {
  border-right: none;
}

.stats__icon {
  font-size: 1.35rem;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.stats__num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stats__lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   SHARED SECTION LABELS
══════════════════════════════════════════════════════ */
.sec-tag {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.sec-title--white {
  color: var(--white);
}

.sec-title--navy {
  color: var(--navy);
}

.sec-div {
  width: 50px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 52px;
}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services {
  background: var(--navy);
  padding: 90px 0 96px;
}

/* 6-col grid: 3 cards top, 2 bottom centered */
.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.svc-card {
  grid-column: span 2;
}

.svc-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.svc-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.svc-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 38px 24px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 2px var(--orange);
  border-color: var(--orange);
}

.svc-icon {
  width: 74px;
  height: 74px;
  background: rgba(255, 107, 0, 0.12);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.svc-icon i {
  font-size: 1.75rem;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon {
  background: rgba(255, 107, 0, 0.22);
  transform: scale(1.05);
}

.svc-card:hover .svc-icon i {
  transform: scale(1.1);
}

.svc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.svc-desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════ */
.why {
  background: var(--white);
  padding: 90px 0;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
  list-style: none;
}

.why__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border: 1.5px solid #e6e6e6;
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.why__item:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
  transform: translateX(5px);
}

.why__icon-circle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
  transition: transform 0.3s;
}

.why__item:hover .why__icon-circle {
  transform: scale(1.08);
}

.why__icon-circle i {
  font-size: 1rem;
  color: var(--white);
}

.why__label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.2px;
}

/* ══════════════════════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════════════════════ */
.cta-sec {
  background: var(--orange);
  padding: 86px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.cta-info-item i {
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
}

.footer__top {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  padding: 58px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

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

.ft-tagline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.72;
  margin-bottom: 22px;
  max-width: 340px;
}

.ft-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-contact a,
.ft-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--t);
}

.ft-contact a:hover {
  color: var(--orange);
}

.ft-contact i {
  color: var(--orange);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.ft-links-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--t), padding-left var(--t);
}

.ft-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bar p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bar span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2.5px;
}

/* ══════════════════════════════════════════════════════
   REQUEST SERVICE PAGE
══════════════════════════════════════════════════════ */
.request-hero {
  width: 100vw;
  max-width: 100%;
  margin: 0;
  background: var(--navy);
  padding: 72px 28px 78px;
  text-align: center;
  position: relative;
}

.request-hero__inner {
  max-width: 840px;
  margin: 0 auto;
}

.req-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 107, 0, 0.55);
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.request-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1.08;
  margin-bottom: 20px;
}

.request-hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  max-width: 680px;
  margin: 0 auto 36px;
}

/* Chips row */
.chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid rgba(255, 107, 0, 0.5);
  background: rgba(255, 107, 0, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.2px;
  transition: background var(--t), border-color var(--t), color var(--t);
}

.chip i {
  color: var(--orange);
  font-size: 0.85rem;
}

.chip:hover {
  background: rgba(255, 107, 0, 0.2);
  border-color: var(--orange);
  color: var(--white);
}

/* Info box */
.req-infobox {
  display: inline-block;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 18px 28px;
  max-width: 580px;
  width: 100%;
}

.req-infobox p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 10px;
}

.req-infobox p:last-child {
  margin-bottom: 0;
}

.req-infobox i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

.req-infobox a {
  color: var(--orange);
  font-weight: 700;
}

.req-infobox a:hover {
  text-decoration: underline;
}

/* Form section */
.rr-form-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #F5F5F5;
}

.rr-form-wrapper iframe {
  width: 100%;
  min-height: 1800px;
  border: none;
  display: block;
  margin-top: -130px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .svc-card {
    grid-column: span 2;
  }

  .svc-card:nth-child(4) {
    grid-column: 1 / span 2;
  }

  .svc-card:nth-child(5) {
    grid-column: 3 / span 2;
  }
}

@media (max-width: 768px) {
  .nav,
  .header__phone {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__item:nth-child(2) {
    border-right: none;
  }

  .stats__item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stats__item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-right: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card,
  .svc-card:nth-child(4),
  .svc-card:nth-child(5) {
    grid-column: span 1;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bar {
    flex-direction: column;
    text-align: center;
  }

  .req-infobox {
    padding: 16px 18px;
  }
}

@media (max-width: 540px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    grid-column: span 1 !important;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-info {
    flex-direction: column;
    gap: 14px;
  }

  .request-hero {
    padding: 56px 20px 64px;
  }

  .chips {
    gap: 8px;
  }

  .chip {
    font-size: 0.76rem;
    padding: 6px 13px;
  }
}

/* ══════════════════════════════════════════════════════
   AUDIO PILL WIDGET
══════════════════════════════════════════════════════ */

/* Row wrapper — centres the pill under the CTA buttons */
.hero__audio-pill {
  margin-top: 18px;
}

.audio-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 22px;
  border-radius: 100px;
  cursor: pointer;
  /* Orange outline — visually secondary to the solid-orange CTAs above */
  border: 2px solid var(--orange);
  background: transparent;
  color: var(--white);
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}

.audio-pill-btn i {
  font-size: 0.72rem; /* slightly smaller than the label text */
}

/* Fill on hover and while playing */
.audio-pill-btn:hover,
.audio-pill-btn.playing {
  background: var(--orange);
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGE  (page-legal.php template)
   Privacy Policy / Terms of Service
══════════════════════════════════════════════════════ */

/* ── Title hero — mirrors the dark section headers used across the site ── */
.legal-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  text-align: center;
}

.legal-hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

/* ── Content wrapper ── */
.legal-content-wrap {
  background: #f5f5f7;
  padding: 72px 0 100px;
}

/* Narrow column for long-form readability */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  padding: 52px 56px;
  box-shadow: 0 4px 32px rgba(26, 26, 46, 0.07);
}

/* ── Typography inside .legal-content ── */

/* Section headings — Oswald, navy, subtle orange rule below */
.legal-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 107, 0, 0.3);
}

/* Sub-headings (e.g. "Information You Provide" under a main section) */
.legal-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.2px;
  margin-top: 24px;
  margin-bottom: 8px;
}

/* Body paragraphs — Open Sans (inherited from body), comfortable line-height */
.legal-content p {
  font-size: 0.93rem;
  line-height: 1.82;
  color: #2e2e50;
  margin-bottom: 16px;
}

/* Effective date / intro emphasis line */
.legal-content p:first-of-type {
  color: var(--gray);
  font-size: 0.86rem;
}

/* Bullet lists */
.legal-content ul,
.legal-content ol {
  padding-left: 1.4em;
  margin-bottom: 18px;
}

.legal-content li {
  font-size: 0.93rem;
  line-height: 1.78;
  color: #2e2e50;
  margin-bottom: 6px;
}

/* Links inside content */
.legal-content a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 0, 0.4);
  text-underline-offset: 2px;
  transition: color var(--t), text-decoration-color var(--t);
}

.legal-content a:hover {
  color: var(--orange-dk);
  text-decoration-color: var(--orange-dk);
}

/* Strong / bold runs */
.legal-content strong {
  font-weight: 700;
  color: var(--navy);
}

/* ALL-CAPS legal disclaimer paragraphs (Disclaimer of Warranties,
   Limitation of Liability) — no extra styling; readable as-is */
.legal-content p:where([style*="uppercase"], .disclaimer) {
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .legal-content {
    padding: 40px 32px;
  }
}

@media (max-width: 540px) {
  .legal-content {
    padding: 28px 20px;
    border-radius: 0;
    box-shadow: none;
  }

  .legal-content h2 {
    font-size: 1.1rem;
  }
}

/* ══════════════════════════════════════════════════════
   WORDPRESS ADMIN BAR COMPATIBILITY
══════════════════════════════════════════════════════ */
.admin-bar .header { top: 32px; }

@media screen and (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}
