@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,400;0,700;1,700&display=swap";

* {
  box-sizing: border-box
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1a0a0d;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%
}

.topbar {
  background: linear-gradient(135deg, #761222 0%, #5a0e1a 100%);
  padding: 8px 0;
  border-bottom: 1px solid #fa1bb526
}

.topbarInner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.trustBadge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700
}

.trustBadge svg {
  width: 20px;
  height: 20px;
  fill: #02D4FF
}

.contactQuick {
  display: flex;
  align-items: center;
  gap: 20px
}

.contactQuickItem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: color .12s ease-out
}

.contactQuickItem:hover {
  color: #02D4FF
}

.contactQuickItem:focus {
  outline: 2px solid #02D4FF;
  outline-offset: 2px;
  border-radius: 2px
}

.contactQuickItem svg {
  width: 16px;
  height: 16px;
  fill: currentColor
}

.headerMain {
  background: #fff;
  padding: 20px 0;
  box-shadow: 2px 2px 2px 0 #7612220f 2px 7px 28px 0 #7612221c;
  position: relative
}

.headerMainInner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px
}

.brandBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.logoWrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #761222;
  border-radius: 12px;
  padding: 8px;
  background: linear-gradient(135deg, #fff 0%, #fef9fa 100%);
  box-shadow: 2px 2px 2px 0 #7612220f
}

.logoWrap img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.brandName {
  font-size: 16px;
  font-weight: 700;
  color: #761222;
  letter-spacing: .02em
}

.navPrimary {
  flex: 1;
  display: flex;
  justify-content: center
}

.navList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center
}

.navList li {
  margin: 0
}

.navList a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #1a0a0d;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color .1s ease-out, border-color .15s ease-out, background-color .15s ease-out;
  position: relative;
  overflow: hidden
}

.navList a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #02d4ff14 50%, transparent 100%);
  transition: left .4s ease-out
}

.navList a:hover {
  color: #761222;
  border-color: #761222;
  background-color: #76122208
}

.navList a:hover::before {
  left: 100%
}

.navList a:focus {
  outline: 2px solid #761222;
  outline-offset: 2px;
  color: #761222
}

.headerCta {
  display: flex;
  align-items: center
}

.ctaBtn {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #761222;
  background: transparent;
  border: 2px solid #761222;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease-out, color .12s ease-out, box-shadow .15s ease-out;
  position: relative;
  overflow: hidden
}

.ctaBtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #761222;
  transition: width .4s ease-out;
  z-index: -1
}

.ctaBtn:hover {
  color: #fff;
  box-shadow: 2px 7px 28px 0 #7612221c
}

.ctaBtn:hover::after {
  width: 100%
}

.ctaBtn:focus {
  outline: 2px solid #02D4FF;
  outline-offset: 2px
}

.footerMain {
  background: linear-gradient(180deg, #f8f8f9 0%, #fff 100%);
  padding: 80px 0 40px;
  border-top: 1px solid #7612221f
}

.footerInner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px
}

.footerColumns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative
}

.footerColumns::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #76122226 20%, #76122226 80%, transparent 100%)
}

.footerColumns::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #76122226 20%, #76122226 80%, transparent 100%)
}

.footerCol {
  position: relative
}

.footerCol:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #76122226 20%, #76122226 80%, transparent 100%)
}

.footerHeading {
  font-size: 16px;
  font-weight: 700;
  color: #761222;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.footerNavList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footerNavList a {
  display: inline-block;
  font-size: 15px;
  color: #1a0a0d;
  text-decoration: none;
  transition: color .1s ease-out, transform .12s ease-out;
  position: relative;
  padding-left: 20px
}

.footerNavList a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #761222;
  transition: width .15s ease-out
}

.footerNavList a:hover {
  color: #761222;
  transform: translateX(4px)
}

.footerNavList a:hover::before {
  width: 12px
}

.footerNavList a:focus {
  outline: 2px solid #761222;
  outline-offset: 2px;
  border-radius: 2px
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #1a0a0d
}

.contactInfoItem svg {
  width: 16px;
  height: 16px;
  fill: #761222;
  flex-shrink: 0;
  margin-top: 4px
}

.contactInfoItem a {
  color: #1a0a0d;
  text-decoration: none;
  transition: color .1s ease-out
}

.contactInfoItem a:hover {
  color: #761222
}

.contactInfoItem a:focus {
  outline: 2px solid #761222;
  outline-offset: 2px;
  border-radius: 2px
}

.trustIndicators {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.trustItem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #fff 0%, #fef9fa 100%);
  border-radius: 6px;
  border: 1px solid #7612221f;
  box-shadow: 2px 2px 2px 0 #7612220f
}

.trustItem svg {
  width: 20px;
  height: 20px;
  fill: #02D4FF;
  flex-shrink: 0
}

.trustItemText {
  font-size: 15px;
  color: #1a0a0d;
  font-weight: 700
}

.footerBottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #7612221f;
  margin-bottom: 40px
}

.footerLogoWrap {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #761222;
  border-radius: 12px;
  padding: 8px;
  background: linear-gradient(135deg, #fff 0%, #fef9fa 100%);
  box-shadow: 2px 2px 2px 0 #7612220f
}

.footerLogoWrap img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.copyright {
  text-align: center;
  font-size: 15px;
  color: #5a4a4d;
  margin: 0
}

.cookieConsent {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 720px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 2px 9px 36px 0 #7612221f;
  border: 1px solid #76122226;
  z-index: 1500;
  display: none;
  transform: translateY(0);
  transition: transform .26s ease-out, opacity .26s ease-out;
  opacity: 1
}

.cookieConsent.hiding {
  transform: translateY(-20px);
  opacity: 0
}

.cookieHeadline {
  font-size: 20px;
  font-weight: 700;
  color: #761222;
  margin: 0 0 12px
}

.cookieText {
  font-size: 15px;
  line-height: 1.55;
  color: #1a0a0d;
  margin: 0 0 20px
}

.cookieActions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.cookieBtn {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #761222;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color .15s ease-out, color .12s ease-out, box-shadow .15s ease-out;
  font-family: 'Montserrat', sans-serif
}

.cookieBtn.accept {
  background: #761222;
  color: #fff
}

.cookieBtn.accept:hover {
  background: #5a0e1a;
  box-shadow: 2px 7px 28px 0 #7612221c
}

.cookieBtn.accept:focus {
  outline: 2px solid #02D4FF;
  outline-offset: 2px
}

.cookieBtn.decline {
  background: transparent;
  color: #761222
}

.cookieBtn.decline:hover {
  background: #76122214;
  box-shadow: 2px 2px 2px 0 #7612220f
}

.cookieBtn.decline:focus {
  outline: 2px solid #761222;
  outline-offset: 2px
}

@media (max-width: 1280px) {
  .headerMainInner {
    flex-direction: column;
    gap: 20px
  }

  .navPrimary {
    width: 100%
  }

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

  .footerColumns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
  }

  .footerColumns::before {
    left: 50%
  }

  .footerColumns::after {
    display: none
  }

  .footerCol:nth-child(3)::after {
    display: none
  }
}

@media (max-width: 768px) {
  .topbarInner {
    flex-direction: column;
    gap: 12px
  }

  .contactQuick {
    flex-direction: column;
    gap: 8px;
    width: 100%
  }

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

  .headerMainInner {
    padding: 0 12px
  }

  .navList {
    flex-direction: column;
    width: 100%;
    gap: 8px
  }

  .navList a {
    width: 100%;
    text-align: center
  }

  .ctaBtn {
    width: 100%;
    text-align: center
  }

  .footerColumns {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .footerColumns::before,
  .footerColumns::after,
  .footerCol:nth-child(3)::after {
    display: none
  }

  .cookieConsent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
    max-width: none
  }

  .cookieActions {
    flex-direction: column
  }

  .cookieBtn {
    width: 100%
  }
}

.terms-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 20px
}

.terms-wrapper h1 {
  font-size: 64px;
  line-height: 1.1;
  color: #761222;
  margin-bottom: 40px
}

.terms-wrapper h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #761222;
  margin-top: 80px;
  margin-bottom: 20px
}

