@import "https://cdn.jsdelivr.net/npm/@fontsource/cabin@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/cabin@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/cabin@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/cabin@latest/700.css";

* {
  box-sizing: border-box
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Cabin', sans-serif;
  background: #FAFBFB;
  color: #1a0f0a;
  font-size: 16px;
  line-height: 1.6
}

.topbar {
  background: linear-gradient(135deg, #4051B7 0%, #5d6bc9 100%);
  padding: 8px 0;
  box-shadow: 0 1px 4px 0 #4051b714
}

.topbar-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.contactinfo {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.contactitem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500
}

.contactitem i {
  font-size: 19px;
  opacity: .9
}

.headermain {
  background: #fff;
  border-bottom: 2px solid #A6B1CE;
  position: relative
}

.headermain::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #4051B7 50%, transparent 100%)
}

.headerbox {
  max-width: 1366px;
  margin: 0 auto;
  padding: 32px 32px 16px
}

.logoarea {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 3px solid #4051B7;
  position: relative
}

.logoarea::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, #4051B7 0%, #A6B1CE 100%)
}

.logohex {
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 16px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  box-shadow: 0 4px 14px 0 #4051b71c
}

.logohex::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, #FAFBFB 0%, #fff 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  z-index: 1
}

.logoimg {
  width: 70px;
  height: 70px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 4px #4051b714)
}

.mainnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
  padding: 16px 0
}

.navlink {
  color: #4051B7;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .14s cubic-bezier(0.4, 0, 1, 1)
}

.navlink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4051B7 0%, #5d6bc9 100%);
  transition: left .16s cubic-bezier(0.4, 0, 1, 1);
  z-index: -1
}

.navlink:hover {
  color: #fff
}

.navlink:hover::before {
  left: 0
}

.navlink:focus {
  outline: 2px solid #4051B7;
  outline-offset: 3px
}

.addressrow {
  background: linear-gradient(180deg, #fff 0%, #FAFBFB 100%);
  padding: 16px 0;
  margin-top: 16px;
  border-top: 1px solid #A6B1CE
}

.addresstext {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4051B7;
  font-size: 16px;
  font-weight: 500
}

.addresstext i {
  font-size: 19px
}

.footerzone {
  background: linear-gradient(180deg, #4051B7 0%, #3a469f 100%);
  color: #fff;
  padding: 64px 0 0;
  margin-top: 64px;
  position: relative
}

.footerzone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #A6B1CE 0%, #4051B7 50%, #A6B1CE 100%)
}

.footerbox {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px
}

.footergrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
  margin-bottom: 64px
}

.footerblock {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footerlogo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start
}

.footerlogohex {
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 16px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  box-shadow: 0 8px 48px 0 #a6b1ce1c
}

.footerlogohex::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: #FAFBFB;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  z-index: 1
}

.footerlogoimg {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 4px #4051b714)
}

.footertitle {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #fff
}

.footerdesc {
  font-size: 16px;
  line-height: 1.6;
  color: #A6B1CE;
  font-weight: 400
}

.footerdetails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px
}

.detailrow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6
}

.detailrow i {
  font-size: 19px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #A6B1CE
}

.detailrow a {
  color: #fff;
  text-decoration: none;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.detailrow a:hover {
  color: #A6B1CE
}

.detailrow a:focus {
  outline: 2px solid #A6B1CE;
  outline-offset: 2px
}

.footernav {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footerlink {
  color: #A6B1CE;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  display: inline-block;
  transition: color .14s cubic-bezier(0.4, 0, 1, 1), padding-left .14s cubic-bezier(0.4, 0, 1, 1);
  border-left: 3px solid transparent;
  padding-left: 8px
}

.footerlink:hover {
  color: #fff;
  border-left-color: #A6B1CE;
  padding-left: 16px
}

.footerlink:focus {
  outline: 2px solid #A6B1CE;
  outline-offset: 2px
}

.footerbottom {
  border-top: 1px solid #a6b1ce4d;
  padding: 32px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, #0000001a 100%)
}

.copyright {
  font-size: 16px;
  color: #A6B1CE;
  font-weight: 400
}

.consentbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #4051B7 0%, #3a469f 100%);
  box-shadow: 0 -4px 14px 0 #4051b71c;
  z-index: 8000;
  display: none;
  transform: translateX(-100%);
  transition: transform .26s cubic-bezier(0.4, 0, 1, 1)
}

.consentbar.visible {
  transform: translateX(0)
}

.consentinner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap
}

.consenttext {
  flex: 1;
  min-width: 280px
}

.consenttitle {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4
}

.consentdesc {
  font-size: 16px;
  color: #A6B1CE;
  line-height: 1.6
}

.consentactions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center
}

.consentbtn {
  padding: 16px 32px;
  border: none;
  border-radius: 20px;
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1);
  min-width: 140px
}

.consentbtn:focus {
  outline: 2px solid #A6B1CE;
  outline-offset: 3px
}

.consentbtn:active {
  transform: scale(0.97)
}

.acceptbtn {
  background: #fff;
  color: #4051B7;
  box-shadow: 0 4px 14px 0 #4051b71c
}

.acceptbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #A6B1CE 0%, #fff 100%);
  transition: left .16s cubic-bezier(0.4, 0, 1, 1);
  z-index: -1
}

.acceptbtn:hover::before {
  left: 0
}

.acceptbtn:hover {
  box-shadow: 0 8px 48px 0 #4051b71c
}

.declinebtn {
  background: transparent;
  color: #fff;
  border: 2px solid #A6B1CE
}

.declinebtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #a6b1ce33;
  transition: left .14s cubic-bezier(0.4, 0, 1, 1);
  z-index: -1
}

.declinebtn:hover::before {
  left: 0
}

.managebtn {
  background: transparent;
  color: #A6B1CE;
  border: 2px solid #A6B1CE
}

.managebtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #a6b1ce26;
  transition: left .14s cubic-bezier(0.4, 0, 1, 1);
  z-index: -1
}

.managebtn:hover::before {
  left: 0
}

.prefsmodal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 #4051b71c;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 8001;
  display: none;
  padding: 32px
}

.prefsmodal.visible {
  display: block
}

.prefstitle {
  font-size: 24px;
  font-weight: 700;
  color: #4051B7;
  margin-bottom: 16px;
  line-height: 1.4
}

.prefsdesc {
  font-size: 16px;
  color: #1a0f0a;
  line-height: 1.6;
  margin-bottom: 32px
}

.prefslist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px
}

.prefitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #FAFBFB;
  border-radius: 20px;
  border: 2px solid #A6B1CE
}

.preflabel {
  font-size: 16px;
  font-weight: 600;
  color: #4051B7
}

.toggleswitch {
  position: relative;
  width: 56px;
  height: 28px;
  background: #A6B1CE;
  border-radius: 36px;
  cursor: pointer;
  transition: background .14s cubic-bezier(0.4, 0, 1, 1)
}

.toggleswitch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 36px;
  transition: left .14s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 0 1px 4px 0 #4051b714
}

.toggleswitch.active {
  background: #4051B7
}

.toggleswitch.active::after {
  left: 32px
}

.prefsactions {
  display: flex;
  gap: 16px;
  justify-content: flex-end
}

.saveprefsbtn {
  padding: 16px 32px;
  border: none;
  border-radius: 20px;
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: #4051B7;
  color: #fff;
  box-shadow: 0 4px 14px 0 #4051b71c;
  transition: background .14s cubic-bezier(0.4, 0, 1, 1), transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.saveprefsbtn:hover {
  background: #3a469f;
  transform: scale(1.02)
}

.saveprefsbtn:focus {
  outline: 2px solid #4051B7;
  outline-offset: 3px
}

.closeprefsbtn {
  padding: 16px 32px;
  border: 2px solid #A6B1CE;
  border-radius: 20px;
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: #4051B7;
  transition: background .14s cubic-bezier(0.4, 0, 1, 1), color .14s cubic-bezier(0.4, 0, 1, 1)
}

.closeprefsbtn:hover {
  background: #FAFBFB
}

.closeprefsbtn:focus {
  outline: 2px solid #4051B7;
  outline-offset: 3px
}

.settingsicon {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4051B7 0%, #5d6bc9 100%);
  border-radius: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 #4051b71c;
  z-index: 7999;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1), box-shadow .14s cubic-bezier(0.4, 0, 1, 1)
}

