html, body {
  margin: 0;
  padding: 0;
}

body {
  overscroll-behavior: contain;
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
}

*:focus-visible {
  outline: 2px solid #BC74AB;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

.brand_bar {
  background: linear-gradient(135deg, #2a1a26 0%, #3d1f36 60%, #4a2040 100%);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.brand_bar_text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #DCC3D8;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.brand_bar_accent {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #BC74AB;
  border-radius: 50%;
  flex-shrink: 0;
}

.header_shell {
  background: linear-gradient(180deg, #f0e8ed 0%, #F7F3F5 100%);
  border-bottom: 1px solid #DCC3D8;
  position: relative;
}

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

.brand_block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo_container {
  width: 54px;
  height: 64px;
  border-radius: 4px;
  background: #fff;
  border-bottom: 3px solid #BC74AB;
  box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.logo_container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand_name {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #2a1a26;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand_sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #BC74AB;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 4px;
}

.credential_mark {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #DCC3D8;
  border-radius: 4px;
  padding: 8px 16px;
  box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07);
  flex-shrink: 0;
}

.credential_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BC74AB;
  flex-shrink: 0;
}

.credential_text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #3d1f36;
  line-height: 1.4;
  font-weight: 700;
}

.header_nav_row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.nav_item {
  position: relative;
}

.nav_link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2a1a26;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 14px 14px 0 0;
  line-height: 1.4;
  transition: background-color 0.5s cubic-bezier(0.22,1,0.36,1), color 0.45s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
  min-height: 44px;
}

.nav_link:hover {
  background: #fff;
  color: #BC74AB;
}

.nav_link.active {
  background: #BC74AB;
  color: #fff;
}

.nav_arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 1px;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.nav_item:hover .nav_arrow {
  transform: rotate(180deg);
}

.submenu_box {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #DCC3D8;
  border-radius: 0 14px 14px 14px;
  box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  z-index: 200;
}

.nav_item:hover .submenu_box,
.submenu_box:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu_link {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #2a1a26;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 4px;
  line-height: 1.4;
  transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s cubic-bezier(0.22,1,0.36,1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.submenu_link:hover {
  background: #F7F3F5;
  color: #BC74AB;
  transform: translateX(4px);
}

.header_divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #BC74AB 40%, #DCC3D8 100%);
}

.footer_shell {
  background: linear-gradient(160deg, #2a1a26 0%, #1e1018 100%);
}

.footer_body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer_col_heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #DCC3D8;
  line-height: 1.4;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(188,116,171,0.25);
}

.footer_text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #b89eb4;
  line-height: 1.65;
}

.footer_address {
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #b89eb4;
  line-height: 1.85;
}

.footer_contact_link {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #DCC3D8;
  text-decoration: none;
  line-height: 1.65;
  transition: color 0.5s ease-in-out, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  margin-bottom: 8px;
}

.footer_contact_link:hover {
  color: #BC74AB;
  transform: translateX(4px);
}

.footer_policy_link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #b89eb4;
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.65;
  transition: color 0.45s ease-in-out;
}

.footer_policy_link:hover {
  color: #DCC3D8;
}

.footer_bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  border-top: 1px solid rgba(188,116,171,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer_logo_box {
  width: 50px;
  height: 60px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(188,116,171,0.3);
  box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.footer_logo_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer_brand_label {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #DCC3D8;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.footer_copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #7a5f75;
  line-height: 1.4;
}

.cookie_popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  width: calc(100vw - 48px);
  background: #2a1a26;
  border: 1px solid rgba(188,116,171,0.35);
  border-radius: 14px;
  box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10);
  padding: 24px;
  z-index: 1200;
  display: none;
}

.cookie_desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #b89eb4;
  line-height: 1.65;
  margin-bottom: 16px;
}

.cookie_headline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #DCC3D8;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

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

.cookie_accept {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #DCC3D8;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  line-height: 1.4;
  transition: color 0.45s ease-in-out;
}

.cookie_accept:hover {
  color: #BC74AB;
}

.cookie_decline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #7a5f75;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  line-height: 1.4;
  transition: color 0.45s ease-in-out;
}

.cookie_decline:hover {
  color: #b89eb4;
}

@media (max-width: 768px) {
  .brand_bar {
    padding: 8px 16px;
  }

  .header_top {
    padding: 16px 16px 0;
    flex-wrap: wrap;
    gap: 16px;
  }

  .credential_mark {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .header_nav_row {
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }

  .nav_link {
    padding: 12px 16px;
    font-size: 14px;
  }

  .footer_body {
    grid-template-columns: 1fr;
    padding: 40px 16px 24px;
    gap: 40px;
  }

  .footer_bottom {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie_popup {
    bottom: 16px;
    left: 16px;
    width: calc(100vw - 32px);
    max-width: none;
  }
}

@media (max-width: 375px) {
  .brand_name {
    font-size: 22px;
  }

  .header_nav_row {
    gap: 4px;
  }

  .nav_link {
    padding: 12px 12px;
    font-size: 14px;
  }
}

@media (min-width: 1366px) {
  .header_top {
    padding: 24px 80px 0;
  }

  .header_nav_row {
    padding: 0 80px;
  }

  .footer_body {
    padding: 80px 80px 40px;
  }

  .footer_bottom {
    padding: 24px 80px;
  }
}.legal-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a1f27;
    line-height: 1.85;
    font-size: 15px;
}

.legal-area strong,
.legal-area b {
    font-weight: 700;
    color: #1e1520;
}

.legal-area em,
.legal-area i {
    font-style: italic;
    color: #3d2b38;
}

.legal-area a {
    color: #BC74AB;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.5s cubic-bezier(0.22,1,0.36,1), text-underline-offset 0.45s ease-in-out;
}

.legal-area a:hover {
    color: #9a5a8a;
    text-underline-offset: 5px;
}

.legal-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.65;
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
    border-radius: 14px;
    overflow: hidden;
}

.legal-area thead {
    background: linear-gradient(135deg, #BC74AB 0%, #DCC3D8 100%);
}

.legal-area thead th {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    padding: 16px 24px;
    text-align: left;
}

.legal-area tbody tr {
    border-bottom: 1px solid #DCC3D8;
    transition: background 0.45s cubic-bezier(0.22,1,0.36,1);
}

.legal-area tbody tr:last-child {
    border-bottom: none;
}

.legal-area tbody tr:nth-child(even) {
    background: #F7F3F5;
}

.legal-area tbody tr:hover {
    background: #f0e8ed;
}

.legal-area th,
.legal-area td {
    padding: 16px 24px;
    text-align: left;
    vertical-align: top;
}

.legal-area td {
    color: #2a1f27;
}

.legal-area hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #DCC3D8 30%, #BC74AB 50%, #DCC3D8 70%, transparent);
    margin: 40px 0;
}