.terms-wrapper h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #761222;
  margin-top: 40px;
  margin-bottom: 12px
}

.terms-wrapper h4 {
  font-size: 16px;
  line-height: 1.35;
  color: #761222;
  margin-top: 40px;
  margin-bottom: 12px
}

.terms-wrapper h5 {
  font-size: 16px;
  line-height: 1.35;
  color: #761222;
  margin-top: 20px;
  margin-bottom: 8px
}

.terms-wrapper h6 {
  font-size: 15px;
  line-height: 1.35;
  color: #761222;
  margin-top: 20px;
  margin-bottom: 8px
}

.terms-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 20px
}

.terms-wrapper ul,
.terms-wrapper ol {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-left: 40px
}

.terms-wrapper li {
  margin-bottom: 8px
}

.terms-wrapper li:last-child {
  margin-bottom: 0
}

.terms-wrapper em,
.terms-wrapper i {
  font-style: italic
}

.terms-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.55;
  box-shadow: 2px 2px 2px 0 #7612220f;
  border-radius: 6px;
  overflow: hidden
}

.terms-wrapper thead {
  background: #761222;
  color: #fff
}

.terms-wrapper th {
  padding: 12px 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.35
}

.terms-wrapper td {
  padding: 12px 20px;
  border-bottom: 1px solid #7612221a
}

.terms-wrapper tbody tr:last-child td {
  border-bottom: none
}

.terms-wrapper tbody tr:nth-child(even) {
  background: #76122205
}

.terms-wrapper hr {
  border: none;
  height: 1px;
  background: #76122226;
  margin: 80px 0
}

@media (max-width: 768px) {
  .terms-wrapper {
    padding: 40px 20px
  }

  .terms-wrapper h1 {
    font-size: 34px;
    margin-bottom: 20px
  }

  .terms-wrapper h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 12px
  }

  .terms-wrapper h3 {
    font-size: 16px;
    margin-top: 20px
  }

  .terms-wrapper h4,
  .terms-wrapper h5,
  .terms-wrapper h6 {
    font-size: 15px;
    margin-top: 20px
  }

  .terms-wrapper p,
  .terms-wrapper ul,
  .terms-wrapper ol {
    font-size: 15px;
    line-height: 1.8
  }

  .terms-wrapper ul,
  .terms-wrapper ol {
    padding-left: 20px
  }

  .terms-wrapper table {
    font-size: 15px;
    margin-bottom: 20px
  }

  .terms-wrapper th,
  .terms-wrapper td {
    padding: 8px 12px;
    font-size: 15px
  }

  .terms-wrapper hr {
    margin: 40px 0
  }
}

.speakdetail {
  background: #fff;
  color: #1a1918;
  max-width: 1440px;
  margin: 0 auto
}

.speakdetail .titlezone {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(0deg, #fff 0%, #f5f5f5 100%);
  overflow: visible
}

.speakdetail .titlezone::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 2px solid #76122214;
  border-radius: 40px;
  transform: rotate(15deg)
}

.speakdetail .titlezone::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #02d4ff0d 0%, #fa1bb50d 100%);
  border-radius: 40px;
  transform: rotate(-12deg)
}

.speakdetail .titlecontent {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.speakdetail .topline {
  font-size: 15px;
  color: #761222;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px
}

.speakdetail .topline .dot {
  width: 6px;
  height: 6px;
  background: #02D4FF;
  border-radius: 2px;
  animation: dotpulse 2s ease-in-out infinite
}

@keyframes dotpulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(0.85)
  }
}

.speakdetail .maintitle {
  font-size: 64px;
  line-height: 1.1;
  color: #0a0908;
  margin: 0 0 20px;
  font-weight: 700
}

.speakdetail .metarow {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #5a5856
}

.speakdetail .metaitem {
  display: flex;
  align-items: center;
  gap: 8px
}

.speakdetail .metaicon {
  width: 16px;
  height: 16px;
  fill: #761222;
  opacity: .7
}

.speakdetail .heroimage {
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px
}

.speakdetail .heroimage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 2px 9px 36px 0 #7612221f
}

.speakdetail .articlecontent {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px
}

.speakdetail .articlecontent p {
  font-size: 16px;
  line-height: 1.8;
  color: #2d2c2a;
  margin: 0 0 20px
}

.speakdetail .articlecontent h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #0a0908;
  margin: 40px 0 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px
}

.speakdetail .articlecontent h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #761222 0%, #02D4FF 100%);
  border-radius: 2px
}

.speakdetail .articlecontent h3 {
  font-size: 20px;
  line-height: 1.55;
  color: #1a1918;
  margin: 40px 0 12px;
  font-weight: 600
}

.speakdetail .articlecontent small {
  font-size: 15px;
  color: #6a6967;
  display: block;
  margin: 8px 0
}

.speakdetail .articlecontent del {
  color: #8a8886;
  text-decoration: line-through
}

.speakdetail .articlecontent ul,
.speakdetail .articlecontent ol {
  margin: 0 0 20px;
  padding-left: 20px
}

.speakdetail .articlecontent li {
  font-size: 16px;
  line-height: 1.8;
  color: #2d2c2a;
  margin-bottom: 8px
}

.speakdetail .articlecontent table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 15px;
  box-shadow: 2px 2px 2px 0 #7612220f;
  border-radius: 6px;
  overflow: hidden
}

.speakdetail .articlecontent th {
  background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
  color: #1a1918;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #761222
}

.speakdetail .articlecontent td {
  padding: 12px;
  border-bottom: 1px solid #e8e8e8;
  color: #2d2c2a
}

.speakdetail .articlecontent tr:last-child td {
  border-bottom: none
}

.speakdetail .articlecontent tfoot td {
  background: #fafafa;
  font-weight: 600;
  color: #1a1918
}

.speakdetail .articlecontent details {
  margin: 20px 0;
  padding: 20px;
  background: #fafafa;
  border-left: 4px solid #761222;
  border-radius: 6px
}

.speakdetail .articlecontent summary {
  font-size: 16px;
  font-weight: 600;
  color: #1a1918;
  cursor: pointer;
  user-select: none;
  padding: 4px 0;
  transition: color .12s ease-out
}

.speakdetail .articlecontent summary:hover {
  color: #761222
}

.speakdetail .articlecontent details[open] summary {
  margin-bottom: 12px;
  color: #761222
}

.speakdetail .authorblock {
  background: linear-gradient(0deg, #fff 0%, #f9f9f9 100%);
  padding: 80px 20px;
  margin-top: 80px
}

.speakdetail .authorinner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-direction: row
}

.speakdetail .authorinfo {
  flex: 1
}

.speakdetail .authorlabel {
  font-size: 15px;
  text-transform: uppercase;
  color: #761222;
  margin-bottom: 8px;
  letter-spacing: .5px
}

.speakdetail .authorname {
  font-size: 34px;
  line-height: 1.35;
  color: #0a0908;
  margin: 0 0 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px
}

.speakdetail .authorname::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FA1BB5;
  border-radius: 2px;
  flex-shrink: 0
}

.speakdetail .authordesc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4948
}

.speakdetail .backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: #761222;
  border: 2px solid #761222;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .12s ease-out, color .12s ease-out;
  margin-top: 20px
}

.speakdetail .backlink:hover {
  background: #761222;
  color: #fff
}

.speakdetail .backlink:focus {
  outline: 2px solid #02D4FF;
  outline-offset: 2px
}

.speakdetail .zigzagblock {
  padding: 80px 20px;
  background: #fff
}

.speakdetail .zigzaginner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.speakdetail .zigzagtext {
  padding: 20px
}

.speakdetail .zigzagheading {
  font-size: 34px;
  line-height: 1.35;
  color: #0a0908;
  margin: 0 0 20px;
  font-weight: 600;
  position: relative;
  display: inline-block
}

.speakdetail .zigzagheading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -12px;
  width: 6px;
  height: 6px;
  background: #02D4FF;
  border-radius: 2px
}

.speakdetail .zigzagpara {
  font-size: 16px;
  line-height: 1.8;
  color: #2d2c2a;
  margin: 0 0 12px
}