.settingsicon.visible {
  display: flex
}

.settingsicon:hover {
  transform: scale(1.08) rotate(90deg);
  box-shadow: 0 8px 48px 0 #4051b71c
}

.settingsicon:focus {
  outline: 2px solid #A6B1CE;
  outline-offset: 3px
}

.settingsicon i {
  font-size: 24px;
  color: #fff
}

.modaloverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #4051b766;
  z-index: 8000;
  display: none
}

.modaloverlay.visible {
  display: block
}

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start
  }

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

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

  .navlink {
    width: 100%
  }

  .footergrid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footerlogo {
    justify-content: flex-start
  }

  .consentinner {
    flex-direction: column;
    align-items: flex-start
  }

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

  .consentbtn {
    width: 100%
  }

  .prefsactions {
    flex-direction: column
  }

  .saveprefsbtn,
  .closeprefsbtn {
    width: 100%
  }
}

.text-doc {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px;
  background: #FAFBFB
}

.text-doc h1 {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 32px
}

.text-doc h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #4051B7;
  margin: 64px 0 16px
}

.text-doc h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #4051B7;
  margin: 32px 0 16px
}

.text-doc h4 {
  font-size: 19px;
  line-height: 1.4;
  color: #4051B7;
  margin: 32px 0 8px
}

.text-doc h5 {
  font-size: 16px;
  line-height: 1.4;
  color: #4051B7;
  margin: 32px 0 8px;
  text-transform: uppercase
}

.text-doc h6 {
  font-size: 16px;
  line-height: 1.4;
  color: #A6B1CE;
  margin: 32px 0 8px
}

.text-doc p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  margin: 0 0 16px
}

.text-doc strong,
.text-doc b {
  color: #4051B7;
  font-weight: 600
}

.text-doc em,
.text-doc i {
  font-style: italic;
  color: #A6B1CE
}

.text-doc a {
  color: #4051B7;
  text-decoration: none;
  border-bottom: 1px solid #A6B1CE;
  transition: border-color .14s cubic-bezier(0.4, 0, 1, 1)
}

.text-doc a:hover {
  border-bottom-color: #4051B7
}

.text-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 #4051b71c
}

.text-doc thead {
  background: linear-gradient(135deg, #4051B7 0%, #A6B1CE 100%)
}

.text-doc thead tr {
  border: none
}

.text-doc thead th {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase
}

.text-doc tbody tr {
  border-bottom: 1px solid #FAFBFB;
  transition: background-color .12s cubic-bezier(0.4, 0, 1, 1)
}

.text-doc tbody tr:last-child {
  border-bottom: none
}

.text-doc tbody tr:hover {
  background-color: #FAFBFB
}

.text-doc tbody td {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  padding: 16px
}

.text-doc tbody th {
  font-size: 16px;
  line-height: 1.6;
  color: #4051B7;
  padding: 16px;
  text-align: left;
  font-weight: 600
}

@media (max-width: 768px) {
  .text-doc {
    padding: 32px 16px
  }

  .text-doc h1 {
    font-size: 32px;
    margin: 0 0 16px
  }

  .text-doc h2 {
    font-size: 24px;
    margin: 32px 0 16px
  }

  .text-doc h3 {
    font-size: 19px;
    margin: 32px 0 8px
  }

  .text-doc table {
    display: block;
    overflow-x: auto;
    margin: 16px 0
  }

  .text-doc thead th,
  .text-doc tbody td,
  .text-doc tbody th {
    padding: 8px
  }
}

.casedetail {
  background: #FAFBFB;
  overflow-x: clip
}

.casedetail .topbanner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
  gap: 64px;
  overflow: hidden
}

.casedetail .topbanner::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: #4051B7;
  opacity: .06;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  z-index: 1
}

.casedetail .topbanner::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: #A6B1CE;
  opacity: .08;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: 1
}

.casedetail .txtside {
  flex: 1;
  z-index: 2;
  position: relative
}

.casedetail .imgside {
  flex: 1;
  z-index: 2;
  position: relative
}

.casedetail .metatag {
  display: inline-block;
  background: linear-gradient(90deg, #A6B1CE 0%, #4051B7 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: .5px
}

.casedetail .bannerh1 {
  font-size: 44px;
  line-height: 1.15;
  color: #1a1a2e;
  margin: 0 0 16px;
  font-weight: 700
}

.casedetail .bannerh1 .outlined {
  color: transparent;
  -webkit-text-stroke: 2px #4051B7;
  text-stroke: 2px #4051B7
}

.casedetail .subline {
  font-size: 19px;
  line-height: 1.6;
  color: #5a5a6e;
  margin: 0 0 32px
}

.casedetail .authormeta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 32px 0 0
}

.casedetail .authorname {
  font-size: 16px;
  line-height: 1.4;
  color: #2a2a3e;
  font-weight: 600
}

.casedetail .readmeta {
  font-size: 16px;
  line-height: 1.4;
  color: #7a7a8e
}

.casedetail .bannerimg {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 48px 0 #4051b71c;
  filter: sepia(0.15) saturate(1.2) brightness(1.05)
}

.casedetail .articlebody {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
  background: radial-gradient(ellipse at center, #fff 0%, #FAFBFB 100%);
  position: relative
}

.casedetail .articlebody::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #A6B1CE 0%, #4051B7 100%);
  opacity: .3
}

.casedetail .contentblock {
  max-width: 900px;
  margin: 0 auto
}

.casedetail .contentblock h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0 0 16px;
  font-weight: 700;
  position: relative
}

.casedetail .contentblock h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #2a2a3e;
  margin: 32px 0 16px;
  font-weight: 600
}

.casedetail .contentblock h4 {
  font-size: 19px;
  line-height: 1.4;
  color: #3a3a4e;
  margin: 32px 0 16px;
  font-weight: 600
}

.casedetail .contentblock p {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 16px
}

.casedetail .contentblock code {
  background: #f0f1f5;
  color: #4051B7;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 16px;
  display: inline-block;
  font-family: monospace
}

.casedetail .contentblock small {
  font-size: 16px;
  line-height: 1.6;
  color: #6a6a7e;
  display: block;
  margin: 8px 0
}

.casedetail .contentblock ol {
  margin: 0 0 16px 32px;
  padding: 0
}

.casedetail .contentblock li {
  font-size: 19px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 8px
}

.casedetail .contentblock blockquote {
  border-left: 4px solid #4051B7;
  padding: 16px 32px;
  margin: 32px 0;
  background: #f8f9fc;
  border-radius: 0
}

.casedetail .contentblock blockquote p {
  font-size: 19px;
  line-height: 1.6;
  color: #3a3a4e;
  font-style: italic;
  margin: 0
}

.casedetail .contentblock cite {
  font-size: 16px;
  line-height: 1.4;
  color: #5a5a6e;
  display: block;
  margin: 8px 0 0;
  font-style: normal
}

.casedetail .contentblock details {
  background: #f8f9fc;
  padding: 16px;
  margin: 16px 0;
  border-radius: 20px;
  border: 1px solid #e0e2ea
}

.casedetail .contentblock summary {
  font-size: 19px;
  line-height: 1.4;
  color: #2a2a3e;
  font-weight: 600;
  cursor: pointer;
  user-select: none
}

.casedetail .contentblock summary:hover {
  color: #4051B7
}

.casedetail .contentblock details[open] summary {
  margin: 0 0 16px
}

.casedetail .pollwrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.casedetail .pollwrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4051B7 0%, #A6B1CE 100%)
}

.casedetail .pollinner {
  max-width: 800px;
  margin: 0 auto;
  background: #FAFBFB;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c
}

.casedetail .pollh {
  font-size: 24px;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0 0 32px;
  font-weight: 700;
  text-align: center
}

.casedetail .polloption {
  position: relative;
  margin: 0 0 16px
}

.casedetail .polloption input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer
}

.casedetail .polllabel {
  display: block;
  padding: 16px 32px 16px 64px;
  background: #fff;
  border: 2px solid #e0e2ea;
  border-radius: 36px;
  font-size: 19px;
  line-height: 1.4;
  color: #4a4a5e;
  cursor: pointer;
  position: relative;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), background .15s cubic-bezier(0.4, 0, 1, 1)
}

.casedetail .polllabel::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #A6B1CE;
  border-radius: 36px;
  background: #fff;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), background .15s cubic-bezier(0.4, 0, 1, 1)
}