.legal-area div {
    margin: 24px 0;
}

.legal-area div.notice {
    background: #F7F3F5;
    border-radius: 14px;
    padding: 24px;
    box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07);
}

@media (max-width: 768px) {
    .legal-area {
        padding: 40px 16px;
        font-size: 15px;
    }

    .legal-area table {
        display: block;
        overflow-x: auto;
        border-radius: 14px;
    }

    .legal-area th,
    .legal-area td {
        padding: 16px;
        min-width: 140px;
    }
}

@media (max-width: 375px) {
    .legal-area {
        padding: 24px 16px;
    }

    .legal-area table {
        font-size: 14px;
    }

    .legal-area thead th {
        padding: 16px;
    }
}
.mission_page {
    background-color: #F7F3F5;
    overflow-x: clip;
    position: relative;
}

.mission_page .strip_image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.mission_page .strip_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(0.92) saturate(1.1);
}

.mission_page .strip_image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(188,116,171,0.18) 0%, rgba(247,243,245,0.04) 60%, rgba(220,195,216,0.22) 100%);
    pointer-events: none;
}

.mission_page .title_zone {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 40px 40px;
    position: relative;
}

.mission_page .frame_outer {
    border: 1px solid #DCC3D8;
    border-radius: 4px;
    padding: 40px;
    position: relative;
    background: #fff;
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
}

.mission_page .frame_outer::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(188,116,171,0.18);
    border-radius: 2px;
    pointer-events: none;
}

.mission_page .title_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.mission_page .title_text {
    flex: 1 1 0;
}

.mission_page .title_counter_col {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F7F3F5 30%, #DCC3D8 100%);
    box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07);
}

.mission_page .counter_number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, #BC74AB 10%, #DCC3D8 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission_page .counter_label {
    font-size: 14px;
    line-height: 1.4;
    color: #4a3a46;
    text-align: center;
}

.mission_page .page_heading {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
    background: linear-gradient(105deg, #BC74AB 0%, #7a4a70 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission_page .page_subheading {
    font-size: 18px;
    line-height: 1.65;
    color: #3a2a36;
    margin: 0 0 8px 0;
}

.mission_page .accent_line {
    font-size: 15px;
    line-height: 1.4;
    color: #BC74AB;
    font-weight: 600;
    margin: 0;
}

.mission_page .spotlight_section {
    position: relative;
    background: #2a1a26;
    overflow: hidden;
    padding: 80px 0;
}

.mission_page .spotlight_drift {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at var(--sx, 30%) var(--sy, 50%), rgba(188,116,171,0.22) 0%, transparent 70%);
    animation: drift_move 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes drift_move {
    0% { --sx: 20%; --sy: 40%; }
    33% { --sx: 60%; --sy: 60%; }
    66% { --sx: 75%; --sy: 30%; }
    100% { --sx: 35%; --sy: 65%; }
}

.mission_page .spotlight_section .geo_shape {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border-radius: 22px;
    background: rgba(188,116,171,0.06);
    border: 1px solid rgba(220,195,216,0.08);
    pointer-events: none;
    overflow: hidden;
}

.mission_page .spotlight_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
}

.mission_page .spotlight_text {
    flex: 1 1 0;
}