.speakdetail .zigzagvisual {
  position: relative;
  padding: 40px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.speakdetail .icongroup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.speakdetail .iconitem {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 2px 0 #7612220f;
  position: relative;
  opacity: .4;
  transition: opacity .1s linear
}

.speakdetail .iconitem.active {
  opacity: 1;
  animation: iconhighlight 3s linear infinite
}

.speakdetail .iconitem:nth-child(1) {
  animation-delay: 0s
}

.speakdetail .iconitem:nth-child(2) {
  animation-delay: .5s
}

.speakdetail .iconitem:nth-child(3) {
  animation-delay: 1s
}

.speakdetail .iconitem:nth-child(4) {
  animation-delay: 1.5s
}

.speakdetail .iconitem:nth-child(5) {
  animation-delay: 2s
}

.speakdetail .iconitem:nth-child(6) {
  animation-delay: 2.5s
}

@keyframes iconhighlight {

  0%,
  20% {
    opacity: 1;
    transform: scale(1.1)
  }

  25%,
  100% {
    opacity: .4;
    transform: scale(1)
  }
}

.speakdetail .iconsvg {
  width: 32px;
  height: 32px;
  fill: #761222
}

.speakdetail .connectcurve {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  pointer-events: none
}

.speakdetail .curvepath {
  fill: none;
  stroke: #02d4ff4d;
  stroke-width: 2;
  stroke-dasharray: 8 4
}

.speakdetail .insightblock {
  background: linear-gradient(0deg, #fff 0%, #fafafa 100%);
  padding: 80px 20px;
  position: relative
}

.speakdetail .insightblock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, #761222 0px, #761222 12px, transparent 12px, transparent 20px, #761222 20px, #761222 40px, transparent 40px, transparent 48px);
  opacity: .3
}

.speakdetail .insightinner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px
}

.speakdetail .insightmain {
  padding: 20px
}

.speakdetail .insighttitle {
  font-size: 34px;
  line-height: 1.35;
  color: #0a0908;
  margin: 0 0 20px;
  font-weight: 600
}

.speakdetail .insighttext {
  font-size: 16px;
  line-height: 1.8;
  color: #2d2c2a;
  margin: 0 0 20px
}

.speakdetail .insightsidebar {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 2px 7px 28px 0 #7612221c;
  position: relative
}

.speakdetail .sidebarlabel {
  font-size: 15px;
  text-transform: uppercase;
  color: #761222;
  margin-bottom: 20px;
  letter-spacing: .5px
}

.speakdetail .statitem {
  margin-bottom: 40px;
  position: relative
}

.speakdetail .statitem::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 8px;
  width: 4px;
  height: 4px;
  background: #02D4FF;
  border-radius: 2px
}

.speakdetail .statvalue {
  font-size: 34px;
  line-height: 1.1;
  color: #761222;
  font-weight: 700;
  margin: 0 0 4px
}

.speakdetail .statlabel {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4948
}

.speakdetail .ctabutton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #761222;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .12s ease-out, transform .08s ease-out;
  margin-top: 20px
}

.speakdetail .ctabutton:hover {
  box-shadow: 2px 7px 28px 0 #7612221c;
  transform: translateY(-2px)
}

.speakdetail .ctabutton:focus {
  outline: 2px solid #02D4FF;
  outline-offset: 2px
}

.speakdetail .ctabutton:active {
  transform: translateY(0)
}

@media (max-width: 1280px) {
  .speakdetail .maintitle {
    font-size: 34px
  }

  .speakdetail .zigzaginner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .speakdetail .insightinner {
    grid-template-columns: 1fr
  }

  .speakdetail .insightsidebar {
    padding: 20px
  }
}

@media (max-width: 768px) {
  .speakdetail .titlezone {
    padding: 40px 20px
  }

  .speakdetail .maintitle {
    font-size: 34px
  }

  .speakdetail .metarow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .speakdetail .heroimage {
    margin: 40px auto
  }

  .speakdetail .articlecontent {
    padding: 20px 20px 40px
  }

  .speakdetail .articlecontent h2 {
    font-size: 20px;
    margin: 20px 0 12px
  }

  .speakdetail .articlecontent h3 {
    font-size: 16px
  }

  .speakdetail .articlecontent table {
    font-size: 15px;
    display: block;
    overflow-x: auto
  }

  .speakdetail .authorblock {
    padding: 40px 20px;
    margin-top: 40px
  }

  .speakdetail .authorinner {
    flex-direction: column;
    gap: 20px
  }

  .speakdetail .authorname {
    font-size: 20px
  }

  .speakdetail .zigzagblock {
    padding: 40px 20px
  }

  .speakdetail .zigzagheading {
    font-size: 20px
  }

  .speakdetail .zigzagvisual {
    padding: 20px
  }

  .speakdetail .icongroup {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .speakdetail .iconitem {
    width: 50px;
    height: 50px
  }

  .speakdetail .iconsvg {
    width: 24px;
    height: 24px
  }

  .speakdetail .insightblock {
    padding: 40px 20px
  }

  .speakdetail .insighttitle {
    font-size: 20px
  }

  .speakdetail .insightsidebar {
    padding: 20px
  }

  .speakdetail .statvalue {
    font-size: 20px
  }

  .speakdetail .statitem {
    margin-bottom: 20px
  }
}

.financeguard {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a
}

.financeguard .titlezone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 40px 80px;
  background: linear-gradient(0deg, #fff 0%, #76122208 100%);
  min-height: 460px
}

.financeguard .titlecontent {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.financeguard .titlecontent h1 {
  font-size: 64px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700
}

.financeguard .titlecontent h1 .accent {
  color: #761222
}

.financeguard .titlecontent .leadtext {
  font-size: 20px;
  line-height: 1.55;
  color: #333;
  margin: 0
}

.financeguard .titlecontent .mainlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.35;
  color: #761222;
  text-decoration: none;
  padding: 12px 20px;
  border: 2px solid #761222;
  border-radius: 6px;
  background: transparent;
  transition: background .12s ease-out, color .09s linear;
  width: fit-content
}

.financeguard .titlecontent .mainlink:hover {
  background: #761222;
  color: #fff
}

.financeguard .titlevisual {
  flex: 1 1 35%;
  display: flex;
  align-items: center;
  justify-content: center
}

.financeguard .titlevisual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  filter: brightness(1.1) saturate(0.85) sepia(0.15) hue-rotate(5deg)
}

.financeguard .peerzone {
  padding: 80px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.financeguard .peerzone::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 280px;
  height: 280px;
  border: 1px solid #76122214;
  border-radius: 50%;
  pointer-events: none
}

.financeguard .peerzone::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 240px;
  height: 240px;
  border: 1px solid #7612220f;
  border-radius: 50%;
  pointer-events: none
}

.financeguard .peercontent {
  max-width: 720px;
  margin: 0 auto;
  text-align: left
}

.financeguard .peercontent h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-weight: 600
}

.financeguard .peercontent h2::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #02D4FF;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle
}

.financeguard .peercontent .peergrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px
}

.financeguard .peercontent .peercard {
  background: #fff;
  border: 1px solid #7612221a;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 2px 2px 0 #7612220f;
  transition: box-shadow .11s ease-out, transform .09s linear
}

.financeguard .peercontent .peercard:hover {
  box-shadow: 2px 7px 28px 0 #7612221c;
  transform: translateY(-2px)
}

.financeguard .peercontent .peercard .cardicon {
  width: 48px;
  height: 48px;
  background: linear-gradient(0deg, #02d4ff1f 0%, #76122214 100%);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.financeguard .peercontent .peercard .cardicon svg {
  width: 24px;
  height: 24px;
  fill: #761222
}

.financeguard .peercontent .peercard h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600
}

.financeguard .peercontent .peercard p {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin: 0
}

.financeguard .conditionzone {
  padding: 80px;
  background: linear-gradient(0deg, #fa1bb50a 0%, #fff 100%);
  border-top: 1px solid #76122214;
  border-bottom: 1px solid #76122214
}

.financeguard .conditionlayout {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.financeguard .conditiontext {
  flex: 1 1 50%
}

.financeguard .conditiontext h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-weight: 600
}

.financeguard .conditiontext h2::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #FA1BB5;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle
}

