:root {
  --green: #00ff9a;
  --green-dark: #009b5c;
  --ink: #272727;
  --ink-2: #242424;
  --hero: #3a3a3a;
  --muted: #838383;
  --panel: #f2f2f2;
  --white: #ffffff;
  --rail: 45px;
  --rail-open: 360px;
  --charcoal: #272727;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --nav: Montserrat, "Plus Jakarta Sans", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.56;
  color: var(--ink);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 1rem; background: #000; color: #fff; padding: .5rem; z-index: 100; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

#page.page {
  padding-left: var(--rail);
  min-height: 100vh;
  transition: padding-left .35s ease, padding-right .35s ease;
}
html[dir="rtl"] #page.page {
  padding-left: 0;
  padding-right: var(--rail);
}
.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail);
  background: var(--charcoal);
  z-index: 80;
  overflow: hidden;
  transition: width .35s ease;
}
.site-header.open { width: var(--rail-open); }
.vertical-toggle {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 27px;
  height: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  color: transparent;
  z-index: 2;
}
.vertical-toggle .menu-line-1,
.vertical-toggle .menu-line-2,
.vertical-toggle .menu-line-3 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
}
.vertical-toggle .menu-line-1 { top: 2px; }
.vertical-toggle .menu-line-2 { top: 10px; }
.vertical-toggle .menu-line-3 { top: 18px; }
.rail-cta {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  font-family: var(--nav);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  width: max-content;
}
.header-panel {
  position: absolute;
  left: var(--rail);
  top: 0;
  bottom: 0;
  width: calc(var(--rail-open) - var(--rail));
  padding: 72px 28px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.site-header.open .header-panel { opacity: 1; pointer-events: auto; }
.site-header.open .rail-cta { display: none; }
.primary-navigation {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-menu a {
  display: block;
  font-family: var(--nav);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-menu a:hover { color: var(--green); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px;
  padding: 18px 36px;
  font-weight: 600;
  font-size: 19px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: .2s background, .2s color;
}
.btn-outline-green { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-outline-dark { border-color: var(--ink-2); color: var(--ink-2); background: transparent; }
.btn-outline-dark:hover { background: var(--ink-2); color: #fff; }
.btn-green { background: var(--green); color: var(--ink-2); border-color: var(--green); }
.btn-green:hover { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }

.hero {
  background: var(--hero);
  color: #fff;
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner { padding: 120px 0 96px; position: relative; }
.hero-side {
  position: absolute;
  left: -8px;
  top: 48%;
  transform: rotate(-90deg);
  transform-origin: left center;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  opacity: .85;
}
.hero-title {
  font-size: clamp(42px, 7vw, 66px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 28px;
  text-align: center;
}
.hero-copy {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}
.hero-inner .btn { margin-left: 8%; }

.offer-band {
  background: var(--green) url("../img/decor-3.png") no-repeat left bottom;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 70px 40px 80px;
}
.offer-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
}
.offer-card h3 { margin: 0 0 6px; font-size: 25px; color: var(--ink); }
.offer-card p { margin: 0 0 8px; color: var(--green-dark); font-weight: 600; }
.offer-card a { font-weight: 700; color: var(--ink); }

.split-pros { padding: 90px 0 70px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.split h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.25; margin: 0; }
.eyebrow { text-transform: none; font-weight: 700; margin: 0 0 6px; font-size: 22px; }
.plus-list { list-style: none; padding: 0; margin: 0 0 28px; }
.plus-list li { position: relative; padding-left: 22px; margin: 0 0 16px; line-height: 1.6; }
.plus-list li::before { content: "+"; position: absolute; left: 0; font-weight: 700; }

.process {
  background: #000;
  color: #fff;
  padding: 90px 0 110px;
}
.process h2 { font-size: clamp(36px, 5vw, 56px); margin: 0; }
.process .subhead { font-size: 28px; margin: 0 0 40px; font-weight: 600; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process .num { display: block; font-size: 96px; font-weight: 800; line-height: .9; opacity: .9; }
.process h3 { margin: 8px 0; font-size: 25px; }
.process a { color: #fff; text-decoration: none; }
.experience { margin-top: 48px; font-weight: 700; }

.services {
  background: var(--ink-2) url("../img/services-decor.png") no-repeat right bottom;
  color: #fff;
  padding: 80px 0 100px;
}
.services-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; }
.services h2 a { color: #fff; text-decoration: none; }
.accordion details {
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 12px 0;
}
.accordion summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion p { color: #d7d7d7; }
.services-copy .rotated {
  color: var(--green);
  font-weight: 700;
  letter-spacing: .08em;
}
.services-copy p { line-height: 1.8; font-weight: 500; }

.webinar { background: var(--panel) url("../img/team-decor.png") no-repeat left bottom; padding: 90px 0 70px; }
.webinar-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.webinar h2 { font-size: clamp(36px, 5vw, 52px); margin: 8px 0 16px; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team img { width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: 0 0 10px rgba(0,0,0,.15); }
.team figcaption { background: #404040; color: #fff; text-align: center; padding: 14px 8px 18px; }
.team figcaption strong { display: block; color: var(--green); margin-bottom: 4px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  text-align: center;
}
.stats div { background: #fff; padding: 28px 12px; box-shadow: 0 10px 10px rgba(0,0,0,.12); }
.stats strong { display: block; font-size: 36px; color: var(--ink); }
.stats span { font-weight: 700; }

.news { padding: 80px 0 90px; }
.study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.tag {
  display: inline-block;
  background: var(--green);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 6px 10px;
}
.study-card h3 { font-size: 28px; margin: 12px 0; }


.hero {
  position: relative;
  min-height: 72vh;
  color: #fff;
  overflow: hidden;
  background: var(--hero);
  display: flex;
  align-items: center;
}
.hero-slide {
  position: absolute;
  inset: -6%;
  background: #3a3a3a center/cover no-repeat;
  transform-origin: center center;
  animation: ken 14s ease-in-out infinite alternate;
}
.hero-slide-2 {
  opacity: 0;
  animation: fadeSlide 10s ease-in-out infinite, ken 14s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.16); }
}
@keyframes fadeSlide {
  0%, 40% { opacity: 0; }
  50%, 90% { opacity: 1; }
  100% { opacity: 0; }
}
.hero-ring {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right: -6%;
  top: 6%;
  width: min(48vw, 580px);
  height: auto;
  max-width: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33,35,49,.55) 0%, rgba(58,58,58,.28) 45%, rgba(58,58,58,.15) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 72px;
  max-width: none;
  width: min(1100px, calc(100% - 48px));
  margin-left: 6%;
  overflow: visible;
}
.hero-type {
  font-family: var(--nav);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 28px;
  line-height: 1.15;
  min-height: 1.2em;
  white-space: nowrap;
  overflow: visible;
  max-width: none;
}
.hero-cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-copy {
  max-width: 720px;
  margin: 0 0 36px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}
.ask-chat {
  position: fixed;
  z-index: 76;
  left: calc(var(--rail) + 4%);
  bottom: 28px;
}
.ask-chat-toggle {
  background: #fff;
  color: #1a1a1a;
  border: 0;
  border-radius: 18px 18px 18px 4px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor: pointer;
}
.ask-chat-panel {
  margin-top: 10px;
  background: #fff;
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.ask-chat-title { font-weight: 800; margin: 0 0 6px; }

.site-footer { background: #272727; color: #fff; }
.footer-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}
.footer-dark {
  background: #272727;
  padding: 64px 56px 48px;
}
.footer-blurb { color: var(--green); font-weight: 600; max-width: 46ch; }
.footer-address, .footer-contact { color: #fff; }
.footer-contact a { color: var(--green); text-decoration: underline; }
.footer-copy { margin-top: 36px; }
.footer-copy a { color: #9a9a9a; text-decoration: none; font-size: 14px; }
.follow-us h3, .footer-legal h3 { font-size: 16px; text-transform: uppercase; letter-spacing: .06em; }
.follow-us ul, .footer-legal ul { list-style: none; padding: 0; margin: 0 0 18px; }
.follow-us a, .follow-us span, .footer-legal a { text-decoration: none; color: #eee; }
.socials { display: flex; gap: 16px; flex-wrap: wrap; }
.socials a,
.socials .social-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #272727;
  color: #fff;
  overflow: hidden;
  flex: 0 0 40px;
  font-size: 0;
  line-height: 0;
}
.socials svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  display: block;
}
.social-telegram { cursor: default; }
.footer-green {
  background: var(--green) url("../img/cta-bg.png") center/cover;
  color: var(--ink);
  padding: 32px 32px 28px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.footer-green h2 {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: break-word;
}
.footer-green > p { font-size: 14px; line-height: 1.45; margin: 0 0 16px; max-width: min(52ch, 100%); }
.quote-form { display: grid; gap: 6px; }
.quote-form label { font-weight: 600; font-size: 12px; }
.quote-form input, .quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  padding: 6px 0;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
}
.quote-form button {
  margin-top: 16px;
  width: 180px;
  border: 0;
  border-radius: 100px;
  padding: 10px 0;
  background: #fff;
  color: var(--ink-2);
  font-weight: 700;
  cursor: pointer;
}
.quote-form button:hover { background: var(--ink-2); color: #fff; }
.cf-turnstile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 12px 14px;
  width: min(300px, 100%);
  margin: 8px 0 18px;
  font-weight: 500;
  font-size: 14px;
}
.cf-box {
  width: 22px; height: 22px;
  border: 2px solid #4c8bf5;
  border-radius: 3px;
  display: inline-block;
}
.quote-popup {
  position: fixed;
  inset: auto 24px 90px auto;
  z-index: 90;
  background: #fff;
  padding: 28px;
  width: min(420px, calc(100% - 48px));
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.quote-popup[hidden] { display: none; }
.dnc-mark { width: 90px; margin-bottom: 16px; }
.scroll-top {
  position: fixed; right: 18px; bottom: 18px;
  width: 42px; height: 42px;
  overflow: hidden; text-indent: -99px;
  background: #0d5c3a;
  border-radius: 6px;
  z-index: 70;
}
.scroll-top::after {
  content: "⌃";
  position: absolute; inset: 0;
  text-indent: 0;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
}

.trp-language-switcher {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 75;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  min-width: 140px;
  font-size: 14px;
  font-weight: 600;
}
.trp-ls-current {
  display: flex; align-items: center; gap: 8px;
  width: 100%;
  border: 0; background: transparent;
  padding: 10px 12px; cursor: pointer; font: inherit;
}
.trp-ls-list {
  display: none; list-style: none; margin: 0; padding: 0 0 8px;
}
.trp-language-switcher.open .trp-ls-list { display: block; }
.trp-ls-list a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; text-decoration: none;
}
.trp-ls-list img, .trp-ls-current img { width: 18px; height: 14px; }

@media (max-width: 1024px) {
  #page.page { padding-left: 0; padding-top: 56px; }
  .site-header {
    width: 100%;
    height: 56px;
    inset: 0 0 auto 0;
  }
  .site-header.open { width: 100%; height: auto; min-height: 56px; }
  .rail-cta { display: none; }
  .header-panel {
    position: static;
    width: 100%;
    padding: 64px 24px 24px;
  }
  .offer-grid, .split, .process-grid, .services-layout, .webinar-grid, .study-card, .footer-split, .team, .stats {
    grid-template-columns: 1fr;
  }
  .hero-inner { margin-left: 24px; padding-top: 100px; }
  .ask-chat { left: 24px; bottom: 80px; }
}

.hero-inner .btn { margin-left: 0; }
.page-hero { padding: 72px 0 24px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 52px); margin: 0 0 12px; }
.page-body { padding: 12px 0 110px; }
.cf-turnstile.checked .cf-box { background: #4c8bf5; }

.events-page { padding: 72px 0 110px; }
.events-page h1 { font-size: clamp(36px, 5vw, 52px); margin: 0 0 28px; }
.event-status { display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: #b42318; }
.event-status.attend { color: #067647; }
.lms-page { padding: 72px 0 110px; }
.lms-page h1 { font-size: clamp(32px, 4.5vw, 48px); max-width: 18ch; }
.lms-lead { font-size: 18px; max-width: 72ch; }
.lms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 36px 0; }
.lms-grid article { background: #f7f7f7; padding: 24px; }
.lms-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.page-404-demo { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.page-404-demo .code { font-size: clamp(72px, 12vw, 140px); font-weight: 800; line-height: 1; margin: 0; }
.quote-popup.thankyou-overlay { inset: 20% auto auto 50%; transform: translateX(-50%); }
.quote-popup.thankyou-overlay h2 { margin-top: 0; }
.wpcf7-response-output.wpcf7-mail-sent-ok { font-weight: 700; margin-bottom: 12px; }
.social-telegram { cursor: default; }
@media (max-width: 1024px) {
  .lms-grid, .lms-tools { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lms-grid, .lms-tools { grid-template-columns: 1fr; }
}

/* leftovers: 1280 TheGem charcoal rail, no logo row */
@media (min-width: 1280px) {
  .site-logo, .site-title, header .logo { display: none !important; }
  .rail-cta {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: 18px;
    bottom: 48px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
  }
  .site-header { background: #3a3a3a; }
}
.etn-not-found-post { text-align: center; font-weight: 700; padding: 24px 0; }

@media (min-width: 1025px) {
  body.header-layout-vertical #page.page {
    padding-left: var(--rail) !important;
  }
  body.header-layout-vertical #page.page:has(.site-header.open) {
    padding-left: var(--rail-open) !important;
  }
  html[dir="rtl"] body.header-layout-vertical #page.page {
    padding-left: 0 !important;
    padding-right: var(--rail) !important;
  }
  html[dir="rtl"] body.header-layout-vertical #page.page:has(.site-header.open) {
    padding-right: var(--rail-open) !important;
  }
}

/* below-fold TheGem 1280 */
@media (min-width: 1280px) {
  .process {
    padding: 105px 0 140px;
  }
  .process h2 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 800;
    color: #fff;
  }
  .process .subhead {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 30px;
  }
  .process .num {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    opacity: 1;
  }
  .process h3 {
    font-size: 25px;
    font-weight: 700;
  }
  .process .experience {
    font-size: 66px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 24px;
  }

  .services {
    padding: 0 0 80px;
  }
  .services h2 {
    font-size: 36px;
    margin: 30px 0 16px;
  }
  .services h2 a {
    color: #61CE70;
    text-decoration: none;
  }
  .services-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 30px;
  }
  .accordion details {
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding: 16px 0;
  }
  .accordion summary {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .accordion summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: #fff;
  }
  .accordion details[open] summary::after {
    content: "\2212";
  }
  .accordion p {
    color: #d7d7d7;
    margin: 12px 0 0;
  }
  .services-copy .rotated {
    color: #00FF9A;
    font-weight: 700;
    letter-spacing: .12em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    float: left;
    margin: 0 24px 0 0;
    height: 9em;
  }

  .webinar-intro {
    background: #fff;
    padding: 130px 0 75px;
  }
  .webinar-intro h2 {
    font-size: 52px;
    line-height: 1.15;
    margin: 8px 0 16px;
  }
  .webinar-intro .eyebrow {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
  }
  .webinar {
    background-color: #F2F2F2;
    padding: 120px 0 30px;
  }
  .webinar-grid {
    grid-template-columns: 1fr;
  }
  .team {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .team figcaption {
    background: #404040;
    color: #fff;
    text-align: center;
    padding: 15px 0 20px;
  }
  .team figcaption strong {
    color: #00FF9A;
    display: block;
    margin-bottom: 5px;
  }
  .stats {
    margin-top: 36px;
  }
  .stats div {
    background: #fff;
    box-shadow: 0 10px 10px rgba(0,0,0,.12);
    padding: 28px 12px;
  }
  .stats strong {
    font-size: 48px;
    color: #272727;
  }
  .stats span {
    color: #272727;
    font-weight: 700;
  }

  .news {
    padding: 140px 0 100px;
    background: #fff;
  }
  .study-card {
    gap: 42px;
  }
  .tag {
    background: #00FF9A;
    color: #242424;
  }

  .footer-follow-band {
    background: #fff;
    padding: 40px 0 28px;
    color: #272727;
  }
  .footer-follow-band .wrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 24px;
  }
  .footer-follow-band .follow-us,
  .footer-follow-band .footer-legal {
    grid-column: 1;
    min-width: 0;
    max-width: 100%;
    padding: 0 40px 0 56px;
  }
  .footer-follow-band h3 {
    font-size: 16px;
    text-transform: none;
    margin: 0 0 12px;
  }
  .footer-follow-band a {
    color: #272727;
    text-decoration: none;
  }
  .footer-follow-band .socials a,
  .footer-follow-band .socials .social-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #272727;
    color: #fff;
    overflow: hidden;
    flex: 0 0 40px;
  }
  .footer-follow-band .socials svg {
    width: 18px !important;
    height: 18px !important;
  }
  .footer-legal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    list-style: none;
    padding: 16px 0 0;
    margin: 0;
    max-width: 100%;
  }

  .site-footer {
    background: #272727;
  }
  .footer-split {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }
  .footer-dark {
    grid-column: 1;
    grid-row: 1;
    background: #272727;
    padding: 85px 40px 50px 56px;
  }
  .footer-dark > h3,
  .footer-visually-hidden-heading {
    font-size: 1px !important;
    line-height: 1px !important;
    color: #fff;
    height: 1px;
    overflow: hidden;
    margin: 0;
    -webkit-text-stroke-width: 0;
  }
  .footer-blurb {
    color: #00FF9A;
    font-weight: 600;
    max-width: min(46ch, calc(50% - 120px));
  }
  .footer-address,
  .footer-contact,
  .footer-copy {
    color: #fff;
    max-width: min(46ch, calc(50% - 120px));
  }
  .footer-contact a {
    color: #00FF9A;
  }
  .footer-green {
    background-color: #00FF9A;
    background-image: url("../img/cta-bg.png");
    background-position: bottom left;
    background-size: cover;
    color: #272727;
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    width: 50%;
    max-width: 50%;
    margin-top: -140px;
    margin-right: 56px;
    padding: 40px 56px 32px 64px;
    min-width: 0;
    overflow: hidden;
    z-index: 2;
  }
  .footer-green h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #272727;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .footer-green > p {
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 16px;
    max-width: 100%;
  }
  .footer-green .quote-form label,
  .footer-green .thegem-cf7 label {
    display: block;
    font-weight: 600;
    color: #272727;
    text-align: left;
  }
  .footer-green .wpcf7-form-control:not(.wpcf7-submit),
  .footer-green input[type="text"],
  .footer-green input[type="email"],
  .footer-green textarea {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #272727;
    background: transparent;
    padding: 6px 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #272727;
    border-radius: 0;
    box-shadow: none;
    outline: none;
  }
  .footer-green textarea {
    height: 88px;
    resize: vertical;
  }
  .footer-green .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 14px;
  }
  .footer-green .wpcf7-submit,
  .footer-green input[type="submit"] {
    display: inline-block;
    width: 180px !important;
    max-width: 100%;
    border: 0 !important;
    border-radius: 100px !important;
    padding: 10px 0 !important;
    margin: 24px 0 0 !important;
    background: #fff !important;
    color: #242424 !important;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
  }
  .footer-green .wpcf7-submit:hover,
  .footer-green input[type="submit"]:hover {
    background: #242424 !important;
    color: #fff !important;
  }
  .footer-green .cf-turnstile,
  .footer-green .wpcf7-turnstile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 12px 14px;
    width: min(300px, 100%);
    margin: 8px 0 18px;
    font-weight: 500;
    font-size: 14px;
    color: #272727;
  }
}

.quote-popup .wpcf7-submit,
.quote-popup input[type="submit"] {
  display: inline-block;
  width: 240px;
  border: 0;
  border-radius: 100px;
  padding: 15px 0;
  margin-top: 24px;
  background: #fff;
  color: #242424;
  font-weight: 700;
  cursor: pointer;
}

/* footer-only freeze */
.footer-visually-hidden-heading,
.site-footer .hidden-fields-container,
.site-footer .screen-reader-text,
.quote-popup .hidden-fields-container,
.quote-popup .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