.mission_page .spotlight_heading {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    background: linear-gradient(110deg, #DCC3D8 0%, #BC74AB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission_page .spotlight_cols {
    columns: 2;
    column-gap: 24px;
}

.mission_page .spotlight_paragraph {
    font-size: 15px;
    line-height: 1.65;
    color: #d4b8cc;
    margin: 0 0 16px 0;
    break-inside: avoid;
}

.mission_page .spotlight_paragraph.accented {
    color: #DCC3D8;
    font-weight: 600;
}

.mission_page .spotlight_metrics {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission_page .metric_item {
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid rgba(220,195,216,0.15);
    background: rgba(188,116,171,0.08);
    transition: background 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.mission_page .metric_item:hover {
    background: rgba(188,116,171,0.16);
    border-color: rgba(220,195,216,0.3);
    transform: translateX(4px);
    transition: background 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.mission_page .metric_value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    color: #BC74AB;
    letter-spacing: -0.02em;
}

.mission_page .metric_desc {
    font-size: 14px;
    line-height: 1.4;
    color: #b09aaa;
    margin-top: 4px;
}

.mission_page .team_section {
    background: #F7F3F5;
    padding: 80px 0;
    position: relative;
}

.mission_page .team_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, #DCC3D8 0px, #DCC3D8 4px, transparent 4px, transparent 12px);
}

.mission_page .team_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission_page .team_heading {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 40px 0;
    text-align: center;
    background: linear-gradient(115deg, #BC74AB 0%, #9a5488 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission_page .team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission_page .team_card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
    transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.mission_page .team_card:hover {
    box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10);
    transform: translateY(-4px);
}

.mission_page .portrait_wrap {
    flex: 0 0 100px;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.mission_page .portrait_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mission_page .team_bio {
    flex: 1 1 0;
}

.mission_page .team_name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #2a1a26;
    margin: 0 0 4px 0;
}

.mission_page .team_role {
    font-size: 14px;
    line-height: 1.4;
    color: #BC74AB;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.mission_page .team_quote {
    font-size: 15px;
    line-height: 1.65;
    color: #4a3a46;
    margin: 0;
}

.mission_page .team_card_text {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission_page .team_card_text .card_statement {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #2a1a26;
    margin: 0 0 16px 0;
}

.mission_page .team_card_text .card_detail {
    font-size: 15px;
    line-height: 1.65;
    color: #4a3a46;
    margin: 0;
}

.mission_page .pattern_section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission_page .faded_pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(188,116,171,0.04) 0px, rgba(188,116,171,0.04) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, rgba(188,116,171,0.04) 0px, rgba(188,116,171,0.04) 1px, transparent 1px, transparent 48px);
    pointer-events: none;
}

.mission_page .pattern_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.mission_page .pattern_heading {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 40px 0;
    background: linear-gradient(108deg, #BC74AB 0%, #DCC3D8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission_page .principles_layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.mission_page .principle_item {
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #DCC3D8;
    background: #F7F3F5;
    transition: border-color 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.mission_page .principle_item:hover {
    border-color: #BC74AB;
    transform: translateY(-3px);
}

.mission_page .principle_number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: rgba(188,116,171,0.18);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.mission_page .principle_label {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #2a1a26;
    margin: 0 0 8px 0;
}

.mission_page .principle_text {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3a46;
    margin: 0;
}

.mission_page .pattern_bottom {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
}

.mission_page .image_wrap_content {
    flex: 0 0 320px;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.mission_page .image_wrap_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

.mission_page .image_wrap_content:hover img {
    transform: scale(1.04);
}

.mission_page .bottom_text_block {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.mission_page .bottom_text_block .accent_statement {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #BC74AB;
    margin: 0;
}

.mission_page .bottom_text_block .plain_paragraph {
    font-size: 15px;
    line-height: 1.65;
    color: #3a2a36;
    margin: 0;
}

.mission_page .wavy_divider {
    width: 100%;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.mission_page .wavy_divider svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1366px) {
    .mission_page .title_row {
        gap: 24px;
    }
    .mission_page .spotlight_inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mission_page .title_zone {
        padding: 24px 16px;
    }
    .mission_page .frame_outer {
        padding: 24px 16px;
    }
    .mission_page .title_row {
        flex-direction: column;
        gap: 24px;
    }
    .mission_page .title_counter_col {
        flex: none;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px;
    }
    .mission_page .page_heading {
        font-size: 30px;
    }
    .mission_page .spotlight_inner {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }
    .mission_page .spotlight_cols {
        columns: 1;
    }
    .mission_page .spotlight_metrics {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .mission_page .metric_item {
        flex: 1 1 120px;
    }
    .mission_page .spotlight_section {
        padding: 40px 0;
    }
    .mission_page .team_inner {
        padding: 0 16px;
    }
    .mission_page .team_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mission_page .team_section {
        padding: 40px 0;
    }
    .mission_page .pattern_inner {
        padding: 0 16px;
    }
    .mission_page .principles_layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .mission_page .pattern_bottom {
        flex-direction: column;
    }
    .mission_page .image_wrap_content {
        flex: none;
        width: 100%;
    }
    .mission_page .pattern_section {
        padding: 40px 0;
    }
    .mission_page .strip_image {
        height: 100px;
    }
}

@media (max-width: 375px) {
    .mission_page .page_heading {
        font-size: 22px;
    }
    .mission_page .counter_number {
        font-size: 42px;
    }
    .mission_page .spotlight_heading {
        font-size: 22px;
    }
    .mission_page .team_card {
        flex-direction: column;
    }
    .mission_page .portrait_wrap {
        width: 80px;
    }
    .mission_page .frame_outer {
        padding: 16px;
    }
    .mission_page .spotlight_metrics {
        flex-direction: column;
    }
}

.about_us_page {
    position: relative;
    overflow-x: clip;
    background-color: #F7F3F5;
}

.about_us_page .fog_layer {
    position: fixed;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background: linear-gradient(108deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.13) 40%, rgba(255,255,255,0.18) 55%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
    animation: fog_move 18s ease-in-out infinite alternate;
}

@keyframes fog_move {
    0% { transform: translateX(0) scaleY(1); opacity: 0.7; }
    50% { opacity: 1; }
    100% { transform: translateX(12%) scaleY(1.04); opacity: 0.7; }
}

.about_us_page .texture_bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(188,116,171,0.04) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(188,116,171,0.03) 40px);
    pointer-events: none;
    z-index: 0;
}

.about_us_page .page_relative {
    position: relative;
    z-index: 1;
}

.about_us_page .max_width {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.about_us_page ::selection {
    background-color: #BC74AB;
    color: #F7F3F5;
}

.about_us_page .gradient_text {
    background: linear-gradient(108deg, #BC74AB 0%, #DCC3D8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about_us_page .asymmetric_divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.about_us_page .asymmetric_divider .line_long {
    height: 1px;
    width: 72%;
    background: linear-gradient(90deg, #BC74AB 0%, #DCC3D8 100%);
}

.about_us_page .asymmetric_divider .line_short {
    height: 1px;
    flex: 1;
    background: #DCC3D8;
}


.about_us_page .title_block {
    padding-top: 40px;
    padding-bottom: 80px;
    background: #F7F3F5;
    border-bottom: 1px solid rgba(188,116,171,0.15);
    position: relative;
    overflow: hidden;
}

.about_us_page .title_block .edge_line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #BC74AB 0%, #DCC3D8 60%, transparent 100%);
}

.about_us_page .title_block .title_grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.about_us_page .title_block .image_column {
    position: relative;
}

.about_us_page .title_block .image_column .image_frame {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about_us_page .title_block .image_column .image_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.85) brightness(0.92);
}

.about_us_page .title_block .image_column .image_frame .color_overlay {
    position: absolute;
    inset: 0;
    background: rgba(188,116,171,0.22);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.about_us_page .title_block .image_column .year_tag {
    margin-top: 8px;
    font-size: 14px;
    color: #BC74AB;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.about_us_page .title_block .text_column {
    padding-top: 16px;
}

.about_us_page .title_block .text_column .label_small {
    font-size: 14px;
    color: #BC74AB;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 16px;
}

.about_us_page .title_block .text_column h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2a1f28;
    margin-bottom: 24px;
    font-weight: 700;
}

.about_us_page .title_block .text_column h1 .accent_word {
    color: #BC74AB;
    -webkit-text-fill-color: #BC74AB;
}

.about_us_page .title_block .text_column .lead_text {
    font-size: 18px;
    line-height: 1.65;
    color: #3d2e3a;
    max-width: 560px;
    margin-bottom: 40px;
}

.about_us_page .title_block .text_column .mission_link {
    display: inline-block;
    font-size: 15px;
    color: #F7F3F5;
    background: #BC74AB;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.4;
    transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.about_us_page .title_block .text_column .mission_link:hover {
    box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10), -1px 6px 20px -2px rgba(188,116,171,0.11);
    transform: translateY(-2px);
}


.about_us_page .what_we_do {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
    position: relative;
}

.about_us_page .what_we_do .punctuation_anchor {
    position: absolute;
    top: -24px;
    right: 80px;
    font-size: 220px;
    line-height: 1.15;
    color: transparent;
    -webkit-text-stroke: 1px rgba(188,116,171,0.12);
    pointer-events: none;
    user-select: none;
    font-weight: 700;
    z-index: 0;
}

.about_us_page .what_we_do .relative_wrapper {
    position: relative;
    z-index: 1;
}

.about_us_page .what_we_do h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

.about_us_page .what_we_do .sub_label {
    font-size: 15px;
    color: #6a4f65;
    text-align: center;
    line-height: 1.65;
    margin-bottom: 40px;
}

.about_us_page .what_we_do .content_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.about_us_page .what_we_do .text_body {
    font-size: 15px;
    line-height: 1.65;
    color: #3d2e3a;
}

.about_us_page .what_we_do .text_body p {
    margin-bottom: 16px;
}

.about_us_page .what_we_do .text_body p:last-child {
    margin-bottom: 0;
}

.about_us_page .what_we_do .accent_row {
    font-size: 15px;
    line-height: 1.65;
    color: #BC74AB;
    font-weight: 600;
    border-top: 1px solid rgba(188,116,171,0.2);
    border-bottom: 1px solid rgba(188,116,171,0.2);
    padding: 8px 0;
    margin-bottom: 16px;
}

.about_us_page .what_we_do .metrics_strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.about_us_page .what_we_do .metric_item {
    padding: 24px;
    background: #F7F3F5;
    border-radius: 14px;
    border-top: 3px solid #DCC3D8;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s cubic-bezier(0.22,1,0.36,1);
}

.about_us_page .what_we_do .metric_item:hover {
    transform: translateY(-3px);
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
}

.about_us_page .what_we_do .metric_item .metric_number {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #BC74AB;
    letter-spacing: -0.02em;
}

.about_us_page .what_we_do .metric_item .metric_label {
    font-size: 14px;
    color: #6a4f65;
    line-height: 1.4;
    margin-top: 4px;
}

.about_us_page .what_we_do .image_right {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
}

.about_us_page .what_we_do .image_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.8) brightness(0.95);
    transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

.about_us_page .what_we_do .image_right:hover img {
    transform: scale(1.03);
}


.about_us_page .team_section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(108deg, #F7F3F5 0%, rgba(220,195,216,0.18) 45%, #F7F3F5 100%);
    position: relative;
}

.about_us_page .team_section .band_accent {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(188,116,171,0.18) 30%, rgba(220,195,216,0.22) 60%, transparent 100%);
    pointer-events: none;
    transform: translateY(-50%);
}

.about_us_page .team_section h2 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    font-weight: 700;
}

.about_us_page .team_section .section_note {
    font-size: 15px;
    color: #6a4f65;
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 480px;
}

.about_us_page .team_section .team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about_us_page .team_section .team_card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07);
    transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.about_us_page .team_section .team_card:hover {
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
    transform: translateY(-2px);
}

.about_us_page .team_section .portrait_frame {
    width: 180px;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: 1px;
}

.about_us_page .team_section .portrait_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.82) brightness(0.96);
}