.casedetail .polllabel::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: #4051B7;
  border-radius: 36px;
  transition: transform .18s cubic-bezier(0.4, 0, 1, 1)
}

.casedetail .polloption input[type="radio"]:checked+.polllabel {
  background: linear-gradient(90deg, #a6b1ce1a 0%, #4051b71a 100%);
  border-color: #4051B7
}

.casedetail .polloption input[type="radio"]:checked+.polllabel::before {
  border-color: #4051B7
}

.casedetail .polloption input[type="radio"]:checked+.polllabel::after {
  transform: translateY(-50%) scale(1)
}

.casedetail .polllabel:hover {
  border-color: #A6B1CE
}

.casedetail .actionzone {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
  background: linear-gradient(90deg, #A6B1CE 0%, #4051B7 100%);
  position: relative;
  overflow: hidden
}

.casedetail .actionzone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 35px, #ffffff08 35px, #ffffff08 70px), repeating-linear-gradient(-45deg, transparent, transparent 35px, #ffffff05 35px, #ffffff05 70px);
  pointer-events: none
}

.casedetail .actioncenter {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2
}

.casedetail .actionh {
  font-size: 32px;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 700
}

.casedetail .actiontxt {
  font-size: 19px;
  line-height: 1.6;
  color: #ffffffe6;
  margin: 0 0 32px
}

.casedetail .printbtn {
  display: inline-block;
  background: #fff;
  color: #4051B7;
  padding: 16px 32px;
  border-radius: 36px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 #00000026;
  position: relative;
  overflow: hidden;
  transition: transform .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.casedetail .printbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, #4051b71a 50%, transparent 100%);
  transition: left .18s cubic-bezier(0.4, 0, 1, 1)
}

.casedetail .printbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 48px 0 #0003
}

.casedetail .printbtn:hover::before {
  left: 100%
}

.casedetail .printbtn:active {
  transform: translateY(0)
}

.casedetail .insightgrid {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.casedetail .insightgrid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #A6B1CE 50%, transparent 100%)
}

.casedetail .insighth {
  font-size: 32px;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0 0 64px;
  font-weight: 700;
  text-align: center
}

.casedetail .statrow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px
}

.casedetail .statcard {
  background: #FAFBFB;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 #4051b714;
  transition: transform .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.casedetail .statcard::before {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 120px;
  line-height: 1;
  color: #4051b70d;
  font-weight: 700;
  pointer-events: none
}

.casedetail .statcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 48px 0 #4051b71c
}

.casedetail .statnum {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 8px;
  font-weight: 700;
  position: relative;
  z-index: 2
}

.casedetail .statlabel {
  font-size: 19px;
  line-height: 1.4;
  color: #4a4a5e;
  margin: 0;
  position: relative;
  z-index: 2
}

@media (max-width: 768px) {
  .casedetail .topbanner {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px
  }

  .casedetail .bannerh1 {
    font-size: 32px
  }

  .casedetail .subline {
    font-size: 16px
  }

  .casedetail .articlebody {
    padding: 32px 16px
  }

  .casedetail .contentblock h2 {
    font-size: 24px
  }

  .casedetail .contentblock h3 {
    font-size: 19px
  }

  .casedetail .contentblock p,
  .casedetail .contentblock li {
    font-size: 16px
  }

  .casedetail .pollwrap {
    padding: 32px 16px
  }

  .casedetail .pollinner {
    padding: 16px
  }

  .casedetail .pollh {
    font-size: 19px
  }

  .casedetail .polllabel {
    padding: 16px 16px 16px 56px;
    font-size: 16px
  }

  .casedetail .actionzone {
    padding: 32px 16px
  }

  .casedetail .actionh {
    font-size: 24px
  }

  .casedetail .actiontxt {
    font-size: 16px
  }

  .casedetail .insightgrid {
    padding: 32px 16px
  }

  .casedetail .insighth {
    font-size: 24px;
    margin: 0 0 32px
  }

  .casedetail .statrow {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .casedetail .statnum {
    font-size: 32px
  }

  .casedetail .statlabel {
    font-size: 16px
  }
}

@keyframes colorwash {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.casedetail .actionzone {
  background: linear-gradient(270deg, #A6B1CE, #4051B7, #A6B1CE);
  background-size: 400% 400%;
  animation: colorwash 12s ease infinite
}

.abtus {
  background: #FAFBFB;
  overflow-x: clip
}

.abtus .topbar {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  background: linear-gradient(to left, #4051B7, #A6B1CE);
  overflow: hidden
}

.abtus .topbar::before {
  content: '"';
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  line-height: 1;
  color: #ffffff1f;
  pointer-events: none
}

.abtus .topbarimg {
  position: relative;
  width: 240px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px
}

.abtus .topbarimg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.abtus .topbarimg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #4051b7b3, transparent);
  pointer-events: none
}

.abtus .topbartxt {
  flex: 1;
  z-index: 1
}

.abtus .topbartxt h1 {
  font-size: 44px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 8px
}

.abtus .topbartxt p {
  font-size: 19px;
  line-height: 1.4;
  color: #fffffff2;
  margin: 0
}

.abtus .storyzone {
  position: relative;
  max-width: 1366px;
  margin: 64px auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start
}

.abtus .storyzone::before {
  content: '';
  position: absolute;
  top: -32px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 48px solid transparent;
  border-right: 48px solid transparent;
  border-top: 48px solid #A6B1CE;
  opacity: .15;
  pointer-events: none
}

.abtus .storyleft {
  position: relative
}

.abtus .storyleft h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 16px
}

.abtus .storyleft p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 16px
}

.abtus .storyleft p:last-child {
  margin-bottom: 0
}

.abtus .storyright {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 14px 0 #4051b71c;
  border-top: 4px solid #4051B7
}

.abtus .storyright::before {
  content: '01';
  position: absolute;
  top: 16px;
  right: 32px;
  font-size: 140px;
  line-height: 1;
  color: #a6b1ce14;
  font-weight: 700;
  pointer-events: none
}

.abtus .storyright h3 {
  font-size: 24px;
  line-height: 1.15;
  color: #2a2a2a;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.abtus .storyright p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.abtus .storyright p:last-child {
  margin-bottom: 0
}

.abtus .teamgrid {
  position: relative;
  max-width: 1366px;
  margin: 0 auto 64px;
  padding: 64px 32px;
  background: #fff
}

.abtus .teamgrid::before {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 48px solid #4051B7;
  border-top: 48px solid transparent;
  border-bottom: 48px solid transparent;
  opacity: .15;
  pointer-events: none
}

.abtus .teamhd {
  text-align: center;
  margin-bottom: 64px
}

.abtus .teamhd h2 {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 16px
}

.abtus .teamhd p {
  font-size: 19px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto
}

.abtus .teamcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.abtus .personcard {
  position: relative;
  background: #FAFBFB;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1), box-shadow .14s cubic-bezier(0.4, 0, 1, 1);
  border: 2px solid transparent
}

.abtus .personcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 48px 0 #4051b71c;
  border-color: #A6B1CE
}

.abtus .personimg {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden
}

.abtus .personimg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.abtus .persontxt {
  padding: 32px
}

.abtus .persontxt h4 {
  font-size: 24px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 8px
}

.abtus .persontxt .role {
  font-size: 16px;
  line-height: 1.4;
  color: #A6B1CE;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.abtus .persontxt p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.abtus .valuezone {
  position: relative;
  max-width: 1366px;
  margin: 0 auto 64px;
  padding: 0 32px
}

.abtus .valuezone::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(./image_archive/P0196.jpg);
  background-size: cover;
  background-position: center;
  opacity: .08;
  pointer-events: none;
  border-radius: 36px;
  z-index: 0
}

.abtus .valuezone::after {
  content: '';
  position: absolute;
  top: -32px;
  right: 32px;
  width: 0;
  height: 0;
  border-left: 48px solid transparent;
  border-right: 48px solid transparent;
  border-bottom: 48px solid #A6B1CE;
  opacity: .15;
  pointer-events: none;
  z-index: 1
}

.abtus .valuewrap {
  position: relative;
  background: #fafbfbf2;
  border-radius: 36px;
  padding: 64px;
  z-index: 1
}

.abtus .valuehd {
  margin-bottom: 32px
}

