/*

Theme name: Quiz
Author: Roodee
Version: 1.4

*/

:root{
  --container: 1200px;
  --pad-x: 24px;

  --header-grad-a: #64b76e;
  --header-grad-b: #1b5e20;
  --text: #ffffff;
  --header-text: #1b5e20;
  --header-bg: #ffffff;

  --nav-w: 320px;
  --radius: 999px;
}

/* Fonts */
@font-face {
  font-family: 'Lato-Hairline';
  src: url('/wp-content/themes/quiz/fonts/Lato-Hairline.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato-Black';
  src: url('/wp-content/themes/quiz/fonts/Lato-Black.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato-Bold';
  src: url('/wp-content/themes/quiz/fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Base */
html{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Lato-Hairline', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
}

/* Header */
.site-header{
  color: var(--header-text);
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.site-header__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad-x);
}

.site-header__top-row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
}

.site-header__brand{
  justify-self: start;
  min-width: 0;
}

.site-header__logo-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-header .custom-logo{
  display: block;
  height: 100px;
  width: auto;
}

.site-header__site-name{
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 18px;
}

/* Desktop nav */
.site-nav{
  display: flex;
  align-items: center;
  justify-self: center;
  min-width: 0;
}

.site-nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav__list li{
  position: relative;
}

.site-nav__list a{
  color: var(--header-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Dropdowns */
.site-nav__list .sub-menu{
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(27,94,32,.14);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  z-index: 1001;
}

.site-nav__list .sub-menu li{
  margin: 0;
}

.site-nav__list .sub-menu a{
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  color: var(--header-text);
}

.site-nav__list li:hover > .sub-menu,
.site-nav__list li:focus-within > .sub-menu{
  display: block;
}

/* Phone CTA */
.site-header__phone{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--header-grad-a), var(--header-grad-b));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.site-header__phone:hover,
.site-header__phone:focus-visible{
  filter: brightness(.95);
}

.site-header__phone-icon{
  font-size: 16px;
  line-height: 1;
}

.site-header__mobile-phone{
  display: none;
}

/* Hamburger button */
.site-header__toggle{
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--header-text);
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  justify-self: end;
}

.site-header__toggle:focus-visible{
  outline: 2px solid rgba(27,94,32,.35);
  outline-offset: 2px;
}

.hamburger{
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--header-text);
  position: relative;
  border-radius: var(--radius);
}

.hamburger::before,
.hamburger::after{
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--header-text);
  border-radius: var(--radius);
}

.hamburger::before{ top: -7px; }
.hamburger::after{ top: 7px; }

/* Overlay */
.site-nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
}

/* Close button */
.site-nav__close{
  display: none;
  appearance: none;
  border: 0;
  background: rgba(27,94,32,.08);
  color: var(--header-text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.site-nav__close:focus-visible{
  outline: 2px solid rgba(27,94,32,.35);
  outline-offset: 2px;
}

/* Main content */
.site-main{
  background: #ffffff;
  margin-top: 0;
  padding-top: 0;
}

.site-main__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px var(--pad-x);
}

.site-main__inner > *:first-child{
  margin-top: 0;
}

.site-main__inner p{
  max-width: 72ch;
  line-height: 1.6;
}

.site-main__inner h1,
.site-main__inner h2,
.site-main__inner h3{
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  font-family: 'Lato-Bold';
}

/* Standard pages: 65/35 layout */
.page-layout{
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.page-layout__main{
  flex: 0 0 65%;
  min-width: 0;
}

.page-layout__info{
  flex: 0 0 35%;
  min-width: 0;
}

.info-panel__content{
  height: 100%;
}

/* Info box */
.info-box{
  border: 1px solid #64b76e;
  border-radius: 18px;
  background: #fff;
  padding: 22px 18px;
}

.info-box > img{
  border-radius: 12px;
  display: block;
  width: 100%;
  height: auto;
}

.info-box h3{
  margin: 0 0 10px;
}

.info-box ul{
  margin: 8px 0 16px;
  padding-left: 18px;
}

.info-box li{
  margin: 6px 0;
}

ul li{
  line-height: 1.6;
  margin: 6px 0;
}

/* Store badges */
.store-badges{
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0 18px;
}

.store-badge{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-badge img{
  width: 100%;
  max-width: 240px;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* Payment */
.info-box--payment{
  border: none;
  background: linear-gradient(90deg, var(--header-grad-a), var(--header-grad-b));
  padding: 24px 18px;
}

.info-box--payment h2{
  color: #ffffff;
  text-align: center;
  margin: 0 0 16px;
}

.info-box--payment #paypal-container-K3JB3E3QS87PN{
  width: 100%;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 20px;
  max-width: 420px;
  margin: 16px auto 0;
}

.info-box--payment #paypal-container-K3JB3E3QS87PN iframe,
.info-box--payment #paypal-container-K3JB3E3QS87PN > *{
  max-width: 100%;
}

/* Generic page title row */
.live-stream__top{
  width: 100%;
  margin: 0 0 28px;
}

/* Hero */
.hero{
  position: relative;
  width: 100%;
  height: 750px;
  max-height: 100vh;
  overflow: hidden;
}

.hero__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media--image{
  background-size: cover;
  background-position: center;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}

.hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad-x);
  color: #fff;
}