.about_us_page .team_section .card_body {
    padding-top: 8px;
}

.about_us_page .team_section .card_body .person_name {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a1f28;
    margin-bottom: 4px;
}

.about_us_page .team_section .card_body .person_role {
    font-size: 14px;
    color: #BC74AB;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about_us_page .team_section .card_body .person_bio {
    font-size: 15px;
    line-height: 1.65;
    color: #3d2e3a;
}

.about_us_page .team_section .card_body .person_bio p {
    margin-bottom: 8px;
}

.about_us_page .team_section .card_body .person_bio p:last-child {
    margin-bottom: 0;
}

.about_us_page .team_section .no_portrait_card {
    padding: 24px;
    background: #F7F3F5;
    border-radius: 14px;
    border-left: 3px solid #DCC3D8;
    border-right: 1px solid rgba(188,116,171,0.1);
    border-top: 1px solid rgba(188,116,171,0.1);
    border-bottom: 1px solid rgba(188,116,171,0.1);
    transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.about_us_page .team_section .no_portrait_card:hover {
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
    transform: translateY(-2px);
}

.about_us_page .team_section .no_portrait_card .person_name {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a1f28;
    margin-bottom: 4px;
}

.about_us_page .team_section .no_portrait_card .person_role {
    font-size: 14px;
    color: #BC74AB;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about_us_page .team_section .no_portrait_card .person_bio {
    font-size: 15px;
    line-height: 1.65;
    color: #3d2e3a;
}

.about_us_page .team_section .no_portrait_card .person_bio p {
    margin-bottom: 8px;
}

.about_us_page .team_section .no_portrait_card .person_bio p:last-child {
    margin-bottom: 0;
}

.about_us_page .team_section .extra_cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}


.about_us_page .process_section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #2a1f28;
    position: relative;
    overflow: hidden;
}

.about_us_page .process_section .bg_texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(188,116,171,0.06) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(188,116,171,0.04) 40px);
    pointer-events: none;
}

.about_us_page .process_section .relative_wrapper {
    position: relative;
    z-index: 1;
}

.about_us_page .process_section h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    font-weight: 700;
    color: #F7F3F5;
    margin-bottom: 8px;
    text-align: center;
}

.about_us_page .process_section .section_desc {
    font-size: 15px;
    line-height: 1.65;
    color: #DCC3D8;
    text-align: center;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about_us_page .process_section .process_layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.about_us_page .process_section .funnel_visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px 0;
}

.about_us_page .process_section .funnel_step {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.about_us_page .process_section .funnel_step:hover {
    transform: translateX(4px);
}

.about_us_page .process_section .funnel_bar {
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #F7F3F5;
    text-transform: uppercase;
}

.about_us_page .process_section .funnel_step:nth-child(1) .funnel_bar {
    width: 100%;
    background: #BC74AB;
}

.about_us_page .process_section .funnel_step:nth-child(2) .funnel_bar {
    width: 88%;
    background: rgba(188,116,171,0.82);
}

.about_us_page .process_section .funnel_step:nth-child(3) .funnel_bar {
    width: 74%;
    background: rgba(188,116,171,0.65);
}

.about_us_page .process_section .funnel_step:nth-child(4) .funnel_bar {
    width: 60%;
    background: rgba(188,116,171,0.48);
}

.about_us_page .process_section .funnel_step:nth-child(5) .funnel_bar {
    width: 44%;
    background: rgba(188,116,171,0.32);
    color: #DCC3D8;
}

.about_us_page .process_section .process_steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about_us_page .process_section .step_item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(220,195,216,0.1);
    transition: background 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
    cursor: default;
}

.about_us_page .process_section .step_item:hover {
    background: rgba(188,116,171,0.1);
    transform: translateX(-3px);
}

.about_us_page .process_section .step_number {
    min-width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #BC74AB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #F7F3F5;
    flex-shrink: 0;
}

.about_us_page .process_section .step_text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #F7F3F5;
    line-height: 1.4;
    margin-bottom: 4px;
}

.about_us_page .process_section .step_text p {
    font-size: 14px;
    color: #DCC3D8;
    line-height: 1.65;
}