.abtus .valuehd h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 16px
}

.abtus .valuehd p {
  font-size: 19px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0
}

.abtus .valuerow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 32px
}

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

.abtus .valueitem {
  flex: 1;
  position: relative;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 #4051b714;
  transition: box-shadow .16s cubic-bezier(0.4, 0, 1, 1), border-color .16s cubic-bezier(0.4, 0, 1, 1);
  border: 2px solid transparent
}

.abtus .valueitem:hover {
  box-shadow: 0 4px 14px 0 #4051b71c;
  border-color: #A6B1CE
}

.abtus .valueicon {
  width: 56px;
  height: 56px;
  background: linear-gradient(to left, #4051B7, #A6B1CE);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 8px 0 #ffffff4d
}

.abtus .valueicon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.abtus .valueitem h5 {
  font-size: 19px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 8px
}

.abtus .valueitem p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.abtus .metriczone {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 32px;
  background: linear-gradient(to left, #4051b70d, #a6b1ce0d)
}

.abtus .metriczone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 30%, #4051b726 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, #a6b1ce26 0%, transparent 50%);
  animation: aurora 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes aurora {

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

  50% {
    opacity: .9;
    transform: scale(1.1) translateY(-16px)
  }
}

.abtus .metricwrap {
  position: relative;
  z-index: 1
}

.abtus .metrichd {
  text-align: center;
  margin-bottom: 64px
}

.abtus .metrichd::before {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(to left, #4051B7, #A6B1CE);
  margin: 0 auto 32px;
  border-radius: 0
}

.abtus .metrichd::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: #4051B7;
  transform: rotate(45deg);
  margin: 16px auto 0
}

.abtus .metrichd h2 {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 16px
}

.abtus .metrichd p {
  font-size: 19px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0
}

.abtus .infographic {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.abtus .infoblock {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px 32px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 #4051b714;
  transition: transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.abtus .infoblock:hover {
  transform: scale(1.05)
}

.abtus .infoico {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4051B7, #A6B1CE);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 6px 0 #ffffff40
}

.abtus .infoico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.abtus .infotxt {
  display: flex;
  flex-direction: column;
  gap: 0
}

.abtus .infotxt .num {
  font-size: 32px;
  line-height: 1;
  color: #4051B7;
  font-weight: 700;
  margin: 0
}

.abtus .infotxt .lbl {
  font-size: 16px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0
}

.abtus .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center
}

.abtus .arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #A6B1CE;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.abtus .metricgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px
}

.abtus .statcard {
  position: relative;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 1px 4px 0 #4051b714;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1), box-shadow .14s cubic-bezier(0.4, 0, 1, 1);
  overflow: hidden
}

.abtus .statcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #4051b714, #a6b1ce14);
  transition: width .18s cubic-bezier(0.4, 0, 1, 1);
  z-index: 0
}

.abtus .statcard:hover::before {
  width: 100%
}

.abtus .statcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 48px 0 #4051b71c
}

.abtus .statcard h6 {
  position: relative;
  font-size: 70px;
  line-height: 1;
  color: #4051B7;
  margin: 0 0 16px;
  font-weight: 700;
  z-index: 1
}

.abtus .statcard p {
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0;
  z-index: 1
}

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

  .abtus .topbarimg {
    width: 100%;
    height: 200px
  }

  .abtus .topbartxt h1 {
    font-size: 32px
  }

  .abtus .topbartxt p {
    font-size: 16px
  }

  .abtus .storyzone {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 32px auto;
    padding: 0 16px
  }

  .abtus .storyleft h2 {
    font-size: 24px
  }

  .abtus .storyright {
    padding: 16px
  }

  .abtus .storyright::before {
    font-size: 80px;
    top: 8px;
    right: 16px
  }

  .abtus .teamgrid {
    padding: 32px 16px;
    margin-bottom: 32px
  }

  .abtus .teamhd h2 {
    font-size: 32px
  }

  .abtus .teamhd p {
    font-size: 16px
  }

  .abtus .teamcards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .abtus .personimg {
    height: 240px
  }

  .abtus .persontxt {
    padding: 16px
  }

  .abtus .valuezone {
    padding: 0 16px;
    margin-bottom: 32px
  }

  .abtus .valuewrap {
    padding: 32px 16px
  }

  .abtus .valuehd h2 {
    font-size: 24px
  }

  .abtus .valuehd p {
    font-size: 16px
  }

  .abtus .valuerow {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px
  }

  .abtus .valueitem {
    padding: 16px
  }

  .abtus .metriczone {
    padding: 32px 16px
  }

  .abtus .metrichd h2 {
    font-size: 32px
  }

  .abtus .metrichd p {
    font-size: 16px
  }

  .abtus .infographic {
    flex-direction: column;
    gap: 8px
  }

  .abtus .infoblock {
    width: 100%;
    padding: 16px
  }

  .abtus .arrow {
    transform: rotate(90deg)
  }

  .abtus .metricgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px
  }

  .abtus .statcard {
    padding: 16px
  }

  .abtus .statcard h6 {
    font-size: 44px
  }
}

.contacto {
  background: #FAFBFB;
  overflow-x: clip
}

.contacto .cabecera {
  position: relative;
  background: linear-gradient(270deg, #4051B7 0%, #5563c4 100%);
  padding: 64px 32px;
  overflow: hidden
}

.contacto .cabecera::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #a6b1ce26 0%, transparent 70%);
  pointer-events: none
}

.contacto .cabecerainner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.contacto .cabeceratxt h1 {
  font-size: 70px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px
}

.contacto .cabeceratxt h1 .destaque {
  background: linear-gradient(270deg, #A6B1CE 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.contacto .cabeceratxt p {
  font-size: 19px;
  line-height: 1.6;
  color: #ffffffeb;
  margin: 0;
  max-width: 680px
}

.contacto .decorlines {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none
}

.contacto .decorlines span {
  width: 64px;
  height: 2px;
  background: #a6b1ce66;
  display: block
}

.contacto .decorlines span:nth-child(2) {
  width: 48px
}

.contacto .decorlines span:nth-child(3) {
  width: 32px
}

.contacto .infosec {
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.contacto .infosec::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border: 2px solid #FAFBFB;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1
}

.contacto .infowrap {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.contacto .infotitulo {
  text-align: center;
  margin-bottom: 64px
}

.contacto .infotitulo h2 {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 16px
}

.contacto .infotitulo p {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  margin: 0
}

.contacto .infogrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px
}

.contacto .cartaoinfo {
  background: #FAFBFB;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative;
  transition: transform .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.contacto .cartaoinfo:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 48px 0 #4051b71c
}

.contacto .cartaoinfo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(270deg, #a6b1ce1a 0%, transparent 100%);
  transition: width .18s cubic-bezier(0.4, 0, 1, 1);
  border-radius: 20px;
  pointer-events: none
}

.contacto .cartaoinfo:hover::before {
  width: 100%
}

.contacto .carticobox {
  width: 56px;
  height: 56px;
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 6px 0 #ffffff4d
}

.contacto .carticobox svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contacto .cartlabel {
  font-size: 16px;
  line-height: 1.4;
  color: #4051B7;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 8px;
  font-weight: 600
}

.contacto .cartvalor {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  word-break: break-word
}

.contacto .cartvalor a {
  color: #333;
  text-decoration: none;
  position: relative;
  transition: color .15s cubic-bezier(0.4, 0, 1, 1)
}

.contacto .cartvalor a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  transition: width .18s cubic-bezier(0.4, 0, 1, 1)
}

.contacto .cartvalor a:hover {
  color: #4051B7
}

.contacto .cartvalor a:hover::before {
  width: 100%
}

.contacto .formsec {
  padding: 64px 32px;
  background: linear-gradient(270deg, #a6b1ce14 0%, #fafbfbe6 100%);
  position: relative
}

.contacto .formwrap {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start
}

.contacto .formintro {
  position: relative
}

.contacto .formintro::before {
  content: '01';
  position: absolute;
  top: -32px;
  left: -16px;
  font-size: 140px;
  line-height: 1;
  color: #4051b70f;
  font-weight: 700;
  pointer-events: none;
  z-index: 1
}

.contacto .formintro h2 {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 16px;
  position: relative;
  z-index: 2
}

.contacto .formintro p {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px;
  position: relative;
  z-index: 2
}

.contacto .formintro .beneflist {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  position: relative;
  z-index: 2
}

.contacto .formintro .beneflist li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px;
  padding-left: 32px;
  position: relative
}