.financeguard .conditiontext .conditionlist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px
}

.financeguard .conditiontext .conditionitem {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start
}

.financeguard .conditiontext .conditionitem .itemmarker {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #761222;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .1s ease-out, border-color .08s linear
}

.financeguard .conditiontext .conditionitem:hover .itemmarker {
  background: #761222
}

.financeguard .conditiontext .conditionitem .itemmarker svg {
  width: 16px;
  height: 16px;
  fill: #761222;
  transition: fill .08s linear
}

.financeguard .conditiontext .conditionitem:hover .itemmarker svg {
  fill: #fff
}

.financeguard .conditiontext .conditionitem .itemtext {
  flex: 1
}

.financeguard .conditiontext .conditionitem h4 {
  font-size: 16px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 4px;
  font-weight: 600
}

.financeguard .conditiontext .conditionitem p {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin: 0
}

.financeguard .conditionvisual {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.financeguard .conditionvisual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 2px 9px 36px 0 #7612221f
}

.financeguard .supportzone {
  padding: 80px 200px;
  background: #fff;
  position: relative
}

.financeguard .supportzone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="#76122205" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="#7612220f"/></svg>');
  background-size: 80px 80px;
  opacity: .4;
  pointer-events: none
}

.financeguard .supportcontent {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: left
}

.financeguard .supportcontent h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-weight: 600;
  text-align: center
}

.financeguard .supportcontent h2::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #02D4FF;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle
}

.financeguard .supportcontent .supportintro {
  font-size: 16px;
  line-height: 1.55;
  color: #333;
  margin: 0 0 40px;
  text-align: center
}

.financeguard .supportcontent .supportgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px
}

.financeguard .supportcontent .supportblock {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.financeguard .supportcontent .supportblock h5 {
  font-size: 16px;
  line-height: 1.35;
  color: #761222;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 15px
}

.financeguard .supportcontent .supportblock p {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin: 0
}

.financeguard .supportcontent .supportblock .supportfeature {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-top: 8px
}

.financeguard .supportcontent .supportblock .supportfeature .featuredot {
  width: 8px;
  height: 8px;
  background: #FA1BB5;
  border-radius: 50%;
  flex-shrink: 0
}

.financeguard .supportcontent .supportblock .supportfeature span {
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a
}

.financeguard .proofzone {
  padding: 80px;
  background: linear-gradient(0deg, #fff 0%, #02d4ff0d 100%);
  border-top: 1px solid #76122214
}

.financeguard .prooflayout {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center
}

.financeguard .proofvisual {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.financeguard .proofvisual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 2px 7px 28px 0 #02d4ff1c
}

.financeguard .proofcontent {
  flex: 1 1 60%
}

.financeguard .proofcontent h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-weight: 600
}

.financeguard .proofcontent h2 .bracket {
  color: #02D4FF
}

.financeguard .proofcontent .prooftext {
  font-size: 16px;
  line-height: 1.55;
  color: #333;
  margin: 0 0 40px
}

.financeguard .proofcontent .radarchart {
  width: 100%;
  max-width: 480px;
  height: 380px;
  position: relative;
  margin: 0 auto
}

.financeguard .proofcontent .radarchart svg {
  width: 100%;
  height: 100%
}

.financeguard .proofcontent .radarchart .chartaxis {
  stroke: #76122226;
  stroke-width: 1;
  fill: none
}

.financeguard .proofcontent .radarchart .chartgrid {
  stroke: #76122214;
  stroke-width: 1;
  fill: none
}

.financeguard .proofcontent .radarchart .chartdata {
  fill: #02d4ff33;
  stroke: #02D4FF;
  stroke-width: 2
}

.financeguard .proofcontent .radarchart .chartpoint {
  fill: #761222;
  stroke: #fff;
  stroke-width: 2
}

.financeguard .proofcontent .radarchart .chartlabel {
  font-size: 15px;
  fill: #1a1a1a;
  font-weight: 500
}

.financeguard .proofcontent .testimonialbox {
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid #FA1BB5;
  border-radius: 6px;
  box-shadow: 2px 2px 2px 0 #fa1bb50f
}

.financeguard .proofcontent .testimonialbox .testimonialmeta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px
}

.financeguard .proofcontent .testimonialbox .testimonialmeta img {
  width: 56px;
  height: 70px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px
}

.financeguard .proofcontent .testimonialbox .testimonialmeta .metainfo {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.financeguard .proofcontent .testimonialbox .testimonialmeta .metainfo h6 {
  font-size: 16px;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600
}

.financeguard .proofcontent .testimonialbox .testimonialmeta .metainfo .metarole {
  font-size: 15px;
  line-height: 1.35;
  color: #666;
  margin: 0
}

.financeguard .proofcontent .testimonialbox .testimonialtext {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin: 0;
  font-style: italic
}

@media (max-width: 1280px) {
  .financeguard .titlezone {
    padding: 40px
  }

  .financeguard .peerzone {
    padding: 80px 40px
  }

  .financeguard .peercontent .peergrid {
    grid-template-columns: 1fr 1fr
  }

  .financeguard .conditionzone {
    padding: 80px 40px
  }

  .financeguard .conditionlayout {
    gap: 40px
  }

  .financeguard .supportzone {
    padding: 80px
  }

  .financeguard .proofzone {
    padding: 80px 40px
  }

  .financeguard .prooflayout {
    gap: 40px
  }
}

@media (max-width: 768px) {
  .financeguard .titlezone {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    min-height: auto
  }

  .financeguard .titlecontent {
    flex: 1 1 100%
  }

  .financeguard .titlecontent h1 {
    font-size: 34px
  }

  .financeguard .titlecontent .leadtext {
    font-size: 16px
  }

  .financeguard .titlevisual {
    flex: 1 1 100%;
    width: 100%
  }

  .financeguard .titlevisual img {
    height: 280px
  }

  .financeguard .peerzone {
    padding: 40px 20px
  }

  .financeguard .peercontent h2 {
    font-size: 20px
  }

  .financeguard .peercontent .peergrid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .financeguard .conditionzone {
    padding: 40px 20px
  }

  .financeguard .conditionlayout {
    flex-direction: column;
    gap: 40px
  }

  .financeguard .conditiontext {
    flex: 1 1 100%
  }

  .financeguard .conditiontext h2 {
    font-size: 20px
  }

  .financeguard .conditionvisual {
    flex: 1 1 100%;
    width: 100%
  }

  .financeguard .conditionvisual img {
    height: 320px
  }

  .financeguard .supportzone {
    padding: 40px 20px
  }

  .financeguard .supportcontent h2 {
    font-size: 20px
  }

  .financeguard .supportcontent .supportgrid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .financeguard .proofzone {
    padding: 40px 20px
  }

  .financeguard .prooflayout {
    flex-direction: column-reverse;
    gap: 40px
  }

  .financeguard .proofvisual {
    flex: 1 1 100%
  }

  .financeguard .proofvisual img {
    height: 240px
  }

  .financeguard .proofcontent {
    flex: 1 1 100%
  }

  .financeguard .proofcontent h2 {
    font-size: 20px
  }

  .financeguard .proofcontent .radarchart {
    height: 320px
  }
}

@keyframes columnReveal {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.financeguard .peercontent .peercard:nth-child(1) {
  animation: columnReveal .4s ease-out .1s both
}

.financeguard .peercontent .peercard:nth-child(2) {
  animation: columnReveal .4s ease-out .2s both
}

.financeguard .peercontent .peercard:nth-child(3) {
  animation: columnReveal .4s ease-out .3s both
}

.financeguard .peercontent .peercard:nth-child(4) {
  animation: columnReveal .4s ease-out .1s both
}

.financeguard .peercontent .peercard:nth-child(5) {
  animation: columnReveal .4s ease-out .2s both
}

.financeguard .peercontent .peercard:nth-child(6) {
  animation: columnReveal .4s ease-out .3s both
}

.reachout {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff
}

.reachout .introtop {
  background: #761222;
  position: relative;
  padding: 40px 20px;
  overflow: hidden
}

.reachout .introtop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, #fa1bb526, transparent 60%);
  pointer-events: none
}

.reachout .introtop::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #02D4FF 0%, #02d4ff00 100%);
  clip-path: polygon(0 0, 4% 100%, 8% 0, 12% 100%, 16% 0, 20% 100%, 24% 0, 28% 100%, 32% 0, 36% 100%, 40% 0, 44% 100%, 48% 0, 52% 100%, 56% 0, 60% 100%, 64% 0, 68% 100%, 72% 0, 76% 100%, 80% 0, 84% 100%, 88% 0, 92% 100%, 96% 0, 100% 100%, 100% 100%, 0 100%)
}