.about_us_page .process_section .images_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.about_us_page .process_section .process_image {
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
}

.about_us_page .process_section .process_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.75) brightness(0.88);
    transition: transform 0.65s cubic-bezier(0.22,1,0.36,1), filter 0.55s cubic-bezier(0.22,1,0.36,1);
}

.about_us_page .process_section .process_image:hover img {
    transform: scale(1.04);
    filter: saturate(0.9) brightness(0.95);
}


@media (max-width: 1366px) {
    .about_us_page .title_block .title_grid {
        grid-template-columns: 220px 1fr;
    }
    .about_us_page .title_block .text_column h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .about_us_page .max_width {
        padding-left: 24px;
        padding-right: 24px;
    }
    .about_us_page .title_block .title_grid {
        grid-template-columns: 1fr;
    }
    .about_us_page .title_block .image_column {
        max-width: 320px;
    }
    .about_us_page .title_block .text_column h1 {
        font-size: 30px;
    }
    .about_us_page .what_we_do .content_split {
        grid-template-columns: 1fr;
    }
    .about_us_page .what_we_do .metrics_strip {
        grid-template-columns: 1fr;
    }
    .about_us_page .team_section .team_grid {
        grid-template-columns: 1fr;
    }
    .about_us_page .team_section .extra_cards {
        grid-template-columns: 1fr;
    }
    .about_us_page .team_section .team_card {
        grid-template-columns: 120px 1fr;
    }
    .about_us_page .team_section .portrait_frame {
        width: 120px;
    }
    .about_us_page .process_section .process_layout {
        grid-template-columns: 1fr;
    }
    .about_us_page .process_section .images_row {
        grid-template-columns: 1fr;
    }
    .about_us_page .what_we_do h2 {
        font-size: 30px;
    }
    .about_us_page .process_section h2 {
        font-size: 30px;
    }
    .about_us_page .punctuation_anchor {
        display: none;
    }
}

@media (max-width: 375px) {
    .about_us_page .max_width {
        padding-left: 16px;
        padding-right: 16px;
    }
    .about_us_page .title_block .text_column h1 {
        font-size: 22px;
    }
    .about_us_page .team_section .team_card {
        grid-template-columns: 1fr;
    }
    .about_us_page .team_section .portrait_frame {
        width: 100%;
        max-width: 200px;
    }
    .about_us_page .title_block .text_column .mission_link {
        padding: 16px 24px;
    }
}

.contact-us {
    background-color: #F7F3F5;
    overflow-x: clip;
    position: relative;
}

.contact-us .reveal-diagonal {
    animation: diag-in 0.65s cubic-bezier(0.22,1,0.36,1) both;
}

.contact-us .reveal-diagonal-delay {
    animation: diag-in 0.65s cubic-bezier(0.22,1,0.36,1) 0.18s both;
}

.contact-us .reveal-diagonal-late {
    animation: diag-in 0.65s cubic-bezier(0.22,1,0.36,1) 0.32s both;
}

@keyframes diag-in {
    from {
        opacity: 0;
        transform: translate(-18px, -18px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.contact-us .page-top {
    position: relative;
    padding: 80px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #F7F3F5;
}

.contact-us .page-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #F7F3F5 30%, #DCC3D8 60%, #BC74AB 120%);
    opacity: 0.22;
    pointer-events: none;
}

.contact-us .top-circle-a {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #BC74AB;
    opacity: 0.07;
    top: -80px;
    left: -60px;
    pointer-events: none;
}

.contact-us .top-circle-b {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #DCC3D8;
    opacity: 0.13;
    bottom: -40px;
    right: 10%;
    pointer-events: none;
}

.contact-us .top-circle-c {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #BC74AB;
    opacity: 0.09;
    top: 40px;
    right: 20%;
    pointer-events: none;
}

.contact-us .top-label {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #BC74AB;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.contact-us .top-heading {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
    background: linear-gradient(110deg, #3d1f36 20%, #BC74AB 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 700px;
}

.contact-us .top-sub {
    font-size: 18px;
    line-height: 1.65;
    color: #4a2e42;
    max-width: 520px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.contact-us .metric-strip {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contact-us .metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.contact-us .metric-number {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #BC74AB;
    font-weight: 700;
}

.contact-us .metric-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.contact-us .metric-arrow svg {
    display: inline-block;
}

.contact-us .metric-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #6b4d62;
}

.contact-us .middle-band {
    background: #F7F3F5;
    padding: 80px 24px;
    position: relative;
}

.contact-us .middle-band::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #DCC3D8 40%, #BC74AB 60%, transparent 100%);
    pointer-events: none;
}

.contact-us .middle-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-us .info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us .info-heading {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    background: linear-gradient(120deg, #2a1324 30%, #BC74AB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-us .info-body {
    font-size: 15px;
    line-height: 1.65;
    color: #3d2535;
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.contact-us .info-body.single-col {
    columns: 1;
}

.contact-us .contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-us .contact-detail-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07), -1px 6px 20px -2px rgba(188,116,171,0.11);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}

.contact-us .contact-detail-list li:hover {
    transform: translateY(-3px);
    box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10);
}

.contact-us .detail-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 4px;
    background: #F7F3F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-us .detail-label {
    font-size: 14px;
    color: #BC74AB;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-us .detail-value {
    font-size: 15px;
    line-height: 1.4;
    color: #2a1324;
    text-decoration: none;
    transition: color 0.45s ease-in-out;
}

.contact-us .detail-value:hover {
    color: #BC74AB;
}

.contact-us .sidebar-labels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.contact-us .sidebar-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a2e42;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #DCC3D8;
    border-left: 3px solid #BC74AB;
    background: #fff;
    width: fit-content;
}

.contact-us .form-column {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
    border: 1px dashed #DCC3D8;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us .form-heading {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    color: #2a1324;
}

.contact-us .form-accent-line {
    color: #BC74AB;
    display: block;
}

.contact-us .form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.contact-us .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.contact-us .field-group.full {
    flex: 1 1 100%;
}

.contact-us .field-label {
    font-size: 14px;
    color: #4a2e42;
    letter-spacing: 0.04em;
}

.contact-us .field-input {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #DCC3D8;
    background: #F7F3F5;
    font-size: 15px;
    color: #2a1324;
    outline: none;
    box-shadow: inset 0 1px 4px rgba(188,116,171,0.07);
    transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
    width: 100%;
    box-sizing: border-box;
}

.contact-us .field-input::placeholder {
    font-style: italic;
    opacity: 0.55;
    color: #7a5570;
}