.contacto .formintro .beneflist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  border-radius: 50%;
  box-shadow: inset 0 1px 3px 0 #fff6
}

.contacto .formbloco {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c
}

.contacto .formbloco form {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.contacto .campowrap {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contacto .campowrap label {
  font-size: 16px;
  line-height: 1.4;
  color: #4051B7;
  font-weight: 600
}

.contacto .campowrap input[type="text"],
.contacto .campowrap input[type="email"] {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  padding: 16px;
  border: 2px solid #FAFBFB;
  border-radius: 20px;
  background: #FAFBFB;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), background .15s cubic-bezier(0.4, 0, 1, 1)
}

.contacto .campowrap input[type="text"]:focus,
.contacto .campowrap input[type="email"]:focus {
  outline: none;
  border-color: #4051B7;
  background: #fff
}

.contacto .campowrap input::placeholder {
  color: #33333380;
  font-style: italic
}

.contacto .radiogrupo {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contacto .radiogrupo legend {
  font-size: 16px;
  line-height: 1.4;
  color: #4051B7;
  font-weight: 600;
  margin-bottom: 8px
}

.contacto .radioopciones {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contacto .radioitem {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #FAFBFB;
  border-radius: 20px;
  cursor: pointer;
  transition: background .15s cubic-bezier(0.4, 0, 1, 1);
  position: relative
}

.contacto .radioitem:hover {
  background: #a6b1ce1f
}

.contacto .radioitem input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #4051B7
}

.contacto .radioitem label {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  cursor: pointer;
  flex: 1;
  margin: 0;
  font-weight: 400
}

.contacto .privacywrap {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 16px;
  background: #4051b70a;
  border-radius: 20px
}

.contacto .privacywrap input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  cursor: pointer;
  accent-color: #4051B7;
  flex-shrink: 0
}

.contacto .privacywrap label {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  cursor: pointer;
  margin: 0
}

.contacto .privacywrap label a {
  color: #4051B7;
  text-decoration: none;
  position: relative;
  transition: color .15s cubic-bezier(0.4, 0, 1, 1)
}

.contacto .privacywrap label a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #4051B7;
  opacity: 0;
  transition: opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.contacto .privacywrap label a:hover {
  color: #A6B1CE
}

.contacto .privacywrap label a:hover::after {
  opacity: 1
}

.contacto .submitbtn {
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 16px 32px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: transform .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative;
  overflow: hidden
}

.contacto .submitbtn::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(135deg, transparent 0%, #fff3 50%, transparent 100%);
  transition: top .18s cubic-bezier(0.4, 0, 1, 1), left .18s cubic-bezier(0.4, 0, 1, 1)
}

.contacto .submitbtn:hover::before {
  top: -50%;
  left: -50%
}

.contacto .submitbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 48px 0 #4051b71c
}

.contacto .submitbtn:active {
  transform: translateY(0)
}

.contacto .divisor {
  max-width: 1366px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #A6B1CE 50%, transparent 100%);
  position: relative
}

.contacto .divisor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #4051B7;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px #A6B1CE
}

@media (max-width: 768px) {
  .contacto .cabecera {
    padding: 32px 16px
  }

  .contacto .cabeceratxt h1 {
    font-size: 44px
  }

  .contacto .cabeceratxt p {
    font-size: 16px
  }

  .contacto .decorlines {
    bottom: 16px;
    left: 16px
  }

  .contacto .infosec {
    padding: 32px 16px
  }

  .contacto .infotitulo {
    margin-bottom: 32px
  }

  .contacto .infotitulo h2 {
    font-size: 32px
  }

  .contacto .infotitulo p {
    font-size: 16px
  }

  .contacto .infogrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .contacto .formsec {
    padding: 32px 16px
  }

  .contacto .formwrap {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contacto .formintro h2 {
    font-size: 32px
  }

  .contacto .formintro p {
    font-size: 16px
  }

  .contacto .formintro::before {
    font-size: 100px;
    top: -24px;
    left: -8px
  }

  .contacto .formbloco {
    padding: 16px
  }

  .contacto .formbloco form {
    gap: 16px
  }

  .contacto .campowrap {
    gap: 8px
  }

  .contacto .radioopciones {
    gap: 8px
  }

  .contacto .radioitem {
    padding: 12px
  }

  .contacto .privacywrap {
    padding: 12px
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contacto .cabecera {
    padding: 48px 32px
  }

  .contacto .cabeceratxt h1 {
    font-size: 56px
  }

  .contacto .infosec {
    padding: 48px 32px
  }

  .contacto .infotitulo h2 {
    font-size: 38px
  }

  .contacto .formsec {
    padding: 48px 32px
  }

  .contacto .formwrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contacto .formintro h2 {
    font-size: 38px
  }
}

.learnprog {
  background: #FAFBFB;
  overflow-x: clip
}

.learnprog .topimg {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative
}

.learnprog .topimg::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  width: 64px;
  height: 64px;
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  opacity: .12;
  border-radius: 20px;
  transform: rotate(15deg)
}

.learnprog .topimg::after {
  content: '';
  position: absolute;
  top: 96px;
  right: 12%;
  width: 48px;
  height: 48px;
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  opacity: .09;
  border-radius: 36px;
  transform: rotate(-22deg)
}

.learnprog .topimg .patdot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #A6B1CE;
  opacity: .15;
  border-radius: 0
}

.learnprog .topimg .patdot:nth-child(1) {
  top: 48px;
  left: 18%
}

.learnprog .topimg .patdot:nth-child(2) {
  top: 128px;
  left: 22%
}

.learnprog .topimg .patdot:nth-child(3) {
  top: 72px;
  right: 16%
}

.learnprog .topimg .patdot:nth-child(4) {
  top: 144px;
  right: 19%
}

.learnprog .topimg .patdot:nth-child(5) {
  bottom: 96px;
  left: 14%
}

.learnprog .topimg .patdot:nth-child(6) {
  bottom: 64px;
  right: 25%
}

.learnprog .imghold {
  width: 100%;
  max-width: 720px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
  animation: flipreveal .85s cubic-bezier(0.34, 1.56, 0.64, 1) backwards
}

@keyframes flipreveal {
  from {
    transform: perspective(800px) rotateY(-90deg);
    opacity: 0
  }

  to {
    transform: perspective(800px) rotateY(0deg);
    opacity: 1
  }
}

.learnprog .imghold img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 #4051b71c
}

.learnprog .txtzone {
  text-align: center;
  max-width: 680px;
  padding: 32px 16px;
  position: relative;
  z-index: 2
}

.learnprog .txtzone h1 {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 24px
}

.learnprog .txtzone .quote {
  font-size: 19px;
  line-height: 1.6;
  color: #2a2a2a;
  font-style: italic;
  margin: 0;
  opacity: .88
}

.learnprog .widecol {
  max-width: 1366px;
  margin: 64px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

@media (min-width: 768px) {
  .learnprog .widecol {
    grid-template-columns: 2fr 1fr
  }
}

.learnprog .leftmain {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative
}

.learnprog .leftmain::before {
  content: '01';
  position: absolute;
  top: 16px;
  right: 32px;
  font-size: 70px;
  line-height: 1;
  color: #4051B7;
  opacity: .06;
  font-weight: 700;
  pointer-events: none
}

.learnprog .leftmain h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #2a2a2a;
  margin: 0 0 24px
}

.learnprog .leftmain p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 16px
}

.learnprog .leftmain p:last-child {
  margin-bottom: 0
}

.learnprog .rightlabels {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.learnprog .labelcard {
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  padding: 24px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1)
}

.learnprog .labelcard:hover {
  transform: translateX(-8px)
}

.learnprog .labelcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff1f;
  transition: left .16s cubic-bezier(0.4, 0, 1, 1)
}

.learnprog .labelcard:hover::before {
  left: 0
}

.learnprog .labelcard h3 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 8px;
  position: relative;
  z-index: 1
}

.learnprog .labelcard .labeltxt {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  opacity: .92;
  position: relative;
  z-index: 1
}

.learnprog .metrics {
  background: #2a2a2a;
  padding: 64px 16px;
  position: relative;
  overflow: hidden
}