.hero__h1{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 70px;
}

.hero__h3{
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 30px;
}

.hero__cta{
  display: inline-block;
  background: #64b76e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
}

.hero__cta:hover,
.hero__cta:focus-visible{
  filter: brightness(.95);
}

/* =========================
   INDEX PAGE CONTENT AREAS
   ========================= */

.index-content{
  margin: 0 0 48px;
}

.index-bottom-content{
  margin: 48px 0 0;
}

.index-content p,
.index-bottom-content p{
  max-width: none;
  width: 100%;
  line-height: 1.6;
}

.index-content h1,
.index-content h2,
.index-content h3,
.index-bottom-content h1,
.index-bottom-content h2,
.index-bottom-content h3{
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.index-content ul,
.index-content ol,
.index-bottom-content ul,
.index-bottom-content ol{
  margin: 12px 0 18px;
  padding-left: 20px;
}

.index-content li,
.index-bottom-content li{
  margin: 6px 0;
  line-height: 1.6;
}

.index-content img,
.index-bottom-content img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px 0;
}

.index-content > *:first-child,
.index-bottom-content > *:first-child{
  margin-top: 0;
}

.index-content > * + *,
.index-bottom-content > * + *{
  margin-top: 16px;
}

/* =========================
   FULL-WIDTH SPLIT BAND (LOWER ONLY)
   ========================= */

.index-split-band{
  width: 100%;
  background: #efe6dc;
  padding: 48px 0;
}

/* =========================
   INDEX SPLIT SECTION
   ========================= */

/* Top split spacing restored */
.index-split{
  margin: 48px 0;
}

/* Remove spacing when inside band (lower split) */
.index-split-band .index-split{
  margin: 0;
}