.contact-us .field-input:focus {
    border-color: #BC74AB;
    box-shadow: inset 0 1px 4px rgba(188,116,171,0.13), 0 0 0 2px rgba(188,116,171,0.12);
}

.contact-us .field-textarea {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #DCC3D8;
    background: #F7F3F5;
    font-size: 15px;
    color: #2a1324;
    outline: none;
    box-shadow: inset 0 1px 4px rgba(188,116,171,0.07);
    transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 90px;
}

.contact-us .field-textarea::placeholder {
    font-style: italic;
    opacity: 0.55;
    color: #7a5570;
}

.contact-us .field-textarea:focus {
    border-color: #BC74AB;
    box-shadow: inset 0 1px 4px rgba(188,116,171,0.13), 0 0 0 2px rgba(188,116,171,0.12);
}

.contact-us .field-select {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #DCC3D8;
    background: #F7F3F5;
    font-size: 15px;
    color: #2a1324;
    outline: none;
    box-shadow: inset 0 1px 4px rgba(188,116,171,0.07);
    transition: border-color 0.5s cubic-bezier(0.22,1,0.36,1);
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
}

.contact-us .field-select:focus {
    border-color: #BC74AB;
    box-shadow: inset 0 1px 4px rgba(188,116,171,0.13), 0 0 0 2px rgba(188,116,171,0.12);
}

.contact-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.contact-us .privacy-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #BC74AB;
    cursor: pointer;
}

.contact-us .privacy-text {
    font-size: 14px;
    line-height: 1.65;
    color: #4a2e42;
    margin: 0;
}

.contact-us .privacy-text a {
    color: #BC74AB;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out;
}

.contact-us .privacy-text a:hover {
    color: #8a3d7a;
}

.contact-us .submit-button {
    type: submit;
    padding: 16px 40px;
    border-radius: 14px;
    border: none;
    background: #BC74AB;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.04em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
    align-self: flex-start;
    box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07);
}

.contact-us .submit-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #8a3d7a;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
    border-radius: 14px;
}

.contact-us .submit-button:hover {
    box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10);
    transform: translateY(-2px);
}

.contact-us .submit-button:hover::before {
    transform: scaleX(1);
}

.contact-us .submit-button:focus {
    outline: 2px solid #BC74AB;
    outline-offset: 3px;
}

.contact-us .submit-button span {
    position: relative;
    z-index: 1;
}

.contact-us .bottom-strip {
    background: #2a1324;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.contact-us .bottom-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 18px,
        rgba(188,116,171,0.04) 18px,
        rgba(188,116,171,0.04) 19px
    );
    pointer-events: none;
}

.contact-us .bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.contact-us .bottom-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-us .bottom-sidebar-label {
    font-size: 14px;
    color: #DCC3D8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-us .bottom-sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid rgba(220,195,216,0.18);
    border-left: 3px solid #BC74AB;
    background: rgba(188,116,171,0.06);
    transition: background 0.5s cubic-bezier(0.22,1,0.36,1);
}

.contact-us .bottom-sidebar-item:hover {
    background: rgba(188,116,171,0.13);
}

.contact-us .sidebar-item-label {
    font-size: 14px;
    color: #DCC3D8;
    letter-spacing: 0.06em;
}

.contact-us .sidebar-item-value {
    font-size: 15px;
    color: #fff;
}

.contact-us .bottom-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us .bottom-heading {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(120deg, #fff 20%, #DCC3D8 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-us .bottom-text {
    font-size: 15px;
    line-height: 1.65;
    color: #DCC3D8;
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.contact-us .chart-area {
    margin-top: 8px;
    background: rgba(188,116,171,0.07);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(220,195,216,0.15);
}

.contact-us .chart-label {
    font-size: 14px;
    color: #DCC3D8;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.contact-us .chart-svg {
    width: 100%;
    height: 80px;
    display: block;
}

.contact-us .chart-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 16px;
}

.contact-us .chart-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-us .chart-meta-num {
    font-size: 22px;
    line-height: 1.15;
    color: #BC74AB;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-us .chart-meta-desc {
    font-size: 14px;
    color: #DCC3D8;
}

.contact-us .arrow-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #DCC3D8;
}

@media (max-width: 1366px) {
    .contact-us .top-heading {
        font-size: 42px;
    }
    .contact-us .bottom-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .contact-us .page-top {
        padding: 40px 16px 40px;
    }
    .contact-us .top-heading {
        font-size: 30px;
    }
    .contact-us .metric-strip {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .contact-us .middle-band {
        padding: 40px 16px;
    }
    .contact-us .middle-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-us .form-column {
        padding: 24px 16px;
    }
    .contact-us .form-row {
        flex-direction: column;
        gap: 16px;
    }
    .contact-us .bottom-strip {
        padding: 40px 16px;
    }
    .contact-us .bottom-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-us .bottom-heading {
        font-size: 30px;
    }
    .contact-us .bottom-text {
        columns: 1;
    }
    .contact-us .info-body {
        columns: 1;
    }
    .contact-us .chart-meta {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 375px) {
    .contact-us .top-heading {
        font-size: 22px;
    }
    .contact-us .submit-button {
        width: 100%;
        text-align: center;
    }
    .contact-us .bottom-heading {
        font-size: 22px;
    }
}

.start {
    overflow-x: hidden;
    background: #F7F3F5;
}

.start .title_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    padding-top: 80px;
    position: relative;
}

.start .title_image_side {
    position: relative;
    overflow: hidden;
    border-radius: 0 22px 22px 0;
}

.start .title_image_side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    aspect-ratio: 4/3;
}

.start .title_image_side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(188,116,171,0.55) 0%, rgba(188,116,171,0.12) 60%, transparent 100%);
    pointer-events: none;
}

.start .title_blur_spot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.start .title_blur_spot.pink {
    width: 320px;
    height: 320px;
    background: rgba(188,116,171,0.18);
    filter: blur(72px);
    top: -40px;
    right: 40px;
}

.start .title_blur_spot.light {
    width: 200px;
    height: 200px;
    background: rgba(220,195,216,0.22);
    filter: blur(48px);
    bottom: 40px;
    left: 24px;
}

.start .title_text_side {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 40px 80px 40px;
    position: relative;
    z-index: 1;
    gap: 24px;
}

.start .title_eyebrow {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #BC74AB;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 600;
}

.start .title_heading {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1e1225;
    margin: 0;
}