.reachout .introtop .shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden
}

.reachout .introtop .shapecirc {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid #02d4ff33;
  border-radius: 40px;
  top: 20px;
  right: 80px;
  transform: rotate(15deg)
}

.reachout .introtop .shapetri {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #fa1bb526;
  bottom: 40px;
  left: 12%;
  transform: rotate(-25deg)
}

.reachout .introtop .innerlayout {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.reachout .introtop h1 {
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0
}

.reachout .introtop .theseslist {
  list-style: none;
  padding: 0;
  margin: 0
}

.reachout .introtop .theseslist li {
  font-size: 20px;
  line-height: 1.55;
  color: #fffffff2;
  margin: 0 0 8px;
  padding-left: 28px;
  position: relative
}

.reachout .introtop .theseslist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: #02D4FF
}

@media (max-width: 768px) {
  .reachout .introtop {
    padding: 40px 20px
  }

  .reachout .introtop h1 {
    font-size: 34px
  }

  .reachout .introtop .theseslist li {
    font-size: 16px
  }

  .reachout .introtop .shapecirc {
    width: 100px;
    height: 100px;
    right: 20px
  }
}

.reachout .comparelayer {
  padding: 80px 20px;
  background: #fafcfd;
  position: relative
}

.reachout .comparelayer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #76122205 0%, #fff0 100%);
  pointer-events: none
}

.reachout .comparelayer .innerlayout {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.reachout .comparelayer h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1d21;
  margin: 0 0 40px;
  position: relative;
  display: inline-block
}

.reachout .comparelayer h2::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #FA1BB5;
  border-radius: 2px
}

.reachout .comparelayer .dualgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.reachout .comparelayer .optioncard {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 2px 7px 28px 0 #7612221c;
  position: relative;
  transition: transform .12s ease-out, box-shadow .12s ease-out
}

.reachout .comparelayer .optioncard:hover {
  transform: translateY(-4px);
  box-shadow: 2px 9px 36px 0 #7612221f
}

.reachout .comparelayer .optioncard.highlighted {
  border: 2px solid #02D4FF
}

.reachout .comparelayer .optioncard h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #1a1d21;
  margin: 0 0 20px;
  text-transform: uppercase
}

.reachout .comparelayer .optioncard .featureset {
  list-style: none;
  padding: 0;
  margin: 0 0 20px
}

.reachout .comparelayer .optioncard .featureset li {
  font-size: 15px;
  line-height: 1.8;
  color: #3d4449;
  margin: 0 0 12px;
  padding-left: 24px;
  position: relative
}

.reachout .comparelayer .optioncard .featureset li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid #761222;
  border-radius: 2px
}

.reachout .comparelayer .optioncard.highlighted .featureset li::before {
  background: #02D4FF;
  border-color: #02D4FF
}

.reachout .comparelayer .optioncard .note {
  font-size: 15px;
  line-height: 1.55;
  color: #5a6169;
  font-style: italic
}

.reachout .comparelayer .statrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  animation: vignettebreath 4s ease-in-out infinite
}

@keyframes vignettebreath {

  0%,
  100% {
    box-shadow: inset 0 0 40px #76122214
  }

  50% {
    box-shadow: inset 0 0 80px #76122226
  }
}

.reachout .comparelayer .statbox {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 2px 2px 2px 0 #02d4ff0f;
  position: relative;
  overflow: hidden
}

.reachout .comparelayer .statbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #761222 0%, #fff 100%)
}

.reachout .comparelayer .statbox .num {
  font-size: 34px;
  line-height: 1.1;
  color: #761222;
  margin: 0 0 8px;
  font-weight: 700
}

.reachout .comparelayer .statbox .label {
  font-size: 15px;
  line-height: 1.35;
  color: #5a6169;
  text-transform: uppercase
}

@media (max-width: 1280px) {
  .reachout .comparelayer .dualgrid {
    gap: 20px
  }

  .reachout .comparelayer .statrow {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .reachout .comparelayer {
    padding: 40px 20px
  }

  .reachout .comparelayer h2 {
    font-size: 20px;
    margin-bottom: 20px
  }

  .reachout .comparelayer .dualgrid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .reachout .comparelayer .optioncard {
    padding: 20px
  }

  .reachout .comparelayer .statrow {
    grid-template-columns: 1fr;
    gap: 12px
  }
}

.reachout .formsplit {
  padding: 80px 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><rect fill="%23f5f7f9" width="1440" height="800"/><circle cx="200" cy="150" r="300" fill="%23761222" opacity="0.03"/><circle cx="1200" cy="600" r="400" fill="%2302D4FF" opacity="0.02"/></svg>') no-repeat center center;
  background-size: cover;
  position: relative
}

.reachout .formsplit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffffd9;
  pointer-events: none
}

.reachout .formsplit .innerlayout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  position: relative;
  z-index: 1
}

.reachout .formsplit .leftinfo {
  padding: 40px 20px
}

.reachout .formsplit .leftinfo h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1d21;
  margin: 0 0 20px
}

.reachout .formsplit .leftinfo .desc {
  font-size: 16px;
  line-height: 1.8;
  color: #3d4449;
  margin: 0 0 40px
}

.reachout .formsplit .contactitems {
  list-style: none;
  padding: 0;
  margin: 0
}

.reachout .formsplit .contactitems li {
  margin: 0 0 20px
}

.reachout .formsplit .contactitems .itemlabel {
  font-size: 15px;
  line-height: 1.35;
  color: #5a6169;
  text-transform: uppercase;
  display: block;
  margin: 0 0 4px
}

.reachout .formsplit .contactitems .itemvalue {
  font-size: 16px;
  line-height: 1.55;
  color: #1a1d21;
  display: block
}

.reachout .formsplit .contactitems a {
  color: #761222;
  text-decoration: none;
  transition: opacity .1s linear
}

.reachout .formsplit .contactitems a:hover {
  opacity: .7
}

.reachout .formsplit .rightform {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 2px 9px 36px 0 #7612221f
}

.reachout .formsplit .rightform h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #1a1d21;
  margin: 0 0 20px;
  position: relative;
  display: inline-block
}

.reachout .formsplit .rightform h3::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #FA1BB5;
  border-radius: 2px
}

.reachout .formsplit .formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.reachout .formsplit .fieldwrap {
  display: flex;
  flex-direction: column
}

.reachout .formsplit .fieldwrap.full {
  grid-column: 1 / -1
}

.reachout .formsplit .fieldwrap label {
  font-size: 15px;
  line-height: 1.35;
  color: #3d4449;
  margin: 0 0 8px;
  display: block
}

.reachout .formsplit .fieldwrap input,
.reachout .formsplit .fieldwrap select {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1d21;
  background: #fafcfd;
  border: 2px solid #e8ebee;
  border-radius: 6px;
  transition: border-color .1s ease-out, background .1s ease-out;
  appearance: none
}

.reachout .formsplit .fieldwrap input::placeholder {
  color: #9ca3ab
}

.reachout .formsplit .fieldwrap input:focus,
.reachout .formsplit .fieldwrap select:focus {
  outline: none;
  border-color: #02D4FF;
  background: #fff
}

.reachout .formsplit .fieldwrap input:focus-visible,
.reachout .formsplit .fieldwrap select:focus-visible {
  outline: 3px solid #02d4ff4d !important;
  outline-offset: 2px !important
}

.reachout .formsplit .fieldwrap select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23761222" d="M4 6l4 4 4-4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer
}

.reachout .formsplit .interestarea {
  margin: 20px 0
}