.learnprog .metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./image_archive/P9105-2024-08-28.jpg);
  background-size: cover;
  background-position: center;
  opacity: .11;
  z-index: 0
}

.learnprog .metrics .metricwrap {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.learnprog .metrics h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #fff;
  text-align: center;
  margin: 0 0 48px
}

.learnprog .metricgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

@media (min-width: 768px) {
  .learnprog .metricgrid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.learnprog .metricitem {
  text-align: center;
  animation: metricfade .7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards
}

.learnprog .metricitem:nth-child(1) {
  animation-delay: .1s
}

.learnprog .metricitem:nth-child(2) {
  animation-delay: .2s
}

.learnprog .metricitem:nth-child(3) {
  animation-delay: .3s
}

@keyframes metricfade {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

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

.learnprog .ringwrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  position: relative
}

.learnprog .ringbg {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: #a6b1ce26;
  position: relative;
  overflow: hidden
}

.learnprog .ringfill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  transition: height .6s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.learnprog .metricitem:nth-child(1) .ringfill {
  height: 78%
}

.learnprog .metricitem:nth-child(2) .ringfill {
  height: 92%
}

.learnprog .metricitem:nth-child(3) .ringfill {
  height: 65%
}

.learnprog .ringnum {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  z-index: 2
}

.learnprog .metricitem h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 8px
}

.learnprog .metricitem p {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  opacity: .82;
  margin: 0
}

.learnprog .proscons {
  max-width: 1366px;
  margin: 64px auto;
  padding: 0 16px
}

.learnprog .proscons h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #2a2a2a;
  text-align: center;
  margin: 0 0 48px;
  position: relative
}

.learnprog .proscons h2::before {
  content: '02';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 70px;
  line-height: 1;
  color: #4051B7;
  opacity: .06;
  font-weight: 700;
  pointer-events: none;
  z-index: -1
}

.learnprog .twocol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

@media (min-width: 768px) {
  .learnprog .twocol {
    grid-template-columns: 1fr 1fr
  }
}

.learnprog .procol {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 #4051b714;
  border-top: 4px solid #4051B7
}

.learnprog .concol {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 #4051b714;
  border-top: 4px solid #A6B1CE
}

.learnprog .procol h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px
}

.learnprog .concol h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #A6B1CE;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px
}

.learnprog .proicon {
  width: 32px;
  height: 32px;
  background: #4051B7;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.learnprog .conicon {
  width: 32px;
  height: 32px;
  background: #A6B1CE;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.learnprog .proicon svg,
.learnprog .conicon svg {
  width: 16px;
  height: 16px;
  fill: #fff
}

.learnprog .procol ul,
.learnprog .concol ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.learnprog .procol li,
.learnprog .concol li {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 16px;
  padding-left: 28px;
  position: relative
}

.learnprog .procol li:last-child,
.learnprog .concol li:last-child {
  margin-bottom: 0
}

.learnprog .procol li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #4051B7;
  border-radius: 36px
}

.learnprog .concol li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #A6B1CE;
  border-radius: 36px
}

.learnprog .tallcols {
  max-width: 1366px;
  margin: 64px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

@media (min-width: 768px) {
  .learnprog .tallcols {
    grid-template-columns: 1fr 1.4fr;
    align-items: start
  }
}

.learnprog .shortside {
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  padding: 32px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.learnprog .shortside::before {
  content: '';
  position: absolute;
  top: -64px;
  right: -64px;
  width: 180px;
  height: 180px;
  background: #ffffff14;
  border-radius: 36px;
  transform: rotate(25deg)
}

.learnprog .shortside h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.learnprog .shortside p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: .92;
  position: relative;
  z-index: 1
}

.learnprog .tallside {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative
}

.learnprog .tallside::before {
  content: '03';
  position: absolute;
  top: 16px;
  right: 32px;
  font-size: 70px;
  line-height: 1;
  color: #4051B7;
  opacity: .06;
  font-weight: 700;
  pointer-events: none
}

.learnprog .tallside h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0 0 24px
}

.learnprog .tallside p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 16px
}

.learnprog .tallside p:last-child {
  margin-bottom: 0
}

.learnprog .geoshape {
  padding: 64px 16px;
  position: relative;
  overflow: hidden;
  background: #FAFBFB
}

.learnprog .geoshape::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  opacity: .05;
  border-radius: 36px;
  transform: rotate(-18deg);
  pointer-events: none
}

.learnprog .geoshape .shapewrap {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.learnprog .geoshape h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #2a2a2a;
  margin: 0 0 32px;
  position: relative
}

.learnprog .geoshape h2::before {
  content: '04';
  position: absolute;
  top: -12px;
  left: -48px;
  font-size: 70px;
  line-height: 1;
  color: #4051B7;
  opacity: .06;
  font-weight: 700;
  pointer-events: none
}

.learnprog .toollist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px
}

@media (min-width: 768px) {
  .learnprog .toollist {
    grid-template-columns: repeat(2, 1fr)
  }
}

.learnprog .toolcard {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 #4051b714;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.learnprog .toolcard:hover {
  box-shadow: 0 4px 14px 0 #4051b71c
}

.learnprog .toolcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 4px;
  height: 100%;
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  transition: left .15s cubic-bezier(0.4, 0, 1, 1)
}

.learnprog .toolcard:hover::before {
  left: 0
}

.learnprog .toolicon {
  width: 48px;
  height: 48px;
  background: linear-gradient(270deg, #4051B7 0%, #A6B1CE 100%);
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px 0 #ffffff3d
}

.learnprog .toolicon svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.learnprog .tooltxt h4 {
  font-size: 19px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0 0 8px
}

.learnprog .tooltxt p {
  font-size: 16px;
  line-height: 1.4;
  color: #3a3a3a;
  margin: 0
}

@media (max-width: 767px) {
  .learnprog .topimg {
    padding-top: 32px
  }

  .learnprog .txtzone h1 {
    font-size: 32px
  }

  .learnprog .leftmain,
  .learnprog .tallside,
  .learnprog .shortside {
    padding: 24px
  }

  .learnprog .metrics {
    padding: 48px 16px
  }

  .learnprog .geoshape h2::before {
    display: none
  }
}

.ld {
  max-width: 1366px;
  margin: 0 auto;
  background: #FAFBFB
}

.ld .opn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 64px 32px;
  background: linear-gradient(to left, #4051B7, #A6B1CE);
  position: relative;
  overflow: hidden
}

.ld .opn::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #ffffff0f;
  top: -80px;
  right: 120px;
  pointer-events: none
}

.ld .opn::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ffffff0a;
  bottom: -40px;
  right: 320px;
  pointer-events: none
}

.ld .opnimg {
  flex-shrink: 0;
  width: 340px;
  position: relative
}

.ld .opnimg img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative
}

.ld .opnimg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, #0006, transparent);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1
}

.ld .opntxt {
  flex: 1;
  color: #fff
}

.ld .opntxt h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff
}

.ld .opntxt h1 span {
  border-bottom: 3px solid #fffc;
  padding-bottom: 4px
}

.ld .opntxt p {
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  color: #fffffff2
}

.ld .inv {
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.ld .invgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto
}

.ld .invcard {
  background: #FAFBFB;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative;
  transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.ld .invcard:hover {
  transform: translateY(-4px)
}

.ld .invcard::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4051b71a, #a6b1ce1a);
  border-radius: 50%
}

.ld .invnum {
  font-size: 70px;
  line-height: 1.15;
  color: #4051b714;
  font-weight: 700;
  margin: 0 0 8px
}

.ld .invcard h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #4051B7
}

.ld .invcard p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #333
}

.ld .gap {
  padding: 64px 32px;
  background: #FAFBFB;
  position: relative
}

.ld .gapwrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ld .gaphead {
  text-align: center
}

.ld .gaphead h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #4051B7
}

.ld .gaphead p {
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  color: #555
}

.ld .gapcomp {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center
}

.ld .gapside {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 #4051b714
}

.ld .gapside h4 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #A6B1CE;
  text-transform: uppercase;
  letter-spacing: .5px
}

.ld .gapside p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #666
}

.ld .gaparrow {
  width: 60px;
  height: 60px;
  position: relative
}

.ld .gaparrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #4051B7;
  stroke-width: 2
}

.ld .shp {
  padding: 64px 32px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.ld .shp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to left, #4051B7, #A6B1CE)
}