.start .title_heading .accented_phrase {
    display: inline;
    background: linear-gradient(135deg, #BC74AB 30%, #DCC3D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start .title_heading .last_word {
    color: #BC74AB;
    -webkit-text-fill-color: #BC74AB;
}

.start .title_body {
    font-size: 18px;
    line-height: 1.65;
    color: #2e1e2a;
    max-width: 480px;
    margin: 0;
}

.start .title_action {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-direction: row;
}

.start .button_primary {
    background: #BC74AB;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
    box-shadow: -1px 2px 2px -2px rgba(188,116,171,0.07);
    letter-spacing: 0.01em;
}

.start .button_primary:hover {
    box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10);
    transform: translateY(-2px);
}

.start .button_primary:focus {
    outline: 2px solid #BC74AB;
    outline-offset: 3px;
}

.start .button_primary:active {
    background: #F7F3F5;
    color: #BC74AB;
}

.start .button_ghost {
    background: transparent;
    color: #BC74AB;
    border: 1.5px solid #BC74AB;
    border-radius: 4px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.start .button_ghost:hover {
    background: rgba(188,116,171,0.08);
    transform: translateY(-2px);
}

.start .button_ghost:focus {
    outline: 2px solid #BC74AB;
    outline-offset: 3px;
}

.start .scallop_divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 32px;
}

.start .scallop_divider svg {
    display: block;
    width: 100%;
    height: 32px;
}

.start .adapt_area {
    background: #fff;
    padding: 80px 0 80px 0;
    position: relative;
}

