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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.5;
  color: #222222;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

.text-primary {
  color: #6e2681 !important;
}

.container {
  max-width: 1600px !important;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2vw, 24px);
  color: #222222;
}
.section-title .text-primary {
  color: #6e2681 !important;
}
@media (max-width: 768px) {
  .section-title br {
    display: none;
  }
}

.section-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -2%;
  color: #666666;
  margin-bottom: 48px;
  max-width: 800px;
}
.section-subtitle.text-center {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(110, 38, 129, 0.3) transparent;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(110, 38, 129, 0.15);
  border-radius: 100px;
  border: 3px solid #ffffff;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(110, 38, 129, 0.4);
  border-width: 2px;
}

.header {
  height: 120px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100px;
}
@media (max-width: 768px) {
  .header.scrolled {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 80px;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
}
.header .logo svg {
  height: auto;
  max-width: 130px;
}
@media (max-width: 768px) {
  .header .logo svg {
    max-width: 100px;
  }
}
.header .logo {
  color: #6e2681;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.header .nav {
  margin-left: auto;
  margin-right: 48px;
}
@media (max-width: 1024px) {
  .header .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  .header .nav.active {
    display: flex;
  }
}
.header .nav .nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .header .nav .nav-list {
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
  }
}
.header .nav .nav-list .nav-item a {
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .header .nav .nav-list .nav-item a {
    font-size: 20px;
  }
}
.header .nav .nav-list .nav-item a:hover {
  color: #6e2681;
}
.header .nav .nav-list .nav-item.mobile-contact-link {
  display: none;
}
@media (max-width: 1024px) {
  .header .nav .nav-list .nav-item.mobile-contact-link {
    display: block;
    margin-top: 20px;
  }
  .header .nav .nav-list .nav-item.mobile-contact-link a {
    background-color: #6e2681;
    color: #fff;
    padding: 12px 32px;
    border-radius: 5vmax;
    font-size: 16px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .header .nav .nav-list .nav-item.mobile-contact-link a {
    font-size: 15px;
    padding: 10px 24px;
  }
}
.header .actions {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1002;
}
.header .actions .btn-contact {
  background-color: #6e2681;
  color: #fff;
  padding: 18px 32px;
  border-radius: 5vmax;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .actions .btn-contact:hover {
  background-color: rgb(93.2035928144, 32.1976047904, 109.3023952096);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .header .actions .btn-contact {
    display: none;
  }
}
.header .actions .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header .actions .menu-toggle {
    display: flex;
  }
}
.header .actions .menu-toggle span {
  width: 30px;
  height: 2px;
  background-color: #222222;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

main {
  padding-top: 120px;
}
@media (max-width: 768px) {
  main {
    padding-top: 80px;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 0 60px 0 !important;
}
@media (max-width: 1024px) {
  .hero-section {
    padding-bottom: clamp(60px, 8vw, 100px) !important;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-bottom: clamp(40px, 12vw, 80px) !important;
  }
}
.hero-section .pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-section .pattern-1 {
  top: -100px;
  left: 0;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 1350px) {
  .hero-section .pattern-1 {
    max-width: 600px;
    left: 0;
  }
}
@media (max-width: 768px) {
  .hero-section .pattern-1 {
    max-width: 100%;
    width: 100%;
    left: 0;
    top: -50px;
  }
}
.hero-section .pattern-2 {
  bottom: -600px;
  right: 0;
  width: 100%;
  max-width: 900px;
}
@media (max-width: 1350px) {
  .hero-section .pattern-2 {
    max-width: 700px;
    right: 0;
  }
}
@media (max-width: 768px) {
  .hero-section .pattern-2 {
    max-width: 100%;
    width: 100%;
    right: 0;
    bottom: -200px;
  }
}
.hero-section .pattern img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section .badge-pill {
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -3%;
  text-align: center;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  border: 1px solid rgba(110, 38, 129, 0.1);
  background: rgba(110, 38, 129, 0.02);
  color: rgb(59.5, 59.5, 59.5);
  margin-bottom: 2rem;
}
@media (max-width: 1850px) {
  .hero-section .badge-pill {
    font-size: 22px;
  }
}
@media (max-width: 1550px) {
  .hero-section .badge-pill {
    font-size: 19px;
  }
}
@media (max-width: 1024px) {
  .hero-section .badge-pill {
    font-size: 17px;
    padding: 10px 24px;
  }
}
@media (max-width: 768px) {
  .hero-section .badge-pill {
    font-size: 14px;
    padding: 8px 20px;
    margin-top: 40px;
  }
}
.hero-section .hero-title {
  font-weight: 400;
  font-size: 106px;
  line-height: 100px;
  letter-spacing: -2%;
  text-align: center;
  color: #222222;
  margin-bottom: clamp(16px, 3vw, 32px);
}
.hero-section .hero-title .text-primary {
  color: #6e2681 !important;
}
@media (max-width: 1850px) {
  .hero-section .hero-title {
    font-size: clamp(60px, 6vw, 90px);
    line-height: 1.1;
  }
}
@media (max-width: 1024px) {
  .hero-section .hero-title {
    font-size: clamp(48px, 8vw, 72px);
  }
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: clamp(32px, 10vw, 42px);
  }
  .hero-section .hero-title br {
    display: none;
  }
}
.hero-section .hero-subtitle {
  font-weight: 400;
  font-size: clamp(18px, 3vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  color: #686868;
  font-weight: 300;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 1850px) {
  .hero-section .hero-subtitle {
    font-size: clamp(24px, 2.5vw, 36px);
  }
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 20px;
  }
}
.hero-section .hero-action-card {
  max-width: 700px;
  padding: 36px;
  margin: 0 auto 80px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.0132) 100%);
  border-radius: 42px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-section .hero-action-card {
    padding: 24px 20px;
    margin-bottom: 60px;
    font-size: 14px;
    border-radius: 24px;
  }
  .hero-section .hero-action-card .btn {
    width: 100% !important;
    margin-bottom: 10px;
    padding: 14px 24px !important;
  }
}
.hero-section .hero-image-wrapper {
  max-width: 1100px;
  margin: 40px auto 0;
  position: relative;
}
@media (max-width: 1024px) {
  .hero-section .hero-image-wrapper {
    max-width: 95%;
  }
}
.hero-section .hero-image-wrapper .main-hero-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.5rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-image-wrapper .info-card-overlay {
  max-width: 800px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -2%;
  text-align: center;
  color: #333;
  z-index: 5;
}
@media (max-width: 1350px) {
  .hero-section .hero-image-wrapper .info-card-overlay {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .hero-section .hero-image-wrapper .info-card-overlay {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-image-wrapper .info-card-overlay {
    font-size: 14px;
  }
}

.challenge-section {
  position: relative;
  padding: 60px 0 !important;
}
@media (max-width: 1024px) {
  .challenge-section {
    padding: clamp(60px, 8vw, 100px) 0 !important;
  }
}
@media (max-width: 768px) {
  .challenge-section {
    padding: clamp(40px, 12vw, 80px) 0 !important;
  }
}
.challenge-section .pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.challenge-section .pattern-3 {
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 900px;
}
@media (max-width: 1450px) {
  .challenge-section .pattern-3 {
    max-width: 700px;
    left: 0;
  }
}
@media (max-width: 768px) {
  .challenge-section .pattern-3 {
    max-width: 100%;
    width: 100%;
    left: 0;
  }
}
.challenge-section .pattern img {
  width: 100%;
  height: auto;
}
.challenge-section .custom-challenge-box {
  position: relative;
  z-index: 2;
  max-width: 1680px;
  background: #ffffff;
  border-radius: 24px;
  padding: 64px 120px 0 120px;
  box-shadow: 0px 7px 48px 0px rgba(0, 0, 0, 0.0784313725);
  overflow: hidden;
}
@media (max-width: 1450px) {
  .challenge-section .custom-challenge-box {
    padding: 64px 80px 0 80px;
  }
}
@media (max-width: 1024px) {
  .challenge-section .custom-challenge-box {
    padding: 48px 40px 0 40px;
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .challenge-section .custom-challenge-box {
    padding: 32px 24px 0 24px;
  }
}
.challenge-section .challenge-title {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -2%;
  color: #222222;
}
@media (max-width: 1850px) {
  .challenge-section .challenge-title {
    font-size: 48px;
  }
}
@media (max-width: 1450px) {
  .challenge-section .challenge-title {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .challenge-section .challenge-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .challenge-section .challenge-title {
    font-size: 32px;
  }
  .challenge-section .challenge-title br {
    display: none;
  }
}
.challenge-section .challenge-description-top {
  font-weight: 500;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -2%;
  color: #686868;
  max-width: 648px;
}
@media (max-width: 1850px) {
  .challenge-section .challenge-description-top {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .challenge-section .challenge-description-top {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .challenge-section .challenge-description-top {
    font-size: 16px;
  }
}
.challenge-section .challenge-description-main {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -2%;
  color: #333;
}
.challenge-section .challenge-description-main strong {
  color: #222222;
}
@media (max-width: 1024px) {
  .challenge-section .challenge-description-main {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .challenge-section .challenge-description-main {
    font-size: 16px;
  }
}
.challenge-section .challenge-image-wrapper {
  margin-top: 70px;
  margin-left: -120px;
  margin-right: -120px;
}
@media (max-width: 1450px) {
  .challenge-section .challenge-image-wrapper {
    margin-left: -80px;
    margin-right: -80px;
  }
}
@media (max-width: 1024px) {
  .challenge-section .challenge-image-wrapper {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media (max-width: 768px) {
  .challenge-section .challenge-image-wrapper {
    display: none;
  }
}
.challenge-section .challenge-image-wrapper img {
  display: block;
  padding: 0 120px;
}
@media (max-width: 1450px) {
  .challenge-section .challenge-image-wrapper img {
    padding: 0 80px;
  }
}
@media (max-width: 1024px) {
  .challenge-section .challenge-image-wrapper img {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .challenge-section .challenge-image-wrapper img {
    padding: 0;
  }
}

.redesign-section {
  padding: 60px 0 !important;
  position: relative;
}
@media (max-width: 1024px) {
  .redesign-section {
    padding: clamp(60px, 8vw, 100px) 0 !important;
  }
}
@media (max-width: 768px) {
  .redesign-section {
    padding: clamp(40px, 12vw, 80px) 0 !important;
  }
}
.redesign-section .pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.redesign-section .pattern-4 {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}
@media (max-width: 1450px) {
  .redesign-section .pattern-4 {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .redesign-section .pattern-4 {
    max-width: 100%;
    width: 100%;
  }
}
.redesign-section .pattern img {
  width: 100%;
  height: auto;
}
.redesign-section .redesign-container {
  position: relative;
  z-index: 2;
  max-width: 1680px;
}
@media (max-width: 1850px) {
  .redesign-section .redesign-container {
    padding: 0 80px;
  }
}
@media (max-width: 1024px) {
  .redesign-section .redesign-container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .redesign-section .redesign-container {
    padding: 0 24px;
  }
}
.redesign-section .redesign-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -2%;
  color: #222222;
}
@media (max-width: 1850px) {
  .redesign-section .redesign-title {
    font-size: 52px;
  }
}
@media (max-width: 1450px) {
  .redesign-section .redesign-title {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .redesign-section .redesign-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .redesign-section .redesign-title {
    font-size: 32px;
  }
  .redesign-section .redesign-title br {
    display: none;
  }
}
.redesign-section .redesign-lead {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -2%;
  color: #333;
  max-width: 680px;
}
@media (max-width: 1024px) {
  .redesign-section .redesign-lead {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .redesign-section .redesign-lead {
    font-size: 18px;
  }
}
.redesign-section .redesign-detail {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -2%;
  color: #888;
  max-width: 745px;
}
.redesign-section .redesign-questions-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 1024px) {
  .redesign-section .redesign-questions-grid {
    align-items: flex-start;
    margin-top: 40px;
  }
}
.redesign-section .question-pill {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  padding: 18px 42px;
  border-radius: 5vmax 0 5vmax 5vmax;
  font-weight: 500;
  font-size: 27px;
  line-height: 110%;
  letter-spacing: -2%;
  color: #222222;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.redesign-section .question-pill:hover {
  transform: translateX(-10px);
  border-color: rgba(110, 38, 129, 0.2);
}
@media (max-width: 1850px) {
  .redesign-section .question-pill {
    font-size: 24px;
    padding: 16px 36px;
  }
}
@media (max-width: 1720px) {
  .redesign-section .question-pill {
    font-size: 22px;
  }
}
@media (max-width: 1450px) {
  .redesign-section .question-pill {
    font-size: 20px;
    padding: 14px 32px;
  }
}
@media (max-width: 1024px) {
  .redesign-section .question-pill {
    width: 100%;
    font-size: 18px;
    padding: 12px 24px;
    line-height: 1.3;
    border-radius: 12px;
  }
  .redesign-section .question-pill:hover {
    transform: none;
  }
}
@media (max-width: 768px) {
  .redesign-section .question-pill {
    font-size: 16px;
  }
}

.intelligence-section {
  position: relative;
  padding: 60px 0 !important;
  background-color: transparent;
}
@media (max-width: 1024px) {
  .intelligence-section {
    padding: clamp(60px, 8vw, 100px) 0 !important;
  }
}
@media (max-width: 768px) {
  .intelligence-section {
    padding: clamp(40px, 12vw, 80px) 0 !important;
  }
}
.intelligence-section .pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.intelligence-section .pattern-5 {
  top: 10%;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .intelligence-section .pattern-5 {
    max-width: 100%;
    width: 100%;
    right: 0;
  }
}
.intelligence-section .pattern img {
  width: 100%;
  height: auto;
}
.intelligence-section .intelligence-main-title {
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  color: #222222;
  margin: 0 auto 24px;
  max-width: 1100px;
}
@media (max-width: 1850px) {
  .intelligence-section .intelligence-main-title {
    font-size: 52px;
  }
}
@media (max-width: 1450px) {
  .intelligence-section .intelligence-main-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .intelligence-section .intelligence-main-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .intelligence-section .intelligence-main-title {
    font-size: 28px;
  }
  .intelligence-section .intelligence-main-title br {
    display: none;
  }
}
.intelligence-section .intelligence-subtext {
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: -2%;
  text-align: center;
}

.intelligence-lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #666666;
  text-align: center;
}
@media (max-width: 1850px) {
  .intelligence-lead {
    font-size: 19px;
  }
}
@media (max-width: 1450px) {
  .intelligence-lead {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .intelligence-lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1100px) {
  .intelligence-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .intelligence-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }
}

.intelligence-card-v2 {
  background: #ffffff;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.intelligence-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(110, 38, 129, 0.2);
}
.intelligence-card-v2:hover .viz-grid .cell {
  animation-play-state: running;
}
.intelligence-card-v2 .card-media {
  background: rgba(110, 38, 129, 0.04);
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}
@media (max-width: 1850px) {
  .intelligence-card-v2 .card-media {
    height: 180px;
  }
}
@media (max-width: 1450px) {
  .intelligence-card-v2 .card-media {
    height: 170px;
  }
}
@media (max-width: 1024px) {
  .intelligence-card-v2 .card-media {
    height: 160px;
  }
}
@media (max-width: 768px) {
  .intelligence-card-v2 .card-media {
    height: 140px;
    margin-bottom: 16px;
  }
}
.intelligence-card-v2 .card-body {
  padding: 0 16px 24px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .intelligence-card-v2 .card-body {
    padding: 0 12px 20px;
  }
}
.intelligence-card-v2 .card-title {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
@media (max-width: 1850px) {
  .intelligence-card-v2 .card-title {
    font-size: 26px;
  }
}
@media (max-width: 1450px) {
  .intelligence-card-v2 .card-title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .intelligence-card-v2 .card-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.intelligence-card-v2 .card-text {
  font-size: 18px;
  line-height: 1.55;
  color: #222222;
  margin-bottom: 0;
}
@media (max-width: 1850px) {
  .intelligence-card-v2 .card-text {
    font-size: 17px;
  }
}
@media (max-width: 1450px) {
  .intelligence-card-v2 .card-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .intelligence-card-v2 .card-text {
    font-size: 15px;
  }
}

/* Visualization Specifics */
.viz-grid-container {
  width: 100%;
  height: 100%;
}
.viz-grid-container .viz-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
  padding: 20px 24px;
  background: rgba(110, 38, 129, 0.06);
  border-radius: 8px;
}
.viz-grid-container .viz-grid .cell {
  background: rgba(110, 38, 129, 0.1);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cellPulse 3s infinite ease-in-out;
}
.viz-grid-container .viz-grid .cell:nth-child(1) {
  animation-delay: 0.15s;
}
.viz-grid-container .viz-grid .cell:nth-child(2) {
  animation-delay: 0.3s;
}
.viz-grid-container .viz-grid .cell:nth-child(3) {
  animation-delay: 0.45s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(4) {
  animation-delay: 0.6s;
}
.viz-grid-container .viz-grid .cell:nth-child(5) {
  animation-delay: 0.75s;
  background: rgba(110, 38, 129, 0.3);
  animation-duration: 3.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(6) {
  animation-delay: 0.9s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(7) {
  animation-delay: 1.05s;
  background: #6e2681;
  animation-duration: 4s;
}
.viz-grid-container .viz-grid .cell:nth-child(8) {
  animation-delay: 1.2s;
}
.viz-grid-container .viz-grid .cell:nth-child(9) {
  animation-delay: 1.35s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(10) {
  animation-delay: 1.5s;
  background: rgba(110, 38, 129, 0.3);
  animation-duration: 3.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(11) {
  animation-delay: 1.65s;
}
.viz-grid-container .viz-grid .cell:nth-child(12) {
  animation-delay: 1.8s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(13) {
  animation-delay: 1.95s;
}
.viz-grid-container .viz-grid .cell:nth-child(14) {
  animation-delay: 2.1s;
  background: #6e2681;
  animation-duration: 4s;
}
.viz-grid-container .viz-grid .cell:nth-child(15) {
  animation-delay: 2.25s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(16) {
  animation-delay: 2.4s;
}
.viz-grid-container .viz-grid .cell:nth-child(17) {
  animation-delay: 2.55s;
}
.viz-grid-container .viz-grid .cell:nth-child(18) {
  animation-delay: 2.7s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(19) {
  animation-delay: 2.85s;
}
.viz-grid-container .viz-grid .cell:nth-child(20) {
  animation-delay: 3s;
  background: rgba(110, 38, 129, 0.3);
  animation-duration: 3.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(21) {
  animation-delay: 3.15s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(22) {
  animation-delay: 3.3s;
}
.viz-grid-container .viz-grid .cell:nth-child(23) {
  animation-delay: 3.45s;
}
.viz-grid-container .viz-grid .cell:nth-child(24) {
  animation-delay: 3.6s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(25) {
  animation-delay: 3.75s;
  background: rgba(110, 38, 129, 0.3);
  animation-duration: 3.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(26) {
  animation-delay: 3.9s;
}
.viz-grid-container .viz-grid .cell:nth-child(27) {
  animation-delay: 4.05s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(28) {
  animation-delay: 4.2s;
  background: #6e2681;
  animation-duration: 4s;
}
.viz-grid-container .viz-grid .cell:nth-child(29) {
  animation-delay: 4.35s;
}
.viz-grid-container .viz-grid .cell:nth-child(30) {
  animation-delay: 4.5s;
  background: rgba(110, 38, 129, 0.5);
  animation-duration: 2.5s;
}
.viz-grid-container .viz-grid .cell:nth-child(31) {
  animation-delay: 4.65s;
}
.viz-grid-container .viz-grid .cell:nth-child(32) {
  animation-delay: 4.8s;
}

.viz-bars-container {
  width: 100%;
  height: 100%;
}
.viz-bars-container .viz-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 20px 24px;
  background: rgba(110, 38, 129, 0.06);
  border-radius: 8px;
}
.viz-bars-container .viz-bars .bar {
  flex: 1;
  background: #6e2681;
  border-radius: 4px 4px 1px 1px;
  height: 0;
  transform-origin: bottom;
  animation: barGrow 1.5s forwards cubic-bezier(0.4, 0, 0.2, 1), barFloat 3s infinite ease-in-out 2s;
}
.viz-bars-container .viz-bars .bar:nth-child(1) {
  animation-delay: 0.6s, 2.2s;
}
.viz-bars-container .viz-bars .bar:nth-child(2) {
  animation-delay: 0.7s, 2.4s;
}
.viz-bars-container .viz-bars .bar:nth-child(3) {
  animation-delay: 0.8s, 2.6s;
}
.viz-bars-container .viz-bars .bar:nth-child(4) {
  animation-delay: 0.9s, 2.8s;
}
.viz-bars-container .viz-bars .bar:nth-child(5) {
  animation-delay: 1s, 3s;
}
.viz-bars-container .viz-bars .bar:nth-child(6) {
  animation-delay: 1.1s, 3.2s;
}
.viz-bars-container .viz-bars .bar:nth-child(7) {
  animation-delay: 1.2s, 3.4s;
}
.viz-bars-container .viz-bars .bar:nth-child(8) {
  animation-delay: 1.3s, 3.6s;
}
.viz-bars-container .viz-bars .bar:nth-child(9) {
  animation-delay: 1.4s, 3.8s;
}
.viz-bars-container .viz-bars .bar:nth-child(10) {
  animation-delay: 1.5s, 4s;
}

.viz-progress-container {
  width: 100%;
  height: 100%;
}
.viz-progress-container .viz-progress {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(110, 38, 129, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viz-progress-container .viz-progress svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}
.viz-progress-container .viz-progress svg circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}
.viz-progress-container .viz-progress svg circle.bg {
  stroke: rgba(110, 38, 129, 0.12);
}
.viz-progress-container .viz-progress svg circle.fg {
  stroke: #6e2681;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: progressAnim 2s forwards cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.5s;
}
.viz-progress-container .viz-progress .progress-content {
  position: absolute;
  text-align: center;
  animation: pulseAlpha 3s infinite ease-in-out;
}
.viz-progress-container .viz-progress .progress-content .percent {
  font-size: 20px;
  font-weight: 700;
  color: #6e2681;
  line-height: 1;
}
.viz-progress-container .viz-progress .progress-content .label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(110, 38, 129, 0.5);
  margin-top: 2px;
}

/* Animations */
@keyframes cellPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(110, 38, 129, 0.2);
  }
}
@keyframes barGrow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
    height: var(--h);
  }
}
@keyframes barFloat {
  0%, 100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(1.05);
    opacity: 0.85;
  }
}
@keyframes progressAnim {
  0% {
    stroke-dashoffset: 283;
  }
  100% {
    stroke-dashoffset: 62.26;
  }
}
@keyframes pulseAlpha {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.98);
  }
}
.cta-section {
  padding: 60px 0 !important;
}
@media (max-width: 1024px) {
  .cta-section {
    padding: clamp(60px, 8vw, 100px) 0 !important;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: clamp(40px, 12vw, 80px) 0 !important;
  }
}
.cta-section .cta-box {
  position: relative;
  background: linear-gradient(90deg, #fae9ff 0%, #bc65d3 100%);
  max-width: 1300px;
  margin: auto;
  border-radius: 16px;
  padding: 50px 80px;
  overflow: hidden;
}
@media (max-width: 1350px) {
  .cta-section .cta-box {
    padding: 80px 60px;
  }
}
@media (max-width: 1024px) {
  .cta-section .cta-box {
    padding: 60px 40px;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .cta-section .cta-box {
    padding: 40px 24px;
    text-align: center;
  }
}
.cta-section .cta-box .cta-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
}
.cta-section .cta-box .cta-title {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -2%;
  color: #222222;
}
@media (max-width: 1024px) {
  .cta-section .cta-box .cta-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .cta-section .cta-box .cta-title {
    font-size: 28px;
  }
  .cta-section .cta-box .cta-title br {
    display: none;
  }
}
.cta-section .cta-box .cta-description {
  font-size: 32px;
  line-height: 120%;
  font-weight: 300;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cta-section .cta-box .cta-description {
    font-size: 16px;
  }
}
.cta-section .cta-box .cta-detail {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: -2%;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cta-section .cta-box .cta-detail {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.cta-section .cta-box .btn-cta {
  padding: 20px 42px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .cta-section .cta-box .btn-cta {
    font-size: 15px;
    padding: 16px 32px;
  }
}
.cta-section .cta-box .btn-cta span {
  font-size: 22px;
  transition: transform 0.3s ease;
}
.cta-section .cta-box .btn-cta:hover span {
  transform: translateX(6px);
}
.cta-section .cta-box .cta-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: url(../image/cta-pattern.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.social-sidebar {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 100;
}
@media (max-width: 1350px) {
  .social-sidebar {
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .social-sidebar {
    display: none;
  }
}
.social-sidebar a {
  color: #000;
  opacity: 0.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-sidebar a:hover {
  opacity: 1;
  transform: translateX(-5px);
}

.btn-primary {
  background-color: #6e2681;
  border-color: #6e2681;
  border-radius: 5vmax;
  font-weight: 600;
  padding: 16px 36px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .btn-primary {
    font-size: 14px;
    padding: 14px 28px;
  }
}
.btn-primary:hover {
  background-color: rgb(93.2035928144, 32.1976047904, 109.3023952096);
  border-color: rgb(93.2035928144, 32.1976047904, 109.3023952096);
  transform: translateY(-2px);
}
.btn-primary:active {
  background-color: rgb(93.2035928144, 32.1976047904, 109.3023952096) !important;
  border-color: rgb(93.2035928144, 32.1976047904, 109.3023952096) !important;
  transform: translateY(-2px) !important;
}

.btn-outline-primary {
  border-color: #6e2681;
  color: #6e2681;
  border-radius: 5vmax;
  font-weight: 600;
  padding: 16px 36px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .btn-outline-primary {
    font-size: 14px;
    padding: 14px 28px;
  }
}
.btn-outline-primary:hover {
  background-color: #6e2681;
  border-color: #6e2681;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-primary:active {
  background-color: #6e2681 !important;
  border-color: #6e2681 !important;
  color: #fff !important;
}

.decisions-section {
  padding: 60px 0;
  text-align: center;
  padding: 60px 0;
  text-align: center;
}
.decisions-section .pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.decisions-section .pattern-6 {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 0;
}
@media (max-width: 1450px) {
  .decisions-section .pattern-6 {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .decisions-section .pattern-6 {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
.decisions-section .pattern-6 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
}
.decisions-section .section-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -2%;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .decisions-section .section-subtitle {
    font-size: 16px;
  }
}
.decisions-section .decisions-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .decisions-section .decisions-grid {
    flex-wrap: wrap;
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .decisions-section .decisions-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 15px;
  }
  .decisions-section .decisions-grid .decision-card {
    max-width: 100%;
    width: 100%;
  }
}
.decisions-section .decision-card {
  border-radius: 24px;
  padding: 40px 30px;
  flex: 1;
  max-width: 380px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 7px #f9f9f9;
  border: 7px solid transparent;
  background-image: linear-gradient(180deg, rgba(249, 249, 249, 0.6) 0%, rgba(248, 248, 248, 0.138) 100%), linear-gradient(180deg, rgba(248, 248, 248, 0.23) 0%, #f9f9f9 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.decisions-section .decision-card:hover {
  transform: translateY(-10px);
}
.decisions-section .decision-card .card-icon {
  height: 180px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.decisions-section .decision-card .card-icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.decisions-section .decision-card .card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222222;
}
.decisions-section .decision-card .card-text {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}
.decisions-section .decision-card .card-label {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #6e2681;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .decisions-section .decision-card {
    min-width: 300px;
  }
}
.decisions-section .strategic-box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  border: 1px solid #6e2681;
  text-align: center;
  padding: 10px 30px;
  border-radius: 5vmax;
  color: #6e2681;
}
.decisions-section .strategic-box p {
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  letter-spacing: -2%;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .decisions-section .strategic-box p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .decisions-section .strategic-box {
    padding: 24px;
    margin-top: 40px;
  }
}

.readiness-section {
  padding: 60px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .readiness-section {
    padding: clamp(60px, 8vw, 100px) 0;
  }
}
@media (max-width: 768px) {
  .readiness-section {
    padding: clamp(40px, 12vw, 80px) 0;
  }
}
.readiness-section .pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.readiness-section .pattern-7 {
  top: 100px;
  right: 140px;
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 1450px) {
  .readiness-section .pattern-7 {
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .readiness-section .pattern-7 {
    bottom: 0;
    width: 100%;
    top: initial;
    right: 0;
  }
}
.readiness-section .pattern-7 img {
  width: 100%;
  height: auto;
}
.readiness-section .readiness-image {
  width: 100%;
  position: relative;
  z-index: 1;
}
.readiness-section .readiness-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 32px;
  display: block;
  filter: drop-shadow(0px 67px 89.79px rgba(0, 0, 0, 0.1019607843));
}
@media (max-width: 991px) {
  .readiness-section .readiness-image img {
    margin-top: 40px;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .readiness-section .readiness-image img {
    margin-top: 30px;
    border-radius: 20px;
  }
}
.readiness-section .readiness-content {
  padding-right: clamp(20px, 6vw, 80px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .readiness-section .readiness-content {
    padding-right: 0;
    text-align: left;
  }
}
.readiness-section .readiness-content .section-title {
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.1;
}
@media (max-width: 1650px) {
  .readiness-section .readiness-content .section-title {
    font-size: 48px;
  }
}
@media (max-width: 1450px) {
  .readiness-section .readiness-content .section-title {
    font-size: 42px;
  }
}
@media (max-width: 1024px) {
  .readiness-section .readiness-content .section-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .readiness-section .readiness-content .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .readiness-section .readiness-content .section-title br {
    display: block;
  }
}
.readiness-section .readiness-content .readiness-lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #222222;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
@media (max-width: 1650px) {
  .readiness-section .readiness-content .readiness-lead {
    font-size: 22px;
  }
}
@media (max-width: 1450px) {
  .readiness-section .readiness-content .readiness-lead {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .readiness-section .readiness-content .readiness-lead {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.readiness-section .readiness-content .readiness-detail {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -2%;
  color: #666;
  margin-bottom: 32px;
  max-width: 620px;
}
@media (max-width: 1450px) {
  .readiness-section .readiness-content .readiness-detail {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .readiness-section .readiness-content .readiness-detail {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}
.readiness-section .readiness-content .readiness-footer {
  font-size: 20px;
  font-weight: 500;
  color: #6e2681;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 1450px) {
  .readiness-section .readiness-content .readiness-footer {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .readiness-section .readiness-content .readiness-footer {
    font-size: 16px;
    padding-top: 16px;
  }
}

.different-section {
  padding: 60px 0;
  position: relative;
}
.different-section .pattern-8 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  width: 100%;
  max-width: 1540px;
  z-index: 0;
  pointer-events: none;
}
.different-section .pattern-8 img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .different-section .pattern-8 {
    max-width: 1000px;
  }
}
@media (max-width: 768px) {
  .different-section .pattern-8 {
    max-width: 100%;
    width: 100%;
  }
}
.different-section .container {
  position: relative;
  z-index: 1;
}
.different-section .different-header {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.different-section .different-header .section-title {
  margin-bottom: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}
.different-section .different-header .section-subtitle {
  font-size: 20px;
  max-width: 800px;
  line-height: 1.5;
  text-align: center;
}
.different-section .different-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1316px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .different-section .different-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .different-section .different-grid {
    grid-template-columns: 1fr;
  }
}
.different-section .different-card {
  background-color: #ffffff;
  background: url(../image/beyond-card-pattern.png), #ffffff;
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 28px;
  padding: 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 4px solid #fff;
  display: flex;
  flex-direction: column;
}
.different-section .different-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top right, rgba(110, 38, 129, 0.12), transparent 70%);
  pointer-events: none;
  transition: all 0.5s ease;
}
.different-section .different-card:hover {
  transform: translateY(-12px);
}
.different-section .different-card:hover::before {
  transform: scale(1.2);
  opacity: 1;
}
.different-section .different-card .card-number {
  width: 50px;
  height: 50px;
  border: 1px solid #eee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #222222;
  margin-bottom: 28px;
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1019607843);
}
.different-section .different-card .card-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 14px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.different-section .different-card .card-title .text-primary {
  color: #6e2681 !important;
}
@media (max-width: 1450px) {
  .different-section .different-card .card-title {
    font-size: 22px;
  }
}
.different-section .different-card .card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 1450px) {
  .different-section .different-card .card-text {
    font-size: 15px;
  }
}

.transformation-section {
  padding: 60px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .transformation-section {
    padding: clamp(60px, 8vw, 100px) 0;
  }
}
@media (max-width: 768px) {
  .transformation-section {
    padding: clamp(40px, 12vw, 80px) 0;
  }
}
.transformation-section .transformation-image {
  width: 100%;
}
.transformation-section .transformation-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 62.81px 84.16px rgba(0, 0, 0, 0.0549019608)) drop-shadow(0px 0px 149.86px rgba(0, 0, 0, 0.0588235294)) drop-shadow(0px 40.23px 67.31px rgba(0, 0, 0, 0.0392156863));
  display: block;
}
@media (max-width: 991px) {
  .transformation-section .transformation-image img {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .transformation-section .transformation-image img {
    margin-bottom: 30px;
    filter: drop-shadow(0px 62.81px 84.16px rgba(0, 0, 0, 0.0549019608)) drop-shadow(0px 0px 149.86px rgba(0, 0, 0, 0.0588235294)) drop-shadow(0px 30.23px 40.31px rgba(0, 0, 0, 0.1450980392));
  }
}
.transformation-section .transformation-content {
  padding-right: clamp(20px, 6vw, 80px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .transformation-section .transformation-content {
    padding-right: 0;
    text-align: left;
  }
}
.transformation-section .transformation-content .section-title {
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.1;
  font-size: 56px;
  font-weight: 700;
}
@media (max-width: 1650px) {
  .transformation-section .transformation-content .section-title {
    font-size: 48px;
  }
}
@media (max-width: 1450px) {
  .transformation-section .transformation-content .section-title {
    font-size: 42px;
  }
}
@media (max-width: 1024px) {
  .transformation-section .transformation-content .section-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .transformation-section .transformation-content .section-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.transformation-section .transformation-content .transformation-lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #222222;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
@media (max-width: 1650px) {
  .transformation-section .transformation-content .transformation-lead {
    font-size: 22px;
  }
}
@media (max-width: 1450px) {
  .transformation-section .transformation-content .transformation-lead {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .transformation-section .transformation-content .transformation-lead {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.transformation-section .transformation-content .transformation-detail {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -1%;
  color: #666;
  margin-bottom: 40px;
  max-width: 620px;
}
@media (max-width: 768px) {
  .transformation-section .transformation-content .transformation-detail {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.transformation-section .transformation-content .transformation-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .transformation-section .transformation-content .transformation-partners {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.transformation-section .transformation-content .transformation-partners .partner-item {
  background: #fae5ff;
  border-radius: 24px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.transformation-section .transformation-content .transformation-partners .partner-item:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 218, 255, 0.3019607843);
  box-shadow: 0 25px 50px rgba(248, 218, 255, 0.3019607843);
}
.transformation-section .transformation-content .transformation-partners .partner-item .partner-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
@media (max-width: 1450px) {
  .transformation-section .transformation-content .transformation-partners .partner-item .partner-name {
    font-size: 18px;
  }
}
.transformation-section .transformation-content .transformation-partners .partner-item .partner-desc {
  font-size: 16px;
  line-height: 1.4;
  color: #454545;
  margin-bottom: 0;
}
@media (max-width: 1450px) {
  .transformation-section .transformation-content .transformation-partners .partner-item .partner-desc {
    font-size: 14px;
  }
}
.transformation-section .transformation-content .transformation-footer {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
@media (max-width: 1450px) {
  .transformation-section .transformation-content .transformation-footer {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .transformation-section .transformation-content .transformation-footer {
    margin-bottom: 40px;
  }
}

.leadership-section {
  padding: 60px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .leadership-section {
    padding: clamp(60px, 8vw, 100px) 0;
  }
}
@media (max-width: 768px) {
  .leadership-section {
    padding: clamp(40px, 12vw, 80px) 0;
  }
}
.leadership-section .leadership-wrapper {
  background-color: #fae5ff;
  border-radius: 40px;
  padding: 80px 40px 180px 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .leadership-section .leadership-wrapper {
    padding: 60px 24px 120px 24px;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .leadership-section .leadership-wrapper {
    padding: 48px 20px 80px 20px;
  }
}
.leadership-section .leadership-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #222222;
  margin-bottom: 0;
  letter-spacing: -1.5px;
}
@media (max-width: 1450px) {
  .leadership-section .leadership-title {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .leadership-section .leadership-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .leadership-section .leadership-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
}
.leadership-section .leadership-grid {
  display: grid;
  max-width: 1400px;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: -120px;
  padding: 0 40px;
}
@media (max-width: 1450px) {
  .leadership-section .leadership-grid {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .leadership-section .leadership-grid {
    grid-template-columns: 1fr;
    margin-top: -60px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .leadership-section .leadership-grid {
    margin-top: 40px;
  }
}
.leadership-section .leadership-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 48px 32px;
  text-align: left;
  box-shadow: 0px -8px 84px 0px rgba(0, 0, 0, 0.0784313725);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.leadership-section .leadership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(110, 38, 129, 0.1);
}
@media (max-width: 1450px) {
  .leadership-section .leadership-card {
    padding: 40px 24px;
  }
}
@media (max-width: 768px) {
  .leadership-section .leadership-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
}
.leadership-section .leadership-card .card-icon {
  width: 100px;
  height: 100px;
}
.leadership-section .leadership-card .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.leadership-section .leadership-card .card-role {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.leadership-section .leadership-card .card-desc {
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1d1c26;
  margin-bottom: 0;
}

.cta-section {
  padding: 0 !important;
}
.cta-section .container {
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .cta-section {
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 20px 0 !important;
  }
}
.cta-section .cta-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 420px;
  padding: 20px;
  padding-top: 0;
  background: url(../image/cta-background.png) no-repeat;
  background-size: 120% auto;
  background-position: 80% 106%;
}
@media (max-width: 1200px) {
  .cta-section .cta-wrapper {
    padding: 60px;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .cta-section .cta-wrapper {
    padding: 48px 24px 0 24px;
    border-radius: 24px;
    background: #fae5ff;
  }
}
.cta-section .cta-content {
  position: relative;
  z-index: 10;
  max-width: 70%;
}
@media (max-width: 991px) {
  .cta-section .cta-content {
    max-width: 100%;
  }
}
.cta-section .cta-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #222222;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .cta-section .cta-title br {
    display: none;
  }
}
@media (max-width: 1450px) {
  .cta-section .cta-title {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .cta-section .cta-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .cta-section .cta-title {
    font-size: 26px;
  }
}
.cta-section .cta-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 580px;
}
@media (max-width: 991px) {
  .cta-section .cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .cta-section .cta-desc {
    font-size: 16px;
  }
}
.cta-section .cta-btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .cta-section .cta-btns {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .cta-section .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-section .cta-btns .btn {
    width: 100%;
  }
}
.cta-section .cta-image {
  position: absolute;
  bottom: -1px;
  right: 65px;
  width: 30%;
  z-index: 5;
  pointer-events: none;
}
.cta-section .cta-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1200px) {
  .cta-section .cta-image {
    right: 0;
  }
}
@media (max-width: 991px) {
  .cta-section .cta-image {
    position: relative;
    width: 80%;
    margin: 0 auto;
    right: auto;
  }
}

.footer {
  padding: 60px 0 60px 0;
  background-color: #ffffff;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
@media (max-width: 1024px) {
  .footer {
    padding: clamp(60px, 8vw, 100px) 0;
  }
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 80px);
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .footer .footer-grid {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
  }
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 60px;
    gap: 40px;
  }
}
.footer .branding-col .footer-logo {
  display: inline-block;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .branding-col .footer-logo:hover {
  transform: translateY(-2px);
}
.footer .branding-col .footer-logo svg {
  height: 48px;
  width: auto;
}
.footer .branding-col .footer-desc {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-weight: 450;
}
@media (max-width: 768px) {
  .footer .branding-col .footer-desc {
    margin: 0 auto;
  }
}
.footer .footer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1e293b;
  margin-bottom: 32px;
  position: relative;
}
.footer .footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #6e2681;
}
@media (max-width: 768px) {
  .footer .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 16px;
}
.footer .footer-links li a {
  color: #64748b;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  display: inline-block;
}
.footer .footer-links li a:hover {
  color: #6e2681;
  transform: translateX(4px);
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  border-top: 1px solid #f1f5f9;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer .footer-tagline-wrap p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer .footer-copyright {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 21, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.active .modal-card {
  transform: scale(1);
  opacity: 1;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 40px;
  padding: 60px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .modal-card {
    width: 100%;
    padding: 30px 20px;
    border-radius: 20px;
    max-height: 85vh;
    overflow-y: auto;
  }
}
.modal-card .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #f1f5f9;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-card .modal-close:hover {
  background: #e2e8f0;
  color: #222222;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .modal-card .modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}
.modal-card .modal-header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .modal-card .modal-header {
    margin-bottom: 20px;
  }
}
.modal-card .modal-header .modal-title {
  font-size: 36px;
  font-weight: 800;
  color: #222222;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .modal-card .modal-header .modal-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.modal-card .modal-header .modal-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .modal-card .modal-header .modal-subtitle {
    font-size: 15px;
  }
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .modal-form .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
}
.modal-form .form-group {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .modal-form .form-group {
    margin-bottom: 20px;
  }
}
.modal-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.modal-form .form-group input,
.modal-form .form-group textarea {
  width: 100%;
  background: #f8fafc;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  color: #222222;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-form .form-group input::-moz-placeholder, .modal-form .form-group textarea::-moz-placeholder {
  color: #94a3b8;
}
.modal-form .form-group input::placeholder,
.modal-form .form-group textarea::placeholder {
  color: #94a3b8;
}
.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #6e2681;
  box-shadow: 0 0 0 4px rgba(110, 38, 129, 0.08);
}
@media (max-width: 768px) {
  .modal-form .form-group input,
  .modal-form .form-group textarea {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
  }
}
.modal-form .btn-submit {
  width: 100%;
  background: #6e2681;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 18px;
  font-size: 17px;
}
@media (max-width: 768px) {
  .modal-form .btn-submit {
    font-size: 15px;
    padding: 15px;
    border-radius: 16px;
  }
}
.modal-form .btn-submit {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(110, 38, 129, 0.3);
}
.modal-form .btn-submit:hover {
  background: rgb(93.2035928144, 32.1976047904, 109.3023952096);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(110, 38, 129, 0.4);
}
.modal-form .btn-submit:hover svg {
  transform: translateX(4px);
}
.modal-form .btn-submit svg {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toast Notification System */
.echo-toast-container {
  position: fixed !important;
  bottom: 40px !important;
  right: 40px !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  pointer-events: none !important;
}

.echo-toast {
  background: #ffffff;
  color: #222222;
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 350px;
  max-width: 450px;
  transform: translateX(120%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: auto;
  border-left: 5px solid #6e2681;
}

.echo-toast.active {
  transform: translateX(0);
}

.echo-toast.removing {
  transform: translateX(120%);
  opacity: 0;
}

.echo-toast-icon {
  width: 32px;
  height: 32px;
  background: rgba(110, 38, 129, 0.1);
  color: #6e2681;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.echo-toast-content {
  flex-grow: 1;
}

.echo-toast-message {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .echo-toast-container {
    bottom: 20px !important;
    right: 20px !important;
    left: 20px !important;
  }
  .echo-toast {
    min-width: 0;
    width: 100%;
    padding: 16px 20px;
  }
}/*# sourceMappingURL=style.css.map */