.ld .shpwrap {
  max-width: 1100px;
  margin: 0 auto
}

.ld .shphead {
  margin-bottom: 32px
}

.ld .shphead h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #4051B7
}

.ld .shpgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.ld .shpphase {
  background: #FAFBFB;
  padding: 32px 16px;
  border-radius: 20px;
  position: relative;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1)
}

.ld .shpphase:hover {
  background: #fff;
  box-shadow: 0 4px 14px 0 #4051b71c
}

.ld .shpphase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: linear-gradient(to left, #4051B7, #A6B1CE);
  opacity: 0;
  transition: opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.ld .shpphase:hover::after {
  opacity: 1
}

.ld .shpicon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4051b71a, #a6b1ce1a);
  border-radius: 50%
}

.ld .shpicon svg {
  width: 24px;
  height: 24px;
  fill: #4051B7
}

.ld .shpphase h5 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #4051B7;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px
}

.ld .shpphase p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #555;
  text-align: center
}

.ld .sup {
  padding: 64px 32px;
  background: linear-gradient(to left, #4051b708, #a6b1ce08);
  position: relative
}

.ld .supwrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.ld .suptxt h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 32px;
  color: #4051B7
}

.ld .suplist {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ld .supitem {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: start;
  position: relative
}

.ld .supitem::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: -24px;
  width: 1px;
  border-left: 2px dashed #A6B1CE
}

.ld .supitem:last-child::before {
  display: none
}

.ld .supico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px 0 #4051b714;
  position: relative;
  z-index: 1
}

.ld .supico svg {
  width: 20px;
  height: 20px;
  fill: #4051B7
}

.ld .supitem h5 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #4051B7
}

.ld .supitem p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #555
}

.ld .supimg {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px 0 #4051b71c
}

.ld .supimg img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block
}

.ld .res {
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.ld .reswrap {
  max-width: 1100px;
  margin: 0 auto
}

.ld .reshead {
  text-align: center;
  margin-bottom: 64px;
  position: relative
}

.ld .reshead::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
  width: 80px;
  height: 3px;
  background: linear-gradient(to left, #4051B7, #A6B1CE)
}

.ld .reshead h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #4051B7
}

.ld .reshead p {
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  color: #555
}

.ld .resgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px
}

.ld .resbox {
  background: linear-gradient(135deg, #4051b705, #a6b1ce05);
  padding: 32px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .14s cubic-bezier(0.4, 0, 1, 1)
}

.ld .resbox:hover {
  box-shadow: 0 8px 48px 0 #4051b71c
}

.ld .resbox::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #4051b714, transparent);
  border-radius: 50%;
  pointer-events: none
}

.ld .reslabel {
  display: inline-block;
  padding: 8px 16px;
  background: #4051b71a;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #4051B7;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.ld .resbox h4 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #4051B7
}

.ld .resbox p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #555
}

.ld .dst {
  padding: 64px 32px;
  background: url(./image_archive/P9107-2024-11-13.jpg) center/cover no-repeat;
  position: relative
}

.ld .dst::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffffeb;
  pointer-events: none
}

.ld .dstwrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.ld .dsthead {
  margin-bottom: 64px
}

.ld .dsthead h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #4051B7
}

.ld .dstcols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px
}

.ld .dstcol h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 16px;
  color: #4051B7;
  position: relative;
  padding-left: 48px
}

.ld .dstcol h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4051B7, #A6B1CE);
  border-radius: 50%
}

.ld .dstcol h3::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #A6B1CE, #4051B7);
  border-radius: 50%
}

.ld .dstcol p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #333
}

.ld .dstcol p:last-child {
  margin-bottom: 0
}

.ld .dstmetrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px
}

.ld .dstmet {
  background: #fff;
  padding: 24px 16px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 1px 4px 0 #4051b714;
  position: relative;
  overflow: hidden;
  transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.ld .dstmet:hover {
  transform: scale(1.05)
}

.ld .dstmet::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4051b70d, #a6b1ce0d);
  transition: left .18s cubic-bezier(0.4, 0, 1, 1)
}

.ld .dstmet:hover::before {
  left: 0
}

.ld .dstval {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: #4051B7;
  font-weight: 700;
  position: relative;
  z-index: 1
}

.ld .dstmet p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  color: #555;
  position: relative;
  z-index: 1
}

@keyframes scanline {
  0% {
    transform: translateY(-100%)
  }

  100% {
    transform: translateY(100vh)
  }
}

.ld .inv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #4051b733, transparent);
  animation: scanline 8s linear infinite;
  pointer-events: none
}

.ld .gap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #a6b1ce33, transparent);
  animation: scanline 10s linear infinite;
  pointer-events: none
}

.ld .shp::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #4051b726, transparent);
  animation: scanline 12s linear infinite;
  pointer-events: none
}

@media (max-width: 768px) {
  .ld .opn {
    flex-direction: column;
    padding: 32px 16px
  }

  .ld .opnimg {
    width: 100%
  }

  .ld .opnimg img {
    height: 240px
  }

  .ld .opntxt h1 {
    font-size: 32px
  }

  .ld .opntxt p {
    font-size: 16px
  }

  .ld .inv {
    padding: 32px 16px
  }

  .ld .invgrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .ld .gap {
    padding: 32px 16px
  }

  .ld .gaphead h2 {
    font-size: 32px
  }

  .ld .gapcomp {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .ld .gaparrow {
    transform: rotate(90deg);
    margin: 0 auto
  }

  .ld .shp {
    padding: 32px 16px
  }

  .ld .shphead h2 {
    font-size: 32px
  }

  .ld .shpgrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .ld .sup {
    padding: 32px 16px
  }

  .ld .supwrap {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ld .suptxt h2 {
    font-size: 32px
  }

  .ld .supimg img {
    height: 320px
  }

  .ld .res {
    padding: 32px 16px
  }

  .ld .reshead h2 {
    font-size: 32px
  }

  .ld .resgrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .ld .dst {
    padding: 32px 16px
  }

  .ld .dsthead h2 {
    font-size: 32px
  }

  .ld .dstcols {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ld .dstmetrics {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

.casestud {
  background: #fff;
  min-height: 100vh
}

.casestud .topzone {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: stretch;
  position: relative;
  overflow: hidden
}

.casestud .topzone::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border: 3px solid #A6B1CE;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
  z-index: 0
}

.casestud .topzone::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: 20%;
  width: 180px;
  height: 180px;
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  opacity: .06;
  border-radius: 36px;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0
}

.casestud .imghalf {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center
}

.casestud .imghalf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: .75;
  box-shadow: 0 8px 48px 0 #4051b71c
}

.casestud .txthalf {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  position: relative;
  z-index: 1
}

.casestud .dotpattern {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 64px;
  height: 64px;
  background-image: radial-gradient(circle, #4051B7 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .15;
  pointer-events: none
}

.casestud .txthalf h1 {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 32px;
  font-weight: 700
}

.casestud .txthalf p {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px
}

.casestud .txthalf p:last-child {
  margin-bottom: 0
}

.casestud .listzone {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px
}

.casestud .listzone h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 32px;
  font-weight: 700;
  text-align: center
}

.casestud .cardgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px
}

.casestud .postcard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 #4051b71c;
  transition: transform .14s cubic-bezier(0.4, 0, 1, 1), box-shadow .16s cubic-bezier(0.4, 0, 1, 1);
  display: flex;
  flex-direction: column;
  position: relative
}

.casestud .postcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 48px 0 #4051b71c
}

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

.casestud .postcard .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .18s cubic-bezier(0.4, 0, 1, 1)
}

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

.casestud .postcard .tagbadge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

.casestud .postcard .txtblock {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1
}

.casestud .postcard .txtblock h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0;
  font-weight: 700
}

.casestud .postcard .txtblock h4 {
  font-size: 19px;
  line-height: 1.4;
  color: #A6B1CE;
  margin: 0;
  font-weight: 600
}

.casestud .postcard .txtblock p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  flex-grow: 1
}

.casestud .postcard .metabar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #777
}

.casestud .postcard .metabar .authname {
  font-weight: 600;
  color: #4051B7
}

.casestud .postcard .metabar .readmins {
  font-style: italic
}

.casestud .postcard .linkwrap {
  padding: 0 32px 32px
}