.reachout .formsplit .interestarea .arealabel {
  font-size: 15px;
  line-height: 1.35;
  color: #3d4449;
  margin: 0 0 12px;
  display: block
}

.reachout .formsplit .checkgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.reachout .formsplit .checkitem {
  display: flex;
  align-items: center;
  gap: 8px
}

.reachout .formsplit .checkitem input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #761222
}

.reachout .formsplit .checkitem input[type="checkbox"]:focus-visible {
  outline: 3px solid #02d4ff4d !important;
  outline-offset: 2px !important
}

.reachout .formsplit .checkitem label {
  font-size: 15px;
  line-height: 1.35;
  color: #3d4449;
  margin: 0;
  cursor: pointer
}

.reachout .formsplit .privacywrap {
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.reachout .formsplit .privacywrap input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #761222
}

.reachout .formsplit .privacywrap input[type="checkbox"]:focus-visible {
  outline: 3px solid #02d4ff4d !important;
  outline-offset: 2px !important
}

.reachout .formsplit .privacywrap label {
  font-size: 15px;
  line-height: 1.55;
  color: #3d4449;
  margin: 0
}

.reachout .formsplit .privacywrap a {
  color: #761222;
  text-decoration: underline;
  transition: opacity .1s linear
}

.reachout .formsplit .privacywrap a:hover {
  opacity: .7
}

.reachout .formsplit .submitbtn {
  width: 100%;
  padding: 16px 40px;
  font-size: 16px;
  line-height: 1.35;
  color: #761222;
  background: transparent;
  border: 2px solid #761222;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .15s ease-out, color .15s ease-out, border-color .15s ease-out;
  position: relative;
  overflow: hidden
}

.reachout .submitbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #761222;
  transition: left .4s ease-out;
  z-index: -1
}

.reachout .submitbtn:hover::before {
  left: 0
}

.reachout .submitbtn:hover {
  color: #fff;
  border-color: #761222
}

.reachout .submitbtn:focus-visible {
  outline: 3px solid #02d4ff80 !important;
  outline-offset: 4px !important
}

@media (max-width: 1280px) {
  .reachout .formsplit .innerlayout {
    grid-template-columns: 35% 65%;
    gap: 20px
  }
}

@media (max-width: 768px) {
  .reachout .formsplit {
    padding: 40px 20px
  }

  .reachout .formsplit .innerlayout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .reachout .formsplit .leftinfo {
    padding: 0
  }

  .reachout .formsplit .leftinfo h2 {
    font-size: 20px
  }

  .reachout .formsplit .rightform {
    padding: 20px
  }

  .reachout .formsplit .formgrid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .reachout .formsplit .checkgrid {
    grid-template-columns: 1fr
  }
}

.speakingpg {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.speakingpg .titlezone {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 480px;
  position: relative;
  background: #fefefe
}

.speakingpg .titlezone .txtside {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  position: relative;
  z-index: 2
}

.speakingpg .titlezone .imgside {
  flex: 1;
  position: relative;
  overflow: hidden
}

.speakingpg .titlezone .imgside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative
}

.speakingpg .titlezone .imgside::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7612222e;
  pointer-events: none;
  z-index: 1
}

.speakingpg .titlezone h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #0a0a0a;
  font-weight: 700
}

.speakingpg .titlezone .tagline {
  font-size: 20px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  max-width: 520px
}

.speakingpg .postsgrid {
  padding: 80px 40px;
  background: #fafafa;
  position: relative
}

.speakingpg .postsgrid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #02D4FF;
  border-radius: 40px;
  opacity: .7
}

.speakingpg .postsgrid::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% + 40px);
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #FA1BB5;
  border-radius: 40px;
  opacity: .5
}

.speakingpg .gridwrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px
}

.speakingpg .postcard {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 7px 28px 0 #7612221c;
  transition: transform .12s ease-out, box-shadow .12s ease-out;
  display: flex;
  flex-direction: column
}

.speakingpg .postcard:hover {
  transform: translateY(-4px);
  box-shadow: 2px 9px 36px 0 #7612221f
}

.speakingpg .postcard .imgwrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative
}

.speakingpg .postcard .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .14s ease-out
}

.speakingpg .postcard:hover .imgwrap img {
  transform: scale(1.05)
}

.speakingpg .postcard .txtcontent {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.speakingpg .postcard .metatop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #6a6a6a
}

.speakingpg .postcard .metatop .dateitem {
  display: flex;
  align-items: center;
  gap: 4px
}

.speakingpg .postcard .metatop .readitem {
  display: flex;
  align-items: center;
  gap: 4px
}

.speakingpg .postcard .metatop .sep {
  width: 3px;
  height: 3px;
  background: #ccc;
  border-radius: 40px
}

.speakingpg .postcard h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #0a0a0a;
  font-weight: 600
}

.speakingpg .postcard h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .1s linear
}

.speakingpg .postcard h3 a:hover {
  color: #761222
}

.speakingpg .postcard .excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 20px;
  flex: 1
}

.speakingpg .postcard .authorsect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #eee
}

.speakingpg .postcard .authorsect .authorname {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 500
}

.speakingpg .postcard .authorsect .readlink {
  font-size: 15px;
  color: #761222;
  text-decoration: none;
  transition: opacity .09s linear;
  display: flex;
  align-items: center;
  gap: 4px
}

.speakingpg .postcard .authorsect .readlink:hover {
  opacity: .7
}

.speakingpg .postcard .authorsect .readlink::after {
  content: '→';
  display: inline-block;
  transition: transform .1s ease-out
}

.speakingpg .postcard:hover .authorsect .readlink::after {
  transform: translateX(3px)
}

.speakingpg .insightsec {
  padding: 80px 40px;
  background: linear-gradient(0deg, #7612220a 0%, #fff 100%);
  position: relative;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
  margin-top: -40px
}

.speakingpg .insightsec .contentwrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.speakingpg .insightsec .leftcol h2 {
  font-size: 34px;
  line-height: 1.35;
  margin: 0 0 20px;
  color: #0a0a0a;
  font-weight: 600;
  position: relative;
  display: inline-block
}

.speakingpg .insightsec .leftcol h2::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #02D4FF;
  border-radius: 40px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle
}

.speakingpg .insightsec .leftcol p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0 0 20px
}

.speakingpg .insightsec .rightcol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.speakingpg .insightsec .statbox {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 2px 2px 2px 0 #02d4ff0f;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden
}

.speakingpg .insightsec .statbox::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #02d4ff14 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulseexpand 4s ease-in-out infinite;
  pointer-events: none
}

@keyframes pulseexpand {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .6
  }

  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: .2
  }
}

.speakingpg .insightsec .statbox .number {
  font-size: 34px;
  line-height: 1.1;
  color: #761222;
  font-weight: 700;
  margin: 0 0 8px;
  position: relative;
  z-index: 1
}

.speakingpg .insightsec .statbox .label {
  font-size: 15px;
  line-height: 1.35;
  color: #5a5a5a;
  margin: 0;
  position: relative;
  z-index: 1
}

.speakingpg .approachsec {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.speakingpg .approachsec .contentwrap {
  max-width: 900px;
  margin: 0 auto
}

.speakingpg .approachsec h2 {
  font-size: 34px;
  line-height: 1.35;
  margin: 0 0 40px;
  color: #0a0a0a;
  font-weight: 600;
  text-align: center;
  position: relative
}

.speakingpg .approachsec h2::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: #FA1BB5;
  border-radius: 40px
}

.speakingpg .approachsec h2::after {
  content: '';
  position: absolute;
  left: calc(50% + 12px);
  top: -20px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #02D4FF;
  border-radius: 40px
}

.speakingpg .approachsec .quotewrap {
  background: #fafafa;
  border-left: 4px solid #761222;
  padding: 40px;
  margin: 0 0 40px;
  position: relative;
  border-radius: 2px;
  box-shadow: 2px 2px 2px 0 #7612220f
}

.speakingpg .approachsec .quotewrap::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 64px;
  line-height: 1;
  color: #7612221f;
  font-weight: 700;
  font-family: Georgia, serif
}

.speakingpg .approachsec .quotewrap .quotetext {
  font-size: 20px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0;
  padding-left: 60px;
  font-style: italic
}