.start .adapt_radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(220,195,216,0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.start .adapt_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.start .adapt_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.start .adapt_text_block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.start .section_label {
    font-size: 14px;
    letter-spacing: 0.07em;
    color: #BC74AB;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
}

.start .adapt_heading {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1e1225;
    margin: 0;
    background: linear-gradient(120deg, #1e1225 60%, #BC74AB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start .adapt_cols {
    columns: 2;
    column-gap: 24px;
}

.start .adapt_cols p {
    font-size: 15px;
    line-height: 1.65;
    color: #2e1e2a;
    margin: 0 0 16px 0;
    break-inside: avoid;
}

.start .adapt_accent_line {
    font-size: 15px;
    line-height: 1.4;
    color: #BC74AB;
    font-weight: 600;
    border-left: 3px solid #BC74AB;
    border-top: 1px solid rgba(188,116,171,0.18);
    border-bottom: 1px solid rgba(188,116,171,0.18);
    padding: 8px 16px;
    border-radius: 1px;
}

.start .adapt_image_block {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.start .adapt_image_block img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
    filter: saturate(0.85);
    transition: filter 0.6s ease-in-out, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.start .adapt_image_block:hover img {
    filter: saturate(1.1);
    transform: scale(1.02);
}

.start .adapt_image_block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(188,116,171,0.18) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    border-radius: 14px;
}

.start .steps_area {
    background: #F7F3F5;
    padding: 80px 0;
    position: relative;
}

.start .honeycomb_bg {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpolygon points='28,2 54,16 54,44 28,58 2,44 2,16' fill='none' stroke='%23BC74AB' stroke-width='1.5'/%3E%3Cpolygon points='28,58 54,72 54,100 28,114 2,100 2,72' fill='none' stroke='%23BC74AB' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 56px 100px;
}

.start .steps_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.start .steps_header {
    text-align: center;
    margin-bottom: 40px;
}

.start .steps_heading {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1e1225;
    margin: 0 0 16px 0;
    background: linear-gradient(110deg, #BC74AB 0%, #1e1225 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start .steps_heading .last_word {
    color: #BC74AB;
    -webkit-text-fill-color: #BC74AB;
}

.start .steps_subtext {
    font-size: 15px;
    line-height: 1.65;
    color: #2e1e2a;
    max-width: 560px;
    margin: 0 auto;
}

.start .steps_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.start .step_item {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 6px 20px -2px rgba(188,116,171,0.11);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
    animation: cascade_appear 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

.start .step_item:nth-child(1) { animation-delay: 0.05s; }
.start .step_item:nth-child(2) { animation-delay: 0.15s; }
.start .step_item:nth-child(3) { animation-delay: 0.25s; }
.start .step_item:nth-child(4) { animation-delay: 0.35s; }

@keyframes cascade_appear {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.start .step_item:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 52px -2px rgba(188,116,171,0.10);
}

.start .step_number {
    font-size: 30px;
    font-weight: 700;
    color: #DCC3D8;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.start .step_duration {
    font-size: 14px;
    color: #BC74AB;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.start .step_label {
    font-size: 15px;
    font-weight: 700;
    color: #1e1225;
    line-height: 1.4;
    margin: 4px 0 0 0;
}

.start .step_desc {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3345;
    margin: 0;
}

.start .recognition_area {
    background: #1e1225;
    padding: 80px 0;
    position: relative;
}

.start .recognition_curl {
    position: absolute;
    top: 16px;
    right: 40px;
    width: 80px;
    height: 80px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.start .recognition_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.start .recognition_grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.start .recognition_left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.start .recognition_heading {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #F7F3F5;
    margin: 0;
    background: linear-gradient(135deg, #F7F3F5 40%, #DCC3D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start .recognition_body {
    font-size: 15px;
    line-height: 1.65;
    color: #DCC3D8;
    margin: 0;
}

.start .recognition_image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: filter 0.65s ease-in-out;
}

.start .recognition_image:hover {
    filter: saturate(1) brightness(0.95);
}

.start .assoc_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.start .assoc_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 4px;
    background: rgba(220,195,216,0.07);
    transition: background 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.start .assoc_item:hover {
    background: rgba(220,195,216,0.13);
    transform: translateX(4px);
}

.start .assoc_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BC74AB;
    flex-shrink: 0;
    margin-top: 6px;
}

.start .assoc_text {
    font-size: 15px;
    line-height: 1.65;
    color: #F7F3F5;
    margin: 0;
}

.start .assoc_text strong {
    color: #DCC3D8;
    font-weight: 600;
}

.start .portraits_row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 24px;
}

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

.start .portrait_img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(188,116,171,0.4);
    display: block;
}

.start .portrait_name {
    font-size: 14px;
    color: #DCC3D8;
    line-height: 1.4;
    text-align: center;
}

.start .portrait_role {
    font-size: 14px;
    color: rgba(220,195,216,0.6);
    line-height: 1.4;
    text-align: center;
}

.start .commitment_area {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.start .commitment_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.start .commitment_layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.start .commitment_text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.start .commitment_heading {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1e1225;
    margin: 0;
    background: linear-gradient(125deg, #1e1225 50%, #BC74AB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start .commitment_cols {
    columns: 2;
    column-gap: 24px;
    text-align: left;
}

.start .commitment_cols p {
    font-size: 15px;
    line-height: 1.65;
    color: #2e1e2a;
    margin: 0 0 16px 0;
    break-inside: avoid;
}

.start .commitment_accent {
    font-size: 15px;
    color: #BC74AB;
    font-weight: 600;
    line-height: 1.4;
    border-left: 3px solid #BC74AB;
    border-top: 1px solid rgba(188,116,171,0.18);
    border-bottom: 1px solid rgba(188,116,171,0.18);
    padding: 8px 16px;
    border-radius: 1px;
    text-align: left;
}

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

.start .commitment_img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
    filter: saturate(0.8);
    transition: filter 0.6s ease-in-out;
}

.start .commitment_img:hover {
    filter: saturate(1.05);
}

.start .fit_check {
    background: #F7F3F5;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.start .fit_check_label {
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #BC74AB;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
}

.start .fit_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.start .fit_item {
    font-size: 15px;
    line-height: 1.65;
    color: #2e1e2a;
    padding: 8px 16px;
    border-radius: 4px;
    background: #fff;
    border-left: 3px solid #DCC3D8;
    border-top: 1px solid rgba(220,195,216,0.3) !important;
    border-right: 1px solid rgba(220,195,216,0.15);
    border-bottom: 1px solid rgba(220,195,216,0.3);
    transition: border-left-color 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.start .fit_item:hover {
    border-left-color: #BC74AB;
    transform: translateX(4px);
}

@media (max-width: 1366px) {
    .start .title_heading { font-size: 42px; }
    .start .adapt_heading,
    .start .steps_heading,
    .start .recognition_heading,
    .start .commitment_heading { font-size: 30px; }
    .start .steps_list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .start .title_area {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    .start .title_image_side {
        border-radius: 0;
        max-height: 320px;
    }
    .start .title_text_side {
        padding: 40px 24px;
    }
    .start .title_heading { font-size: 30px; }
    .start .adapt_grid,
    .start .recognition_grid,
    .start .commitment_layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .start .adapt_cols,
    .start .commitment_cols { columns: 1; }
    .start .steps_list { grid-template-columns: 1fr 1fr; }
    .start .adapt_container,
    .start .steps_container,
    .start .recognition_container,
    .start .commitment_container {
        padding: 0 24px;
    }
    .start .adapt_area,
    .start .steps_area,
    .start .recognition_area,
    .start .commitment_area { padding: 40px 0; }
    .start .recognition_grid { gap: 40px; }
    .start .commitment_layout { gap: 40px; }
    .start .portraits_row { flex-direction: column; gap: 16px; }
}

@media (max-width: 375px) {
    .start .title_heading { font-size: 22px; }
    .start .steps_list { grid-template-columns: 1fr; }
    .start .title_action { flex-direction: column; align-items: flex-start; }
    .start .button_primary,
    .start .button_ghost { width: 100%; text-align: center; }
    .start .adapt_area,
    .start .steps_area,
    .start .recognition_area,
    .start .commitment_area { padding: 24px 0; }
    .start .adapt_container,
    .start .steps_container,
    .start .recognition_container,
    .start .commitment_container { padding: 0 16px; }
}

.success_page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #F7F3F5;
}

.success_page .success_card {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: -1px 8px 52px -2px rgba(188, 116, 171, 0.10);
    border-top: 4px solid #BC74AB;
}

.success_page .success_card .icon_wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    border-radius: 22px;
    background: linear-gradient(135deg, #DCC3D8 20%, #BC74AB 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.success_page .success_card .icon_wrap svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success_page .success_card .heading_main {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    background: linear-gradient(90deg, #BC74AB 0%, #DCC3D8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success_page .success_card .description_text {
    font-size: 15px;
    line-height: 1.65;
    color: #3a2e38;
    margin: 0 0 8px;
}

.success_page .success_card .description_note {
    font-size: 14px;
    line-height: 1.65;
    color: #7a6275;
    margin: 0 0 40px;
}

.success_page .success_card .divider_line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #BC74AB, #DCC3D8);
    border-radius: 1px;
    margin: 0 auto 40px;
}

.success_page .success_card .meta_row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 40px;
}

.success_page .success_card .meta_row .meta_item {
    font-size: 14px;
    line-height: 1.4;
    color: #5c4a58;
    background: #F7F3F5;
    border-radius: 4px;
    padding: 8px 16px;
    border: 1px solid #DCC3D8;
}

.success_page .success_card .meta_row .meta_item strong {
    display: block;
    font-size: 14px;
    color: #BC74AB;
    margin-bottom: 4px;
}

.success_page .success_card .action_group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.success_page .success_card .action_group .button_primary {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff;
    background: #BC74AB;
    border-radius: 14px;
    padding: 16px 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
    box-shadow: -1px 2px 2px -2px rgba(188, 116, 171, 0.07);
}

.success_page .success_card .action_group .button_primary:hover {
    box-shadow: -1px 6px 20px -2px rgba(188, 116, 171, 0.11);
    transform: translateY(-2px);
}

.success_page .success_card .action_group .button_primary:focus {
    outline: 2px solid #BC74AB;
    outline-offset: 3px;
}

.success_page .success_card .action_group .button_secondary {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    color: #BC74AB;
    background: transparent;
    border-radius: 14px;
    padding: 16px 40px;
    text-decoration: none;
    border: 1px solid #DCC3D8;
    cursor: pointer;
    transition: border-color 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

.success_page .success_card .action_group .button_secondary:hover {
    border-color: #BC74AB;
    transform: translateY(-2px);
}

.success_page .success_card .action_group .button_secondary:focus {
    outline: 2px solid #BC74AB;
    outline-offset: 3px;
}

.success_page .success_card .contact_hint {
    font-size: 14px;
    line-height: 1.65;
    color: #7a6275;
    margin: 40px 0 0;
}

.success_page .success_card .contact_hint a {
    color: #BC74AB;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.45s ease-in-out;
}

.success_page .success_card .contact_hint a:hover {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .success_page {
        padding: 40px 16px;
    }

    .success_page .success_card {
        padding: 40px 24px;
    }

    .success_page .success_card .heading_main {
        font-size: 22px;
    }

    .success_page .success_card .action_group {
        flex-direction: column;
        align-items: stretch;
    }

    .success_page .success_card .action_group .button_primary,
    .success_page .success_card .action_group .button_secondary {
        text-align: center;
        padding: 16px 24px;
    }
}

@media (max-width: 375px) {
    .success_page .success_card {
        padding: 40px 16px;
    }

    .success_page .success_card .meta_row {
        flex-direction: column;
        align-items: stretch;
    }
}