.index-split__inner{
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.index-split__col{
  flex: 0 0 calc(50% - 16px);
  min-width: 0;
}

.index-split__col p{
  max-width: none;
  width: 100%;
  line-height: 1.6;
}

.index-split__col h1,
.index-split__col h2,
.index-split__col h3{
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.index-split__col ul,
.index-split__col ol{
  margin: 12px 0 18px;
  padding-left: 20px;
}

.index-split__col li{
  margin: 6px 0;
  line-height: 1.6;
}

.index-split__col img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px 0;
  border-radius: 0;
}

.index-split__col > *:first-child{
  margin-top: 0;
}

.index-split__col > * + *{
  margin-top: 16px;
}

/* Services section */
.services{
  padding: 10px 0 0;
}

.services__title{
  text-align: center;
  margin: 0 0 28px;
}

.services__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card{
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  text-align: center;
}

.service-card__image-link{
  display: inline-block;
  text-decoration: none;
}

.service-card__image,
.service-card__image--placeholder{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
}

.service-card__image-link{
  display: block;
}

.service-card__title{
  margin: 0 0 8px;
}

.service-card__title a{
  color: inherit;
  text-decoration: none;
}

.service-card__title a:hover,
.service-card__title a:focus-visible{
  text-decoration: underline;
  text-underline-offset: 6px;
}

.service-card__excerpt{
  margin: 0 0 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.service-card__cta{
  display: inline-block;
  background: #64b76e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.service-card__cta:hover,
.service-card__cta:focus-visible{
  filter: brightness(0.95);
}

/* Sidebar service submenu */
.service-subnav{
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-subnav__item{
  margin: 0 0 10px;
}

.service-subnav__item:last-child{
  margin-bottom: 0;
}

.service-subnav__item a{
  display: block;
  padding: 10px 14px;
  border: 1px solid #64b76e;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-subnav__item a:hover,
.service-subnav__item a:focus-visible{
  background: #64b76e;
  color: #fff;
}

.service-subnav__item.is-current a{
  background: linear-gradient(90deg, var(--header-grad-a), var(--header-grad-b));
  color: #fff;
  border-color: transparent;
}

/* Gradient info box */
.info-box--gradient{
  border: none;
  background: linear-gradient(90deg, var(--header-grad-a), var(--header-grad-b));
  padding: 24px 18px;
  color: #ffffff;
}

.info-box--center{
  text-align: center;
}

.info-box--gradient h2,
.info-box--gradient h3{
  color: #ffffff;
}

/* Contact Form 7 inside gradient box */
.info-box--gradient .wpcf7 input[type="text"],
.info-box--gradient .wpcf7 input[type="email"],
.info-box--gradient .wpcf7 input[type="tel"],
.info-box--gradient .wpcf7 textarea{
  background: #ffffff;
  color: #000000;
}

.info-box--gradient .wpcf7 ::placeholder{
  color: rgba(0,0,0,.55);
}

.info-box--gradient .wpcf7-not-valid-tip,
.info-box--gradient .wpcf7-response-output{
  color: #ffffff;
  border-color: rgba(255,255,255,.5);
}

.info-box--gradient .wpcf7 input[type="submit"]{
  background: #ffffff;
  color: #64b76e;
}

.info-box--gradient .wpcf7-acceptance label,
.info-box--gradient .wpcf7-acceptance label *{
  color: #ffffff;
}

.info-box--gradient .wpcf7-form input[type="file"]{
  padding: 10px;
}

/* Contact Form 7 */
.wpcf7 form{
  max-width: 720px;
  margin: 0 auto;
}

.wpcf7 .wpcf7-form-control-wrap{
  display: block;
  margin: 0 0 1px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  font: inherit;
  line-height: 1.4;
  outline: 0;
}

.wpcf7 textarea{
  min-height: 160px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus{
  border-color: #64b76e;
  box-shadow: 0 0 0 4px rgba(100,183,110,.18);
}

.wpcf7 ::placeholder{
  color: rgba(0,0,0,.55);
}

.wpcf7 .wpcf7-acceptance{
  margin: 6px 0 14px;
}

.wpcf7 .wpcf7-acceptance label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,.78);
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"]{
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #64b76e;
}

.wpcf7 .wpcf7-acceptance a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wpcf7 input[type="submit"]{
  background: #64b76e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="submit"]:focus-visible{
  filter: brightness(.95);
}

.wpcf7 input[type="submit"]:focus-visible{
  outline: 2px solid rgba(0,0,0,.25);
  outline-offset: 2px;
}

.wpcf7-not-valid-tip{
  font-size: 12.5px;
  margin-top: 6px;
}

.wpcf7-response-output{
  margin: 16px 0 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
}

/* Footer */
.site-footer{
  color: var(--text);
  background: linear-gradient(90deg, var(--header-grad-a), var(--header-grad-b));
}

.site-footer__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__top .site-footer__inner{
  padding-top: 22px;
  padding-bottom: 22px;
}

.site-footer__logo-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-footer .custom-logo{
  display: block;
  height: 40px;
  width: auto;
}

.site-footer__brand img{
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.site-footer__site-name{
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 16px;
}

.site-footer__copyright{
  flex: 1;
  text-align: center;
}

.site-footer__copyright p{
  margin: 0;
  font-weight: 100;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.site-footer__social{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.icon-link{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
}

.icon-link:hover,
.icon-link:focus-visible{
  background: rgba(255,255,255,.18);
  outline: none;
}

.site-footer__divider{
  height: 1px;
  background: rgba(255,255,255,.22);
}

.site-footer__inner--bottom{
  padding-top: 14px;
  padding-bottom: 18px;
  align-items: flex-start;
}

.site-footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.site-footer__links a,
.site-footer__credit a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer__links a:hover,
.site-footer__credit a:hover,
.site-footer__links a:focus-visible,
.site-footer__credit a:focus-visible{
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer__credit{
  margin-left: auto;
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1200px){
  .services__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive */
@media (max-width: 900px){
  .site-header__inner{
    padding: 14px var(--pad-x) 18px;
  }

  .site-header__top-row{
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    row-gap: 12px;
    align-items: center;
  }

  .site-header__brand{
    grid-column: 1;
    justify-self: start;
  }

  .site-header .custom-logo{
    height: 72px;
  }

  .site-nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(var(--nav-w), 86vw);
    padding: 72px 22px 22px;
    background: #ffffff;
    transform: translateX(110%);
    transition: transform 260ms ease;
    z-index: 1000;
    box-shadow: -18px 0 40px rgba(0,0,0,.18);
    display: block;
  }

  .nav-is-open .site-nav{
    transform: translateX(0);
  }

  .site-nav__close{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 16px;
  }

  .site-nav__list{
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
  }

  .site-nav__list a{
    font-size: 16px;
    display: inline-block;
    padding: 10px 8px;
    color: var(--header-text);
  }

  .site-nav__list .sub-menu{
    display: none;
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 6px 0 0 14px;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 0;
  }

  .site-nav__list .sub-menu a{
    padding: 8px 8px;
    font-size: 14px;
    white-space: normal;
  }

  .site-header__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
  }

  .site-header__top-row > .site-header__phone{
    display: none;
  }

  .site-header__mobile-phone{
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }

  .site-header__mobile-phone .site-header__phone{
    justify-self: center;
  }

  .site-main__inner{
    padding: 32px var(--pad-x);
  }

  .page-layout{
    flex-direction: column;
  }

  .page-layout__main,
  .page-layout__info{
    flex: 0 0 auto;
    width: 100%;
  }

  .services__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .store-badges{
    justify-content: center;
    gap: 8px;
  }

  .store-badge{
    flex: 0 1 auto;
  }

  .store-badge img{
    max-width: 200px;
  }

  .wpcf7 form{
    max-width: 100%;
  }

  .site-footer__top .site-footer__inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .site-footer__brand{
    width: 100%;
    display: flex;
    justify-content: center;
    order: 1;
  }

  .site-footer__social{
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2;
  }

  .site-footer__copyright{
    width: 100%;
    text-align: center;
    order: 3;
  }

  .site-footer__inner--bottom{
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .site-footer__credit{
    margin-left: 0;
  }

  .index-split-band{
    padding: 32px 0;
  }

  .index-split{
    margin: 32px 0;
  }

  .index-split-band .index-split{
    margin: 0;
  }

  .index-split__inner{
    flex-direction: column;
    gap: 24px;
  }

  .index-split__col{
    flex: 0 0 auto;
    width: 100%;
  }
}

/* =========================
   INDEX HERO OVERRIDES
   ========================= */

.hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad-x);
  color: #fff;
}

.hero__h1{
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.1;
  text-shadow: 0 0 10px #000;
}

.hero__text{
  margin: 0 0 18px;
  max-width: 720px;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0 0 10px #000;
}

.hero__cta{
  display: inline-block;
  background: #64b76e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
}

.hero__cta:hover,
.hero__cta:focus-visible{
  filter: brightness(.95);
}

/* =========================
   HERO TESTIMONIALS
   ========================= */

.hero-testimonials{
  margin-top: 28px;
  width: min(100%, 760px);
  text-align: left;
}

.hero-testimonials__viewport{
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 24px;
}

.hero-testimonials__track{
  position: relative;
  min-height: 120px;
}

.hero-testimonial{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.7s ease, opacity 0.7s ease;
  pointer-events: none;
}

.hero-testimonial.is-active{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-testimonial.is-prev{
  opacity: 0;
  transform: translateX(-100%);
}

.hero-testimonial.is-next{
  opacity: 0;
  transform: translateX(100%);
}

.hero-testimonial__text,
.hero-testimonial__text p{
  color: #fff;
  margin: 0;
  line-height: 1.6;
  text-align: left;
  max-width: none;
}

.hero-testimonial__meta{
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-testimonial__name{
  color: #fff;
  font-weight: 700;
}

.hero-testimonial__stars{
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}

/* Page hero band */
.page-hero-band{
  position: relative;
  width: 100%;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-band--image{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-band--gradient{
  background: linear-gradient(90deg, var(--header-grad-a), var(--header-grad-b));
}

.page-hero-band__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.page-hero-band--gradient .page-hero-band__overlay{
  background: rgba(0,0,0,.12);
}

.page-hero-band .site-main__inner{
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero-band__content{
  width: 100%;
  padding: 28px 0;
}

.page-hero-band .page-title{
  margin: 0;
  color: #fff;
}

@media (max-width: 900px){
  .hero__h1{
    font-size: 24px;
  }

  .hero__text{
    font-size: 18px;
  }

  .hero-testimonials{
    width: 100%;
  }

  .hero-testimonials__viewport{
    padding: 16px 18px;
  }

  .page-hero-band{
    min-height: 140px;
  }

  .page-hero-band__content{
    padding: 22px 0;
  }
}