.speakingpg .approachsec p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0 0 20px
}

.speakingpg .engagementsec {
  padding: 80px 40px;
  background: #fafafa;
  position: relative
}

.speakingpg .engagementsec .contentwrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px
}

.speakingpg .engagementsec .sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 2px 7px 28px 0 #7612221c;
  height: fit-content;
  position: sticky;
  top: 20px
}

.speakingpg .engagementsec .sidebar h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 20px;
  color: #0a0a0a;
  font-weight: 600
}

.speakingpg .engagementsec .sidebar h3::after {
  content: '';
  width: 4px;
  height: 4px;
  background: #FA1BB5;
  border-radius: 40px;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle
}

.speakingpg .engagementsec .sidebar .innergrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.speakingpg .engagementsec .sidebar .minibox {
  background: #fafafa;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  border: 1px solid #eee
}

.speakingpg .engagementsec .sidebar .minibox .minivalue {
  font-size: 20px;
  line-height: 1.1;
  color: #761222;
  font-weight: 700;
  margin: 0 0 4px
}

.speakingpg .engagementsec .sidebar .minibox .minilabel {
  font-size: 15px;
  line-height: 1.35;
  color: #5a5a5a;
  margin: 0
}

.speakingpg .engagementsec .maincontent h2 {
  font-size: 34px;
  line-height: 1.35;
  margin: 0 0 20px;
  color: #0a0a0a;
  font-weight: 600
}

.speakingpg .engagementsec .maincontent h2::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #02D4FF;
  border-radius: 40px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle
}

.speakingpg .engagementsec .maincontent p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0 0 20px
}

.speakingpg .engagementsec .maincontent .topiclist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px
}

.speakingpg .engagementsec .maincontent .topicitem {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 2px 2px 2px 0 #02d4ff0f;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color .11s ease-out
}

.speakingpg .engagementsec .maincontent .topicitem:hover {
  border-color: #02D4FF
}

.speakingpg .engagementsec .maincontent .topicitem .iconarea {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: linear-gradient(135deg, #02d4ff1f 0%, #fa1bb51f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.speakingpg .engagementsec .maincontent .topicitem .iconarea svg {
  width: 24px;
  height: 24px;
  fill: #761222
}

.speakingpg .engagementsec .maincontent .topicitem .topictxt h4 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 4px;
  color: #0a0a0a;
  font-weight: 600
}

.speakingpg .engagementsec .maincontent .topicitem .topictxt p {
  font-size: 15px;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0
}

.speakingpg .dividerdouble {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #eee 50%, transparent 100%);
  position: relative;
  margin: 0
}

.speakingpg .dividerdouble::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #eee 50%, transparent 100%)
}

@media (max-width: 1280px) {
  .speakingpg .insightsec .contentwrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .speakingpg .engagementsec .contentwrap {
    grid-template-columns: 1fr
  }

  .speakingpg .engagementsec .sidebar {
    position: static
  }
}

@media (max-width: 768px) {
  .speakingpg .titlezone {
    flex-direction: column
  }

  .speakingpg .titlezone .txtside {
    padding: 40px 20px
  }

  .speakingpg .titlezone .imgside {
    min-height: 280px
  }

  .speakingpg .titlezone h1 {
    font-size: 34px
  }

  .speakingpg .titlezone .tagline {
    font-size: 16px
  }

  .speakingpg .postsgrid {
    padding: 40px 20px
  }

  .speakingpg .gridwrap {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .speakingpg .insightsec {
    padding: 40px 20px
  }

  .speakingpg .insightsec .rightcol {
    grid-template-columns: 1fr
  }

  .speakingpg .approachsec {
    padding: 40px 20px
  }

  .speakingpg .approachsec .quotewrap {
    padding: 20px
  }

  .speakingpg .approachsec .quotewrap .quotetext {
    padding-left: 40px;
    font-size: 16px
  }

  .speakingpg .engagementsec {
    padding: 40px 20px
  }

  .speakingpg .engagementsec .sidebar .innergrid {
    grid-template-columns: 1fr
  }
}

.abtus {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff
}

.abtus .herozone {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.abtus .herozone::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 40px;
  width: 80px;
  height: 60px;
  background: linear-gradient(90deg, #761222 0%, #761222 100%) 0 0/3px 20px, linear-gradient(90deg, #761222 0%, #761222 100%) 0 25px/3px 15px, linear-gradient(90deg, #761222 0%, #761222 100%) 0 45px/3px 12px;
  background-repeat: no-repeat;
  opacity: .15;
  z-index: 1
}

.abtus .imgframe {
  flex: 0 0 480px;
  height: 480px;
  position: relative;
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  opacity: 0;
  animation: imgfadein .9s ease-out .15s forwards
}

@keyframes imgfadein {
  to {
    opacity: 1
  }
}

.abtus .imgframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.abtus .txtzone {
  flex: 1;
  min-width: 0
}

.abtus .bigtitle {
  font-size: 64px;
  line-height: 1.1;
  color: #1a1514;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: -.02em
}

.abtus .subtitle {
  font-size: 34px;
  line-height: 1.35;
  color: #761222;
  margin: 0 0 20px
}

.abtus .thirdline {
  font-size: 20px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 40px
}

.abtus .leadtext {
  font-size: 16px;
  line-height: 1.8;
  color: #2d2d2d;
  margin: 0
}

@media (max-width: 768px) {
  .abtus .herozone {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px
  }

  .abtus .imgframe {
    flex: 0 0 auto;
    width: 100%;
    height: 320px
  }

  .abtus .bigtitle {
    font-size: 34px
  }

  .abtus .subtitle {
    font-size: 20px
  }

  .abtus .thirdline {
    font-size: 16px
  }
}

.abtus .brandmoment {
  background: #761222;
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.abtus .brandmoment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 800px 600px at 30% 40%, #fa1bb52e, transparent 60%);
  animation: gradmove 8s ease-in-out infinite alternate;
  pointer-events: none
}

@keyframes gradmove {
  to {
    background: radial-gradient(ellipse 800px 600px at 70% 60%, #02d4ff2e, transparent 60%)
  }
}

.abtus .brandmoment .innerwrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.abtus .brandmoment .sectionlabel {
  font-size: 20px;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 40px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .08em
}

.abtus .brandmoment .sectionlabel::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #02D4FF;
  border-radius: 40px;
  margin-left: 8px;
  vertical-align: middle
}

.abtus .numlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.abtus .numlist li {
  position: relative;
  padding-left: 60px
}

.abtus .numlist li::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 64px;
  line-height: 1;
  color: #ffffff40;
  font-weight: 700
}

.abtus .numlist .itemtitle {
  font-size: 20px;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 600
}

.abtus .numlist .itemdesc {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffffeb;
  margin: 0
}

@media (max-width: 1280px) {
  .abtus .numlist {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .abtus .brandmoment {
    padding: 40px 20px
  }

  .abtus .numlist {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .abtus .numlist li::before {
    font-size: 34px;
    top: -4px
  }
}

.abtus .divthick {
  height: 4px;
  background: linear-gradient(180deg, #761222 0%, #7612224d 100%);
  margin: 0;
  border: none
}

.abtus .checkergrid {
  padding: 80px 40px;
  background: #fafbfc;
  position: relative
}

.abtus .checkergrid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: polygon(polygon(12% 8%, 18% 12%, 15% 18%, 9% 14%), polygon(45% 22%, 52% 28%, 48% 35%, 41% 29%), polygon(78% 15%, 85% 19%, 82% 26%, 75% 22%), polygon(25% 65%, 31% 70%, 28% 77%, 22% 72%), polygon(88% 72%, 94% 77%, 91% 84%, 85% 79%));
  opacity: .03;
  pointer-events: none
}

.abtus .checkergrid .gridwrap {
  max-width: 1200px;
  margin: 0 auto
}

.abtus .checkergrid .gridhead {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1514;
  margin: 0 0 40px;
  text-align: left
}

.abtus .checkergrid .gridhead::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #FA1BB5;
  border-radius: 40px;
  margin-left: 8px;
  vertical-align: middle
}

.abtus .gridlayout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  align-items: start
}

.abtus .gridlayout .griditem:nth-child(even) {
  margin-top: 60px
}

.abtus .gridcard {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  box-shadow: 2px 7px 28px 0 #7612221c;
  transition: box-shadow .12s ease-out
}

.abtus .gridcard::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #76122214, #02d4ff14);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity .1s linear
}