.casestud .postcard .linkwrap a {
  display: inline-block;
  padding: 16px 32px;
  background: #4051B7;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .14s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  overflow: hidden
}

.casestud .postcard .linkwrap a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #A6B1CE 0%, #4051B7 100%);
  transition: left .16s cubic-bezier(0.4, 0, 1, 1);
  z-index: 0
}

.casestud .postcard .linkwrap a:hover::before {
  left: 0
}

.casestud .postcard .linkwrap a span {
  position: relative;
  z-index: 1
}

.casestud .compzone {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px;
  background: #FAFBFB;
  border-radius: 36px;
  margin-top: 64px;
  position: relative
}

.casestud .compzone h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 32px;
  font-weight: 700;
  text-align: center
}

.casestud .compzone .twocols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.casestud .compzone .optbox {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative;
  overflow: hidden
}

.casestud .compzone .optbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #4051B7 0%, #A6B1CE 100%)
}

.casestud .compzone .optbox h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 16px;
  font-weight: 700
}

.casestud .compzone .optbox p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 16px
}

.casestud .compzone .optbox p:last-child {
  margin-bottom: 0
}

.casestud .compzone .optbox ul {
  list-style: circle;
  padding-left: 32px;
  margin: 16px 0 0
}

.casestud .compzone .optbox ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 8px
}

.casestud .statszone {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px;
  margin-top: 64px
}

.casestud .statszone h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 32px;
  font-weight: 700;
  text-align: center
}

.casestud .statszone .statgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px
}

.casestud .statszone .statbox {
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  padding: 32px;
  border-radius: 36px;
  text-align: center;
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative;
  overflow: hidden;
  animation: gentleshake 4s ease-in-out 2s infinite
}

@keyframes gentleshake {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-4px)
  }

  50% {
    transform: translateX(4px)
  }

  75% {
    transform: translateX(-2px)
  }
}

.casestud .statszone .statbox::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #fff3;
  border-radius: 50%;
  pointer-events: none
}

.casestud .statszone .statbox .statnum {
  font-size: 44px;
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
  margin: 0 0 8px
}

.casestud .statszone .statbox .statlabel {
  font-size: 19px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  margin: 0
}

.casestud .methodzone {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px;
  margin-top: 64px
}

.casestud .methodzone h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 32px;
  font-weight: 700
}

.casestud .methodzone .steplist {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.casestud .methodzone .stepitem {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  position: relative
}

.casestud .methodzone .stepitem .numbox {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(270deg, #A6B1CE 0%, #4051B7 100%);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px 0 #4051b71c;
  position: relative
}

.casestud .methodzone .stepitem .numbox::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #4051B7;
  border-radius: 50%;
  border: 3px solid #fff
}

.casestud .methodzone .stepitem .steptext {
  flex: 1
}

.casestud .methodzone .stepitem .steptext h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 8px;
  font-weight: 700
}

.casestud .methodzone .stepitem .steptext p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0
}

.casestud .divline {
  max-width: 1366px;
  margin: 64px auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px
}

.casestud .divline svg {
  width: 24px;
  height: 24px;
  fill: #A6B1CE
}

@media (max-width: 768px) {
  .casestud .topzone {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px
  }

  .casestud .txthalf {
    padding: 16px
  }

  .casestud .txthalf h1 {
    font-size: 32px;
    margin-bottom: 16px
  }

  .casestud .txthalf p {
    font-size: 16px
  }

  .casestud .listzone {
    padding: 32px 16px
  }

  .casestud .listzone h2 {
    font-size: 24px;
    margin-bottom: 16px
  }

  .casestud .cardgrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .casestud .postcard .txtblock {
    padding: 16px
  }

  .casestud .postcard .linkwrap {
    padding: 0 16px 16px
  }

  .casestud .compzone {
    padding: 32px 16px;
    margin-top: 32px
  }

  .casestud .compzone h2 {
    font-size: 24px;
    margin-bottom: 16px
  }

  .casestud .compzone .twocols {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .casestud .compzone .optbox {
    padding: 16px
  }

  .casestud .statszone {
    padding: 32px 16px;
    margin-top: 32px
  }

  .casestud .statszone h2 {
    font-size: 24px;
    margin-bottom: 16px
  }

  .casestud .statszone .statgrid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .casestud .statszone .statbox {
    padding: 16px
  }

  .casestud .statszone .statbox .statnum {
    font-size: 32px
  }

  .casestud .statszone .statbox .statlabel {
    font-size: 16px
  }

  .casestud .methodzone {
    padding: 32px 16px;
    margin-top: 32px
  }

  .casestud .methodzone h2 {
    font-size: 24px;
    margin-bottom: 16px
  }

  .casestud .methodzone .steplist {
    gap: 16px
  }

  .casestud .methodzone .stepitem {
    flex-direction: column;
    gap: 16px
  }

  .casestud .methodzone .stepitem .numbox {
    width: 64px;
    height: 64px;
    font-size: 24px
  }

  .casestud .methodzone .stepitem .steptext h3 {
    font-size: 19px
  }

  .casestud .divline {
    margin: 32px auto
  }
}

.successpage {
  max-width: 1366px;
  margin: 0 auto;
  padding: 64px 16px;
  background: #FAFBFB
}

.successpage .confirmwrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 #4051b71c
}

.successpage .iconcheck {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  background: linear-gradient(to left, #4051B7, #A6B1CE);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.successpage .iconcheck::before {
  content: '';
  width: 32px;
  height: 56px;
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(45deg) translateY(-8px)
}

.successpage .maintitle {
  font-size: 44px;
  line-height: 1.15;
  color: #4051B7;
  margin: 0 0 16px
}

.successpage .subdesc {
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 32px
}

.successpage .detailbox {
  background: #FAFBFB;
  border-radius: 20px;
  padding: 32px;
  margin: 0 0 32px;
  text-align: left
}

.successpage .detailrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #a6b1ce33
}

.successpage .detailrow:last-child {
  border-bottom: none
}

.successpage .detaillabel {
  font-size: 16px;
  line-height: 1.4;
  color: #666
}

.successpage .detailvalue {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  font-weight: 600
}

.successpage .nextinfo {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 32px
}

.successpage .actiongroup {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.successpage .btnprimary {
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  background: linear-gradient(to left, #4051B7, #A6B1CE);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform .12s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 0 1px 4px 0 #4051b714;
  position: relative;
  overflow: hidden
}

.successpage .btnprimary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff3, transparent);
  transition: left .15s cubic-bezier(0.4, 0, 1, 1)
}

.successpage .btnprimary:hover::before {
  left: 100%
}

.successpage .btnprimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px 0 #4051b71c
}

.successpage .btnsecondary {
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  background: #fff;
  color: #4051B7;
  border: 2px solid #4051B7;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1)
}

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

.successpage .supportnote {
  margin: 32px 0 0;
  padding: 32px;
  background: #fff;
  border-radius: 20px;
  border-left: 8px solid #A6B1CE
}

.successpage .supportnote .notetitle {
  font-size: 19px;
  line-height: 1.4;
  color: #4051B7;
  margin: 0 0 8px;
  font-weight: 600
}

.successpage .supportnote .notetext {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0
}

.successpage .contactlink {
  color: #4051B7;
  text-decoration: none;
  position: relative;
  padding: 2px 8px;
  transition: background .14s cubic-bezier(0.4, 0, 1, 1);
  border-radius: 36px
}

.successpage .contactlink::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #4051b71a;
  border-radius: 36px;
  transition: width .16s cubic-bezier(0.4, 0, 1, 1);
  z-index: -1
}

.successpage .contactlink:hover::before {
  width: 100%
}

@media (max-width: 768px) {
  .successpage {
    padding: 32px 16px
  }

  .successpage .confirmwrap {
    padding: 32px 16px
  }

  .successpage .maintitle {
    font-size: 32px
  }

  .successpage .iconcheck {
    width: 72px;
    height: 72px
  }

  .successpage .iconcheck::before {
    width: 24px;
    height: 42px;
    border-right: 5px solid #fff;
    border-bottom: 5px solid #fff
  }

  .successpage .detailbox {
    padding: 16px
  }

  .successpage .detailrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .successpage .actiongroup {
    flex-direction: column
  }

  .successpage .btnprimary,
  .successpage .btnsecondary {
    width: 100%;
    text-align: center
  }

  .successpage .supportnote {
    padding: 16px
  }
}