.abtus .gridcard:hover::before {
  opacity: 1
}

.abtus .gridcard:hover {
  box-shadow: 2px 9px 36px 0 #7612221f
}

.abtus .gridcard .cardimg {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden
}

.abtus .gridcard .cardimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.abtus .gridcard .cardtitle {
  font-size: 20px;
  line-height: 1.35;
  color: #1a1514;
  margin: 0 0 12px;
  font-weight: 600
}

.abtus .gridcard .carddesc {
  font-size: 16px;
  line-height: 1.8;
  color: #3d3d3d;
  margin: 0
}

@media (max-width: 768px) {
  .abtus .checkergrid {
    padding: 40px 20px
  }

  .abtus .gridlayout {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .abtus .gridlayout .griditem:nth-child(even) {
    margin-top: 0
  }

  .abtus .gridcard {
    padding: 20px
  }

  .abtus .gridcard .cardimg {
    height: 180px
  }
}

.abtus .teamdense {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.abtus .teamdense::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 100px;
  height: 80px;
  background: linear-gradient(0deg, #02D4FF 0%, #02D4FF 100%) 0 0/4px 28px, linear-gradient(0deg, #02D4FF 0%, #02D4FF 100%) 12px 8px/4px 22px, linear-gradient(0deg, #02D4FF 0%, #02D4FF 100%) 24px 4px/4px 26px, linear-gradient(0deg, #02D4FF 0%, #02D4FF 100%) 36px 12px/4px 18px;
  background-repeat: no-repeat;
  opacity: .12;
  z-index: 1
}

.abtus .teamdense .densewrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start
}

.abtus .teamdense .leftzone {
  flex: 1;
  animation: dropfrom .6s ease-out
}

@keyframes dropfrom {
  from {
    opacity: 0;
    transform: translateY(-40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.abtus .teamdense .rightzone {
  flex: 1;
  padding-top: 60px
}

.abtus .teamdense .denseheading {
  font-size: 34px;
  line-height: 1.35;
  color: #1a1514;
  margin: 0 0 40px
}

.abtus .teamdense .denseheading::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #761222;
  border-radius: 40px;
  margin-left: 8px;
  vertical-align: middle
}

.abtus .teamdense .densepara {
  font-size: 16px;
  line-height: 1.8;
  color: #2d2d2d;
  margin: 0 0 20px
}

.abtus .teamdense .densepara:last-child {
  margin-bottom: 0
}

.abtus .teamdense .densepara a {
  color: #761222;
  text-decoration: none;
  border-bottom: 1px solid #7612224d;
  transition: opacity .1s ease-out
}

.abtus .teamdense .densepara a:hover {
  opacity: .7
}

.abtus .profilerow {
  display: flex;
  gap: 40px;
  margin-bottom: 40px
}

.abtus .profilerow:last-child {
  margin-bottom: 0
}

.abtus .profilecard {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px
}

.abtus .profilepic {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f5f5f5
}

.abtus .profilepic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.abtus .profileinfo {
  flex: 1
}

.abtus .profilename {
  font-size: 20px;
  line-height: 1.35;
  color: #1a1514;
  margin: 0 0 4px;
  font-weight: 600
}

.abtus .profilerole {
  font-size: 15px;
  line-height: 1.55;
  color: #761222;
  margin: 0
}

@media (max-width: 768px) {
  .abtus .teamdense {
    padding: 40px 20px
  }

  .abtus .teamdense .densewrap {
    flex-direction: column;
    gap: 40px
  }

  .abtus .teamdense .rightzone {
    padding-top: 0
  }

  .abtus .profilerow {
    flex-direction: column;
    gap: 20px
  }
}

.successpage {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff
}

.successpage .confirmwrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(0deg, #761222 0%, #fff 100%);
  border-radius: 12px;
  box-shadow: 2px 9px 36px 0 #7612221f
}

.successpage .iconholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 7px 28px 0 #7612221c
}

.successpage .iconholder svg {
  width: 64px;
  height: 64px
}

.successpage .iconholder circle {
  fill: none;
  stroke: #761222;
  stroke-width: 3
}

.successpage .iconholder polyline {
  fill: none;
  stroke: #02D4FF;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round
}

.successpage .mainhead {
  font-size: 64px;
  line-height: 1.1;
  color: #1a0a0d;
  margin: 0 0 20px
}

.successpage .subhead {
  font-size: 20px;
  line-height: 1.55;
  color: #3d1a22;
  margin: 0 0 40px
}

.successpage .detailbox {
  background: #fffffff2;
  border-radius: 6px;
  padding: 40px;
  margin: 40px 0;
  text-align: left;
  border: 2px solid #f5f5f5
}

.successpage .detailbox .sectionlabel {
  font-size: 15px;
  line-height: 1.35;
  color: #761222;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 12px;
  font-weight: 600
}

.successpage .detailbox .infoline {
  font-size: 16px;
  line-height: 1.8;
  color: #2d1419;
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 12px
}

.successpage .detailbox .infoline:last-child {
  margin-bottom: 0
}

.successpage .detailbox .infolabel {
  font-weight: 600;
  color: #761222;
  min-width: 140px
}

.successpage .detailbox .infovalue {
  color: #1a0a0d
}

.successpage .nextblock {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 40px;
  margin: 40px 0 0;
  text-align: left
}

.successpage .nextblock .blockhead {
  font-size: 20px;
  line-height: 1.35;
  color: #1a0a0d;
  margin: 0 0 20px
}

.successpage .nextblock .steplist {
  list-style: none;
  padding: 0;
  margin: 0
}

.successpage .nextblock .steplist li {
  font-size: 16px;
  line-height: 1.8;
  color: #2d1419;
  margin: 0 0 12px;
  padding-left: 32px;
  position: relative
}

.successpage .nextblock .steplist li:last-child {
  margin-bottom: 0
}

.successpage .nextblock .steplist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #02D4FF;
  border-radius: 2px;
  transform: rotate(45deg)
}

.successpage .actionrow {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap
}

.successpage .btn {
  font-size: 16px;
  line-height: 1.35;
  padding: 12px 40px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background .12s ease-out, color .12s ease-out, border-color .12s ease-out;
  border: 2px solid transparent
}

.successpage .btnprimary {
  background: #761222;
  color: #fff;
  border-color: #761222
}

.successpage .btnprimary:hover {
  background: #5a0e1a;
  border-color: #5a0e1a
}

.successpage .btnsecondary {
  background: transparent;
  color: #761222;
  border-color: #761222
}

.successpage .btnsecondary:hover {
  background: #761222;
  color: #fff
}

.successpage .supportnote {
  font-size: 15px;
  line-height: 1.55;
  color: #5d3a42;
  margin: 40px 0 0;
  padding: 20px;
  background: #fffc;
  border-radius: 6px
}

.successpage .supportnote a {
  color: #761222;
  text-decoration: none;
  border-bottom: 1px solid #761222;
  transition: opacity .1s linear
}

.successpage .supportnote a:hover {
  opacity: .7
}

@media (max-width: 768px) {
  .successpage {
    padding: 40px 12px
  }

  .successpage .confirmwrap {
    padding: 40px 20px
  }

  .successpage .mainhead {
    font-size: 34px
  }

  .successpage .iconholder {
    width: 80px;
    height: 80px;
    margin-bottom: 20px
  }

  .successpage .iconholder svg {
    width: 48px;
    height: 48px
  }

  .successpage .detailbox,
  .successpage .nextblock {
    padding: 20px
  }

  .successpage .detailbox .infoline {
    flex-direction: column;
    gap: 4px
  }

  .successpage .detailbox .infolabel {
    min-width: auto
  }

  .successpage .actionrow {
    flex-direction: column;
    align-items: stretch
  }

  .successpage .btn {
    text-align: center
  }
}