* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.hd-root {
  font-family: 'Cormorant', Georgia, serif;
  background: #fff;
  position: relative;
  z-index: 10;
}

.hd-utility {
  background: linear-gradient(90deg, #D77357 0%, #c4634a 100%);
  padding: 8px 32px;
}

.hd-utility-pod {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hd-brand-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hd-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 48px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
  flex-shrink: 0;
}

.hd-logo-frame img {
  width: 100%;
  height: 36px;
  object-fit: contain;
  display: block;
}

.hd-tagline {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  letter-spacing: 0;
}

.hd-contacts {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hd-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.45;
  font-family: 'Cormorant', Georgia, serif;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hd-contact-item:hover {
  color: #fff;
}

.hd-contact-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.hd-nav-strip {
  background: #fff;
  border-bottom: 1px solid rgba(215, 115, 87, 0.15);
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  padding: 0 32px;
}

.hd-nav-pod {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 56px;
}

.hd-nav-link {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #2a1a14;
  text-decoration: none;
  border-radius: 3px;
  position: relative;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.hd-nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #D77357;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hd-nav-link:hover {
  color: #D77357;
}

.hd-nav-link:hover::after {
  transform: scaleX(1);
}

.hd-nav-link.active {
  color: #D77357;
}

.hd-nav-link.active::after {
  transform: scaleX(1);
}

.hd-nav-link:focus-visible {
  outline: 2px solid #D77357;
  outline-offset: 3px;
}

.hd-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #D77357;
  color: #fff;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 10px;
  margin: 8px 0;
  border: 2px solid #D77357;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
  position: relative;
  white-space: nowrap;
  min-height: 44px;
}

.hd-cta-btn::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hd-cta-btn:hover {
  background: #c4634a;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
}

.hd-cta-btn:hover::before {
  border-color: rgba(255, 255, 255, 0.45);
}

.hd-cta-btn:focus-visible {
  outline: 2px solid #2a1a14;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .hd-utility {
    padding: 8px 16px;
  }

  .hd-nav-strip {
    padding: 0 16px;
  }

  .hd-contacts {
    gap: 16px;
  }

  .hd-nav-pod {
    gap: 0;
  }

  .hd-nav-link {
    padding: 16px 12px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .hd-utility-pod {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hd-contacts {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hd-nav-pod {
    justify-content: flex-start;
  }

  .hd-nav-link {
    padding: 12px 8px;
    font-size: 13px;
  }

  .hd-tagline {
    display: none;
  }
}

.ft-root {
  font-family: 'Cormorant', Georgia, serif;
  background: linear-gradient(160deg, #2a1a14 0%, #3d2318 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 32px 32px;
}

.ft-pod {
  max-width: 1366px;
  margin: 0 auto;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.ft-brand-cell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 36px;
  border: 2px dashed rgba(215, 115, 87, 0.45);
  border-radius: 10px;
  padding: 4px 8px;
  background: rgba(215, 115, 87, 0.08);
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
}

.ft-logo-frame img {
  width: 100%;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.ft-about-text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.ft-col-label {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #D77357;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 16px;
}

.ft-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-link-list li a {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ft-link-list li a:hover {
  color: #E9C7D2;
}

.ft-link-list li a:focus-visible {
  outline: 2px solid #D77357;
  outline-offset: 2px;
  border-radius: 3px;
}

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

.ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.ft-contact-list li a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ft-contact-list li a:hover {
  color: #E9C7D2;
}

.ft-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #D77357;
}

.ft-divider {
  height: 1px;
  background: rgba(215, 115, 87, 0.18);
  margin-bottom: 32px;
}

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ft-copy {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.ft-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-legal-links li a {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.ft-legal-links li a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.ft-legal-links li a:focus-visible {
  outline: 2px solid #D77357;
  outline-offset: 2px;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ft-root {
    padding: 56px 16px 32px;
  }
}

@media (max-width: 640px) {
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

.ck-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  border-radius: 18px 18px 0 0;
  padding: 32px;
  font-family: 'Cormorant', Georgia, serif;
  display: none;
}

.ck-bar-pod {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.ck-text-cell {
  flex: 1;
  min-width: 260px;
}

.ck-headline {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #2a1a14;
  margin: 0 0 8px;
}

.ck-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5a3a2a;
  margin: 0 0 16px;
}

.ck-toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.ck-toggle-label {
  font-size: 13px;
  line-height: 1.45;
  color: #5a3a2a;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.ck-toggle-input {
  width: 36px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  background: #E9C7D2;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.ck-toggle-input::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background: #fff;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-toggle-input:checked {
  background: #D77357;
}

.ck-toggle-input:checked::after {
  transform: translateX(16px);
}

.ck-btn-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.ck-btn {
  min-width: 140px;
  min-height: 44px;
  padding: 10px 16px;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border: 2px solid #D77357;
  position: relative;
}

.ck-btn.accept {
  background: #D77357;
  color: #fff;
}

.ck-btn.accept::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.ck-btn.accept:hover {
  background: #c4634a;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
}

.ck-btn.accept:hover::before {
  border-color: rgba(255, 255, 255, 0.45);
}

.ck-btn.decline {
  background: transparent;
  color: #D77357;
}

.ck-btn.decline::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 7px;
  border: 1px solid rgba(215, 115, 87, 0);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.ck-btn.decline:hover {
  background: rgba(215, 115, 87, 0.06);
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
}

.ck-btn.decline:hover::before {
  border-color: rgba(215, 115, 87, 0.35);
}

.ck-btn:focus-visible {
  outline: 2px solid #2a1a14;
  outline-offset: 3px;
}

.pref-trigger {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1999;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #D77357;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pref-trigger:hover {
  background: #c4634a;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
}

.pref-trigger:focus-visible {
  outline: 2px solid #2a1a14;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .ck-bar {
    padding: 16px;
  }

  .ck-bar-pod {
    flex-direction: column;
    gap: 16px;
  }

  .ck-btn-cell {
    flex-direction: row;
    width: 100%;
  }

  .ck-btn {
    flex: 1;
    min-width: 0;
  }
}

.doc-area {
  max-width: 1366px;
  margin: 0 auto;
  padding: 56px 32px;
  color: #2c2320;
  line-height: 1.65;
  font-size: 16px;
}

.doc-area h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #D77357;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #E9C7D2;
}

.doc-area h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #2c2320;
  margin-top: 56px;
  margin-bottom: 16px;
}

.doc-area h3 {
  font-size: 16px;
  line-height: 1.45;
  color: #D77357;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.doc-area h4 {
  font-size: 16px;
  line-height: 1.45;
  color: #2c2320;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 8px;
}

.doc-area h5 {
  font-size: 13px;
  line-height: 1.45;
  color: #5a4540;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.doc-area h6 {
  font-size: 13px;
  line-height: 1.45;
  color: #8a6e68;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
}

.doc-area p {
  font-size: 16px;
  line-height: 1.65;
  color: #3d2e2a;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch;
}

.doc-area ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
}

.doc-area ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
  counter-reset: policy-counter;
}

.doc-area ul li {
  font-size: 16px;
  line-height: 1.65;
  color: #3d2e2a;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  max-width: 72ch;
}

.doc-area ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D77357;
  flex-shrink: 0;
}

.doc-area ol li {
  font-size: 16px;
  line-height: 1.65;
  color: #3d2e2a;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  counter-increment: policy-counter;
  max-width: 72ch;
}

.doc-area ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: #D77357;
  line-height: 1.65;
}

.doc-area ul ul,
.doc-area ol ol,
.doc-area ul ol,
.doc-area ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.doc-area strong,
.doc-area b {
  font-weight: 700;
  color: #2c2320;
}

.doc-area div {
  margin-bottom: 16px;
}

.doc-area div+div {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .doc-area {
    padding: 56px 32px;
  }

  .doc-area h1 {
    font-size: 34px;
  }

  .doc-area h2 {
    font-size: 34px;
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .doc-area {
    padding: 32px 16px;
  }

  .doc-area h1 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .doc-area h2 {
    font-size: 34px;
    margin-top: 32px;
  }

  .doc-area h3 {
    margin-top: 16px;
  }

  .doc-area p,
  .doc-area ul li,
  .doc-area ol li {
    font-size: 16px;
    max-width: 100%;
  }

  .doc-area p {
    max-width: 100%;
  }

  .doc-area ul,
  .doc-area ol {
    padding-left: 16px;
  }
}

.lp-det {
  background: #fff;
  overflow-x: clip;
}

.lp-det .pg-band {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-det .ti-strip {
  padding: 56px 0 32px;
  position: relative;
}

.lp-det .ti-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #E9C7D2 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.lp-det .ti-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.lp-det .ti-text {
  flex: 1 1 0;
  min-width: 0;
}

.lp-det .ti-overline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.lp-det .ti-tag {
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  background: rgba(215, 115, 87, 0.09);
  border-radius: 3px;
  padding: 4px 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-det .ti-sep {
  width: 28px;
  height: 1px;
  background: #D77357;
  opacity: 0.4;
}

.lp-det .ti-for {
  font-size: 13px;
  line-height: 1.45;
  color: #7a5c52;
}

.lp-det .ti-h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #1e1410;
  margin: 0 0 16px;
  font-weight: 800;
}

.lp-det .ti-h1 span {
  color: #D77357;
}

.lp-det .ti-meta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.lp-det .ti-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #5a4038;
}

.lp-det .ti-meta-item i {
  font-size: 16px;
  color: #D77357;
}

.lp-det .ti-img-card {
  flex: 0 0 320px;
  width: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  filter: grayscale(1) contrast(1.1);
  position: relative;
}

.lp-det .ti-img-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-det .ti-img-card:hover img {
  filter: none;
}

.lp-det .ti-deco {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(215, 115, 87, 0.07);
  pointer-events: none;
}

.lp-det .ti-deco2 {
  position: absolute;
  bottom: -16px;
  left: 40px;
  width: 80px;
  height: 4px;
  border-radius: 3px;
  background: #D77357;
  opacity: 0.35;
  pointer-events: none;
}

@keyframes flicker-accent {

  0%,
  100% {
    opacity: 0.07;
  }

  50% {
    opacity: 0.18;
  }
}

.lp-det .ti-deco {
  animation: flicker-accent 5s ease-in-out infinite;
}

.lp-det .prog-sec {
  padding: 56px 0;
  background: #fdf6f3;
  border-top: 1.5px dotted rgba(215, 115, 87, 0.25);
  border-bottom: 1.5px dotted rgba(215, 115, 87, 0.25);
  position: relative;
}

.lp-det .prog-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.lp-det .prog-head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.lp-det .prog-overline {
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-det .prog-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1e1410;
  font-weight: 800;
  margin: 0;
}

.lp-det .prog-h2 strong {
  color: #D77357;
  font-weight: 800;
}

.lp-det .prog-card {
  background: #fff;
  border-radius: 18px;
  border-top: 4px solid #D77357;
  padding: 32px;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.lp-det .prog-card:hover {
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  transform: translateY(-4px);
}

.lp-det .prog-card h3 {
  font-size: 16px;
  line-height: 1.45;
  color: #1e1410;
  font-weight: 700;
  margin: 0 0 8px;
}

.lp-det .prog-card p,
.lp-det .prog-card li {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4038;
  margin: 0 0 8px;
}

.lp-det .prog-card ul {
  padding-left: 16px;
  margin: 0;
}

.lp-det .prog-card blockquote {
  margin: 8px 0 0;
  padding: 8px 16px;
  border-left: 3px solid #E9C7D2;
  border-radius: 0 10px 10px 0;
  background: rgba(233, 199, 210, 0.12);
  font-size: 13px;
  line-height: 1.65;
  color: #7a5c52;
  font-style: italic;
}

.lp-det .prog-card cite {
  font-size: 13px;
  color: #D77357;
  font-style: normal;
}

.lp-det .prog-card small {
  font-size: 13px;
  color: #9a7060;
}

.lp-det .prog-card h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #1e1410;
  font-weight: 800;
  margin: 0 0 8px;
}

.lp-det .prog-card figure {
  margin: 8px 0 0;
}

.lp-det .prog-card figcaption {
  font-size: 13px;
  color: #9a7060;
  margin-top: 4px;
}

.lp-det .desc-sec {
  padding: 96px 0 56px;
  position: relative;
  background: #fff;
}

.lp-det .desc-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to left, #E9C7D2, transparent);
  pointer-events: none;
}

.lp-det .desc-layout {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.lp-det .desc-main {
  flex: 1 1 0;
  min-width: 0;
}

.lp-det .desc-aside {
  flex: 0 0 300px;
  width: 300px;
}

.lp-det .desc-overline {
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-det .desc-h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #1e1410;
  font-weight: 800;
  margin: 0 0 32px;
}

.lp-det .desc-h2 em {
  color: #D77357;
  font-style: normal;
}

.lp-det .desc-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #3a2820;
  margin: 0 0 16px;
}

.lp-det .desc-body h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #1e1410;
  font-weight: 800;
  margin: 32px 0 16px;
}

.lp-det .desc-body em {
  color: #D77357;
  font-style: normal;
  font-weight: 600;
}

.lp-det .desc-body ul {
  padding-left: 16px;
  margin: 0 0 16px;
}

.lp-det .desc-body li {
  font-size: 16px;
  line-height: 1.65;
  color: #3a2820;
  margin-bottom: 8px;
}

.lp-det .desc-body figure {
  margin: 16px 0;
}

.lp-det .desc-body figcaption {
  font-size: 13px;
  color: #9a7060;
  margin-top: 4px;
}

.lp-det .desc-body details {
  border: 1px solid rgba(215, 115, 87, 0.2);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.lp-det .desc-body summary {
  font-size: 16px;
  font-weight: 600;
  color: #1e1410;
  cursor: pointer;
}

.lp-det .desc-body cite {
  font-size: 13px;
  color: #D77357;
  font-style: normal;
}

.lp-det .icon-legend {
  background: #fff;
  border-radius: 18px;
  border-top: 4px solid #E9C7D2;
  padding: 32px;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  margin-bottom: 32px;
}

.lp-det .icon-legend h4 {
  font-size: 16px;
  line-height: 1.45;
  color: #1e1410;
  font-weight: 700;
  margin: 0 0 16px;
}

.lp-det .il-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.lp-det .il-row:last-child {
  margin-bottom: 0;
}

.lp-det .il-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-det .il-icon.clr-a {
  background: rgba(215, 115, 87, 0.12);
  color: #D77357;
}

.lp-det .il-icon.clr-b {
  background: rgba(233, 199, 210, 0.35);
  color: #b06070;
}

.lp-det .il-icon.clr-c {
  background: rgba(215, 115, 87, 0.07);
  color: #c46040;
}

.lp-det .il-icon i {
  font-size: 18px;
}

.lp-det .il-text {
  flex: 1;
}

.lp-det .il-label {
  font-size: 13px;
  font-weight: 700;
  color: #1e1410;
  line-height: 1.45;
  margin-bottom: 2px;
}

.lp-det .il-desc {
  font-size: 13px;
  color: #7a5c52;
  line-height: 1.45;
}

.lp-det .like-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.lp-det .like-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid rgba(215, 115, 87, 0.3);
  border-radius: 28px;
  padding: 8px 16px;
  font-size: 13px;
  color: #D77357;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-det .like-btn:hover {
  background: rgba(215, 115, 87, 0.09);
  border-color: #D77357;
}

.lp-det .like-btn i {
  font-size: 16px;
}

.lp-det .like-count {
  font-size: 13px;
  color: #9a7060;
}

.lp-det .enroll-sec {
  padding: 56px 0 96px;
  background: linear-gradient(to left, rgba(233, 199, 210, 0.35), transparent);
  border-top: 1.5px dotted rgba(215, 115, 87, 0.2);
}

.lp-det .enroll-inner {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.lp-det .enroll-left {
  flex: 1 1 0;
  min-width: 0;
}

.lp-det .enroll-overline {
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-det .enroll-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1e1410;
  font-weight: 800;
  margin: 0 0 16px;
}

.lp-det .enroll-h2 strong {
  color: #D77357;
}

.lp-det .enroll-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #3a2820;
  margin: 0 0 32px;
}

.lp-det .enroll-stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.lp-det .e-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-det .e-stat-val {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #D77357;
}

.lp-det .e-stat-lbl {
  font-size: 13px;
  line-height: 1.45;
  color: #7a5c52;
}

.lp-det .enroll-right {
  flex: 0 0 360px;
  width: 360px;
}

.lp-det .price-card {
  background: #fff;
  border-radius: 18px;
  border-top: 4px solid #D77357;
  padding: 32px;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  position: relative;
}

.lp-det .price-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 18px 0 80px;
  background: rgba(233, 199, 210, 0.2);
  pointer-events: none;
}

.lp-det .pc-seats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #b06070;
  font-weight: 600;
  margin-bottom: 16px;
}

.lp-det .pc-seats i {
  font-size: 16px;
}

.lp-det .pc-price-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.lp-det .pc-price {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: #1e1410;
}

.lp-det .pc-pricedes {
  font-size: 13px;
  line-height: 1.45;
  color: #7a5c52;
}

.lp-det .pc-note {
  font-size: 13px;
  line-height: 1.45;
  color: #9a7060;
  margin-bottom: 32px;
  display: block;
}

.lp-det .pc-dur {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5a4038;
  margin-bottom: 16px;
}

.lp-det .pc-dur i {
  color: #D77357;
  font-size: 16px;
}

.lp-det .pc-readtime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5a4038;
  margin-bottom: 32px;
}

.lp-det .pc-readtime i {
  color: #D77357;
  font-size: 16px;
}

.lp-det .pc-divider {
  height: 1px;
  background: rgba(215, 115, 87, 0.15);
  margin: 0 0 32px;
}

.lp-det .btn-enroll {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: #D77357;
  color: #fff;
  border: 2px solid #D77357;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
}

.lp-det .btn-enroll::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-det .btn-enroll:hover {
  background: #c4603d;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
}

.lp-det .btn-enroll:hover::after {
  opacity: 1;
}

.lp-det .btn-contact {
  display: block;
  width: 100%;
  padding: 14px 32px;
  background: none;
  color: #D77357;
  border: 1.5px solid rgba(215, 115, 87, 0.4);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.lp-det .btn-contact::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  border: 1.5px solid rgba(215, 115, 87, 0.2);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-det .btn-contact:hover {
  background: rgba(215, 115, 87, 0.06);
  border-color: #D77357;
}

.lp-det .btn-contact:hover::after {
  opacity: 1;
}

.lp-det .stars-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.lp-det .star-rating {
  unicode-bidi: bidi-override;
  direction: ltr;
}

.lp-det .stars-label {
  font-size: 13px;
  color: #9a7060;
}

@media (max-width: 1024px) {
  .lp-det .ti-h1 {
    font-size: 46px;
  }

  .lp-det .ti-img-card {
    flex: 0 0 240px;
    width: 240px;
  }

  .lp-det .prog-inner {
    grid-template-columns: 1fr;
  }

  .lp-det .desc-layout {
    flex-direction: column;
  }

  .lp-det .desc-aside {
    width: 100%;
    flex: 0 0 auto;
  }

  .lp-det .enroll-inner {
    flex-direction: column;
  }

  .lp-det .enroll-right {
    width: 100%;
    flex: 0 0 auto;
  }

  .lp-det .enroll-h2 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .lp-det .pg-band {
    padding: 0 16px;
  }

  .lp-det .ti-inner {
    flex-direction: column;
    gap: 32px;
  }

  .lp-det .ti-h1 {
    font-size: 34px;
  }

  .lp-det .ti-img-card {
    width: 100%;
    flex: 0 0 auto;
  }

  .lp-det .ti-strip {
    padding: 32px 0 32px;
  }

  .lp-det .prog-h2 {
    font-size: 34px;
  }

  .lp-det .enroll-h2 {
    font-size: 34px;
  }

  .lp-det .enroll-stats {
    gap: 16px;
  }

  .lp-det .pc-price {
    font-size: 34px;
  }

  .lp-det .desc-h2 {
    font-size: 34px;
  }
}

.qz-pg {
  background: #fff;
  overflow-x: clip;
}

.qz-pg *,
.qz-pg *::before,
.qz-pg *::after {
  box-sizing: border-box;
}

.qz-pg ::selection {
  background: #2a1a14;
  color: #fff;
}

.qz-pg img {
  display: block;
  max-width: 100%;
}

@keyframes qz-elastic-in {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(28px);
  }

  60% {
    opacity: 1;
    transform: scale(1.03) translateY(-6px);
  }

  80% {
    transform: scale(0.98) translateY(2px);
  }

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

@keyframes qz-elastic-left {
  0% {
    opacity: 0;
    transform: scale(0.9) translateX(-32px);
  }

  60% {
    opacity: 1;
    transform: scale(1.02) translateX(6px);
  }

  80% {
    transform: scale(0.99) translateX(-2px);
  }

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

@keyframes qz-elastic-right {
  0% {
    opacity: 0;
    transform: scale(0.9) translateX(32px);
  }

  60% {
    opacity: 1;
    transform: scale(1.02) translateX(-6px);
  }

  80% {
    transform: scale(0.99) translateX(2px);
  }

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

.qz-pg .qz-hero {
  padding: 96px 32px;
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.qz-pg .qz-hero-img-col {
  position: relative;
  animation: qz-elastic-left 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.qz-pg .qz-hero-img-frame {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
}

.qz-pg .qz-hero-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 199, 210, 0.55) 0%, transparent 60%);
  border-radius: 18px;
  pointer-events: none;
}

.qz-pg .qz-hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.qz-pg .qz-hero-img-border {
  position: absolute;
  inset: -12px -12px -12px -12px;
  border: 2px dashed rgba(215, 115, 87, 0.35);
  border-radius: 28px;
  pointer-events: none;
}

.qz-pg .qz-hero-txt-col {
  position: relative;
  animation: qz-elastic-right 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.qz-pg .qz-dot-grid {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(215, 115, 87, 0.22) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  border-radius: 3px;
}

.qz-pg .qz-overline {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D77357;
  font-weight: 600;
  margin-bottom: 16px;
}

.qz-pg .qz-hero-h {
  font-size: 62px;
  line-height: 1.2;
  color: #1e1208;
  margin: 0 0 16px;
  font-weight: 800;
}

.qz-pg .qz-hero-h span {
  color: #D77357;
}

.qz-pg .qz-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #3d2b1f;
  margin: 0;
  max-width: 460px;
}

.qz-pg .qz-quiz-area {
  position: relative;
  overflow: hidden;
}

.qz-pg .qz-quiz-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: #fdf5f0;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  pointer-events: none;
}

.qz-pg .qz-quiz-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: #fef9fb;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.qz-pg .qz-quiz-inner {
  position: relative;
  z-index: 1;
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 32px;
}

.qz-pg .qz-quiz-top {
  text-align: center;
  margin-bottom: 56px;
  animation: qz-elastic-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.qz-pg .qz-quiz-top .qz-overline {
  display: inline-block;
}

.qz-pg .qz-quiz-h {
  font-size: 46px;
  line-height: 1.2;
  color: #1e1208;
  margin: 0 0 16px;
  font-weight: 700;
}

.qz-pg .qz-quiz-h span {
  color: #D77357;
}

.qz-pg .qz-quiz-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #3d2b1f;
  margin: 0 auto;
  max-width: 560px;
}

.qz-pg .qz-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.qz-pg .qz-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  animation: qz-elastic-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  position: relative;
}

.qz-pg .qz-card:nth-child(1) {
  animation-delay: 0.1s;
}

.qz-pg .qz-card:nth-child(2) {
  animation-delay: 0.2s;
}

.qz-pg .qz-card:nth-child(3) {
  animation-delay: 0.3s;
}

.qz-pg .qz-card:hover {
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  transform: translateY(-4px);
}

.qz-pg .qz-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #D77357;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.28);
  margin-bottom: 16px;
}

.qz-pg .qz-card-badge svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qz-pg .qz-card-badge.sec {
  background: #E9C7D2;
  box-shadow: 1px 6px 14px 0 rgba(233, 199, 210, 0.35);
}

.qz-pg .qz-card-badge.sec svg {
  stroke: #8b3a2a;
}

.qz-pg .qz-card-badge.ter {
  background: linear-gradient(135deg, #D77357 0%, #E9C7D2 100%);
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.22);
}

.qz-pg .qz-card-h {
  font-size: 16px;
  line-height: 1.45;
  color: #1e1208;
  font-weight: 700;
  margin: 0 0 8px;
}

.qz-pg .qz-card-p {
  font-size: 13px;
  line-height: 1.65;
  color: #5a3d2e;
  margin: 0;
}

.qz-pg .qz-tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  position: relative;
}

.qz-pg .qz-tier-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E9C7D2 0%, #D77357 50%, #E9C7D2 100%);
  z-index: 2;
}

.qz-pg .qz-tier {
  background: #fff;
  padding: 32px;
  border-right: 1px solid rgba(215, 115, 87, 0.12);
  position: relative;
  transition: background 0.45s ease-in-out;
}

.qz-pg .qz-tier:last-child {
  border-right: none;
}

.qz-pg .qz-tier.featured {
  background: linear-gradient(180deg, #fff8f5 0%, #fff 100%);
}

.qz-pg .qz-tier-label {
  font-size: 13px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #D77357;
  margin: 0 0 8px;
}

.qz-pg .qz-tier-name {
  font-size: 34px;
  line-height: 1.2;
  color: #1e1208;
  font-weight: 800;
  margin: 0 0 16px;
}

.qz-pg .qz-tier-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5a3d2e;
  margin: 0 0 16px;
}

.qz-pg .qz-tier-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qz-pg .qz-tier-feats li {
  font-size: 13px;
  line-height: 1.45;
  color: #3d2b1f;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qz-pg .qz-tier-feats li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D77357;
  flex-shrink: 0;
}

.qz-pg .qz-tier-feats li.dim {
  color: #b89080;
}

.qz-pg .qz-tier-feats li.dim::before {
  background: #E9C7D2;
}

.qz-pg .qz-tier-shared-top {
  grid-column: 1 / -1;
  background: #1e1208;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.qz-pg .qz-tier-shared-top span {
  font-size: 13px;
  line-height: 1.45;
  color: #E9C7D2;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.qz-pg .qz-tier-shared-top svg {
  width: 18px;
  height: 18px;
  stroke: #D77357;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.qz-pg .qz-tier-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}

.qz-pg .qz-tier-wrap .qz-tier-shared-top {
  grid-column: 1 / -1;
  border-radius: 18px 18px 0 0;
}

.qz-pg .qz-tier-wrap .qz-tier:first-of-type {
  border-radius: 0 0 0 18px;
}

.qz-pg .qz-tier-wrap .qz-tier:last-of-type {
  border-radius: 0 0 18px 0;
}

@media (max-width: 1024px) {
  .qz-pg .qz-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 32px;
  }

  .qz-pg .qz-hero-img-frame img {
    height: 360px;
  }

  .qz-pg .qz-hero-h {
    font-size: 46px;
  }

  .qz-pg .qz-cards {
    grid-template-columns: 1fr 1fr;
  }

  .qz-pg .qz-tier-wrap {
    grid-template-columns: 1fr;
  }

  .qz-pg .qz-tier-wrap .qz-tier-shared-top {
    border-radius: 18px 18px 0 0;
  }

  .qz-pg .qz-tier-wrap .qz-tier {
    border-right: none;
    border-bottom: 1px solid rgba(215, 115, 87, 0.12);
  }

  .qz-pg .qz-tier-wrap .qz-tier:first-of-type {
    border-radius: 0;
  }

  .qz-pg .qz-tier-wrap .qz-tier:last-of-type {
    border-radius: 0 0 18px 18px;
    border-bottom: none;
  }

  .qz-pg .qz-quiz-h {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .qz-pg .qz-hero {
    padding: 56px 16px;
  }

  .qz-pg .qz-hero-h {
    font-size: 34px;
  }

  .qz-pg .qz-hero-img-frame img {
    height: 260px;
  }

  .qz-pg .qz-cards {
    grid-template-columns: 1fr;
  }

  .qz-pg .qz-quiz-inner {
    padding: 56px 16px;
  }

  .qz-pg .qz-quiz-h {
    font-size: 34px;
  }

  .qz-pg .qz-dot-grid {
    display: none;
  }
}

.cnt-pg {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.cnt-pg .bg-rings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
}

.cnt-pg .bg-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(215, 115, 87, 0.07);
  animation: ring-expand 6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.cnt-pg .bg-rings span:nth-child(1) {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.cnt-pg .bg-rings span:nth-child(2) {
  width: 400px;
  height: 400px;
  animation-delay: 1.5s;
}

.cnt-pg .bg-rings span:nth-child(3) {
  width: 600px;
  height: 600px;
  animation-delay: 3s;
}

.cnt-pg .bg-rings span:nth-child(4) {
  width: 800px;
  height: 800px;
  animation-delay: 4.5s;
}

@keyframes ring-expand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  30% {
    opacity: 1;
  }

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

.cnt-pg .split-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  z-index: 1;
}

.cnt-pg .split-left {
  background: #2b1f1b;
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cnt-pg .split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(215, 115, 87, 0.18), transparent);
  pointer-events: none;
}

.cnt-pg .split-left .geo-circle {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(215, 115, 87, 0.08);
  pointer-events: none;
}

.cnt-pg .overline {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cnt-pg .split-left h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}

.cnt-pg .split-left h1 em {
  font-style: normal;
  color: #D77357;
}

.cnt-pg .split-left .sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 32px;
  max-width: 380px;
}

.cnt-pg .contact-chips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnt-pg .chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.cnt-pg .chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(215, 115, 87, 0.15);
  border: 1px solid rgba(215, 115, 87, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cnt-pg .chip-icon svg {
  width: 18px;
  height: 18px;
  stroke: #D77357;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cnt-pg .chip-text {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.cnt-pg .chip-text a {
  color: #E9C7D2;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cnt-pg .chip-text a:hover {
  color: #D77357;
}

.cnt-pg .split-right {
  background: #fff;
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.cnt-pg .split-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to left, #D77357, transparent);
}

.cnt-pg .form-label-over {
  font-size: 13px;
  line-height: 1.45;
  color: #2b1f1b;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.cnt-pg .form-grp {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cnt-pg .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cnt-pg .f-field {
  display: flex;
  flex-direction: column;
}

.cnt-pg .f-inp {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(215, 115, 87, 0.22);
  background: #fff;
  font-size: 16px;
  line-height: 1.45;
  color: #2b1f1b;
  box-shadow: inset 2px 3px 6px 0 rgba(215, 115, 87, 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;
}

.cnt-pg .f-inp::placeholder {
  color: rgba(43, 31, 27, 0.38);
}

.cnt-pg .f-inp:focus {
  outline: none;
  border-color: #D77357;
  box-shadow: inset 2px 3px 6px 0 rgba(215, 115, 87, 0.07), 0 0 0 3px rgba(215, 115, 87, 0.12);
}

.cnt-pg .ch-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-pg .ch-label {
  font-size: 13px;
  line-height: 1.45;
  color: #2b1f1b;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.cnt-pg .ch-opts {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.cnt-pg .ch-opt {
  position: relative;
}

.cnt-pg .ch-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cnt-pg .ch-opt label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 28px;
  border: 1.5px solid rgba(215, 115, 87, 0.25);
  font-size: 13px;
  line-height: 1.45;
  color: #2b1f1b;
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}

.cnt-pg .ch-opt label svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cnt-pg .ch-opt input[type="radio"]:checked+label {
  background: #D77357;
  border-color: #D77357;
  color: #fff;
}

.cnt-pg .ch-opt label:hover {
  border-color: #D77357;
  background: rgba(215, 115, 87, 0.08);
}

.cnt-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.cnt-pg .privacy-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #D77357;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.cnt-pg .privacy-row .prv-txt {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(43, 31, 27, 0.65);
}

.cnt-pg .privacy-row .prv-txt a {
  color: #D77357;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cnt-pg .privacy-row .prv-txt a:hover {
  color: #2b1f1b;
}

.cnt-pg .btn-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  background: #D77357;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  border: 2px solid #D77357;
  cursor: pointer;
  position: relative;
  transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.22);
}

.cnt-pg .btn-submit::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.cnt-pg .btn-submit:hover {
  background: #c5614a;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.28);
}

.cnt-pg .btn-submit:hover::after {
  border-color: rgba(255, 255, 255, 0.45);
}

.cnt-pg .btn-submit:focus {
  outline: 3px solid rgba(215, 115, 87, 0.4);
  outline-offset: 3px;
}

.cnt-pg .wave-divider {
  position: relative;
  z-index: 1;
  line-height: 0;
  background: #fff;
}

.cnt-pg .wave-divider svg {
  display: block;
  width: 100%;
}

.cnt-pg .detail-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(to left, rgba(233, 199, 210, 0.22), transparent);
  padding: 56px 0;
}

.cnt-pg .band-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.cnt-pg .detail-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(215, 115, 87, 0.13);
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cnt-pg .detail-card:hover {
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  transform: translateY(-3px);
}

.cnt-pg .dc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(215, 115, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cnt-pg .dc-icon svg {
  width: 22px;
  height: 22px;
  stroke: #D77357;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cnt-pg .dc-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-pg .dc-label {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(43, 31, 27, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cnt-pg .dc-val {
  font-size: 16px;
  line-height: 1.45;
  color: #2b1f1b;
  font-weight: 600;
}

.cnt-pg .dc-val a {
  color: #2b1f1b;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cnt-pg .dc-val a:hover {
  color: #D77357;
}

.cnt-pg .dc-note {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(43, 31, 27, 0.55);
}

.cnt-pg .thick-rule {
  width: 100%;
  height: 0;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-image: linear-gradient(to right, rgba(215, 115, 87, 0.1), rgba(215, 115, 87, 0.6) 60%, #D77357) 1;
  margin: 0;
}

@media (max-width: 1024px) {
  .cnt-pg .split-top {
    grid-template-columns: 1fr;
  }

  .cnt-pg .split-left {
    padding: 56px 32px;
    min-height: auto;
  }

  .cnt-pg .split-right {
    padding: 56px 32px;
  }

  .cnt-pg .band-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 32px;
  }

  .cnt-pg .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cnt-pg .split-left {
    padding: 56px 16px;
  }

  .cnt-pg .split-right {
    padding: 56px 16px;
  }

  .cnt-pg .split-left h1 {
    font-size: 34px;
  }

  .cnt-pg .band-inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }

  .cnt-pg .ch-opts {
    gap: 8px;
  }

  .cnt-pg .detail-band {
    padding: 56px 0;
  }
}

.proc-pg {
  background: #fff;
  overflow-x: clip;
  position: relative;
}

.proc-pg script {
  display: none;
}

.proc-pg .pg-lim {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.proc-pg ::selection {
  background: #2c1a14;
  color: #fff;
  font-weight: 700;
}

.proc-pg .sec-num {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.proc-pg .sec-num span {
  font-size: 13px;
  color: #b5b0ac;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.proc-pg .sec-num::before,
.proc-pg .sec-num::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: #e2d8d3;
}

.proc-pg .overline-lbl {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D77357;
  margin-bottom: 16px;
  font-weight: 600;
}

.proc-pg .heading-accent {
  color: #D77357;
}

/* ── SECTION 1: TITLE BLOCK ── */
.proc-pg .title-blk {
  padding-top: 56px;
  padding-bottom: 96px;
  position: relative;
}

.proc-pg .title-frame {
  position: relative;
  border: 1px solid #E9C7D2;
  border-radius: 18px;
  padding: 56px 32px 56px 32px;
  overflow: hidden;
}

.proc-pg .title-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(215, 115, 87, 0.15);
  border-radius: 14px;
  pointer-events: none;
}

.proc-pg .title-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.proc-pg .title-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.proc-pg .title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.proc-pg .title-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(233, 199, 210, 0.35), transparent);
  pointer-events: none;
  border-radius: 10px;
}

.proc-pg .title-img-wrap:hover img {
  transform: scale(1.04);
}

.proc-pg .title-img-wrap.right-img::after {
  background: linear-gradient(to left, rgba(233, 199, 210, 0.35), transparent);
}

.proc-pg .title-txt {
  text-align: center;
  padding: 32px 16px;
}

.proc-pg .title-txt h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #1e1108;
  margin: 0 0 16px 0;
  animation: lift-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.proc-pg .title-quote {
  font-size: 16px;
  line-height: 1.65;
  color: #6b5c52;
  font-style: italic;
  max-width: 420px;
  margin: 0 auto;
}

/* ── ZIGZAG DIVIDER ── */
.proc-pg .zigzag-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.proc-pg .zigzag-div svg {
  display: block;
  width: 100%;
}

/* ── SECTION 2: PROCESS STEPS ── */
.proc-pg .steps-sec {
  background: linear-gradient(to right, #E9C7D2, transparent 70%),
    linear-gradient(160deg, #fff8f5 0%, #fff 60%);
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.proc-pg .steps-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #D77357, #E9C7D2, transparent);
}

.proc-pg .steps-layout {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 56px;
  align-items: start;
}

.proc-pg .steps-left h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1e1108;
  margin: 0 0 32px 0;
}

.proc-pg .step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(215, 115, 87, 0.12);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 10px;
  padding-left: 8px;
  padding-right: 8px;
}

.proc-pg .step-row:last-of-type {
  border-bottom: none;
}

.proc-pg .step-row:hover {
  background: rgba(233, 199, 210, 0.18);
}

.proc-pg .step-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #D77357;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.18);
  margin-top: 2px;
}

.proc-pg .step-body h5 {
  font-size: 16px;
  line-height: 1.45;
  color: #1e1108;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.proc-pg .step-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #5a4a40;
  margin: 0;
}

.proc-pg .steps-right {
  position: sticky;
  top: 32px;
}

.proc-pg .img-panel {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  aspect-ratio: 4/5;
}

.proc-pg .img-panel img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  animation: pan-lr 18s linear infinite alternate;
}

@keyframes pan-lr {
  from {
    object-position: 0% 0%;
  }

  to {
    object-position: 100% 0%;
  }
}

.proc-pg .img-panel .panel-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
}

.proc-pg .panel-badge h6 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D77357;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.proc-pg .panel-badge p {
  font-size: 13px;
  line-height: 1.45;
  color: #3d2e27;
  margin: 0;
}

.proc-pg .pros-cons {
  margin-top: 32px;
  border-radius: 18px;
  border: 1px solid #E9C7D2;
  overflow: hidden;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
}

.proc-pg .pc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.proc-pg .pc-col-lbl {
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.proc-pg .pc-col-lbl.pos {
  background: rgba(215, 115, 87, 0.1);
  color: #a84d2f;
  border-right: 1px solid #E9C7D2;
}

.proc-pg .pc-col-lbl.neg {
  background: rgba(233, 199, 210, 0.2);
  color: #7a5060;
}

.proc-pg .pc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.proc-pg .pc-col {
  padding: 16px;
}

.proc-pg .pc-col.pos-col {
  border-right: 1px solid #E9C7D2;
}

.proc-pg .pc-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(233, 199, 210, 0.4);
}

.proc-pg .pc-item:last-child {
  border-bottom: none;
}

.proc-pg .pc-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 5px;
}

.proc-pg .pc-dot.pos-dot {
  background: #D77357;
}

.proc-pg .pc-dot.neg-dot {
  background: #E9C7D2;
}

.proc-pg .pc-item span {
  font-size: 13px;
  line-height: 1.45;
  color: #3d2e27;
}

/* ── RATING ── */
.proc-pg .rating-strip {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E9C7D2;
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
}

.proc-pg .rating-strip .star-rating {
  font-size: 16px;
}

.proc-pg .rating-txt {
  font-size: 13px;
  color: #5a4a40;
  line-height: 1.45;
}

.proc-pg .rating-txt strong {
  color: #1e1108;
  font-size: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .proc-pg .title-inner {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
  }

  .proc-pg .title-txt h1 {
    font-size: 46px;
  }

  .proc-pg .steps-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proc-pg .steps-right {
    position: static;
  }

  .proc-pg .img-panel {
    aspect-ratio: 16/7;
  }

  .proc-pg .img-panel img {
    height: 100%;
  }

  .proc-pg .steps-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .proc-pg .pg-lim {
    padding-left: 16px;
    padding-right: 16px;
  }

  .proc-pg .title-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proc-pg .title-img-wrap {
    display: none;
  }

  .proc-pg .title-txt h1 {
    font-size: 34px;
  }

  .proc-pg .title-frame {
    padding: 32px 16px 56px 16px;
  }

  .proc-pg .title-blk {
    padding-bottom: 56px;
  }

  .proc-pg .steps-sec {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .proc-pg .pc-head,
  .proc-pg .pc-body {
    grid-template-columns: 1fr;
  }

  .proc-pg .pc-col.pos-col {
    border-right: none;
    border-bottom: 1px solid #E9C7D2;
  }

  .proc-pg .pc-col-lbl.pos {
    border-right: none;
    border-bottom: 1px solid #E9C7D2;
  }

  .proc-pg .steps-left h2 {
    font-size: 34px;
  }

  .proc-pg .rating-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

.lrn-prog {
  background: #fff;
  color: #1e1a18;
  overflow-x: hidden;
}

.lrn-prog .pg-band {
  background: #f5ede8;
  padding: 96px 32px 56px;
  position: relative;
}

.lrn-prog .pg-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(215, 115, 87, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.lrn-prog .pg-band-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lrn-prog .pg-overline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.lrn-prog .pg-overline span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #D77357;
}

.lrn-prog .pg-overline-txt {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D77357;
  font-weight: 600;
}

.lrn-prog .pg-h1 {
  font-size: 62px;
  line-height: 1.2;
  font-weight: 800;
  color: #1e1a18;
  max-width: 780px;
  margin: 0 0 16px;
}

.lrn-prog .pg-h1 em {
  font-style: normal;
  color: #D77357;
}

.lrn-prog .pg-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #4a3f39;
  max-width: 540px;
  margin: 0;
}

.lrn-prog .divider-a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}

.lrn-prog .divider-a span {
  display: block;
  width: 40px;
  height: 1px;
  background: #D77357;
  opacity: 0.45;
}

.lrn-prog .divider-a i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D77357;
  opacity: 0.6;
}

.lrn-prog .cards-band {
  padding: 56px 32px 96px;
  max-width: 1366px;
  margin: 0 auto;
}

.lrn-prog .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.lrn-prog .prog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  border: 1px solid rgba(215, 115, 87, 0.13);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.lrn-prog .prog-card:hover {
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  transform: translateY(-4px);
}

.lrn-prog .prog-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.lrn-prog .card-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
  border-radius: 18px 18px 0 0;
}

.lrn-prog .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .card-tag-row {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.lrn-prog .card-tag {
  background: #D77357;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 28px;
}

.lrn-prog .card-lvl {
  background: rgba(233, 199, 210, 0.92);
  color: #6b2e1e;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 28px;
}

.lrn-prog .card-body {
  padding: 24px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lrn-prog .card-ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #1e1a18;
  margin: 0;
}

.lrn-prog .card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a44;
  margin: 0;
}

.lrn-prog .card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lrn-prog .card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #7a6058;
}

.lrn-prog .card-meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.lrn-prog .card-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(215, 115, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lrn-prog .card-price-blk {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lrn-prog .card-price {
  font-size: 16px;
  font-weight: 800;
  color: #D77357;
}

.lrn-prog .card-price-des {
  font-size: 13px;
  color: #7a6058;
  line-height: 1.2;
}

.lrn-prog .card-price-note {
  font-size: 13px;
  color: #a07068;
  font-style: italic;
}

.lrn-prog .card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lrn-prog .card-like {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #a07068;
}

.lrn-prog .card-like svg {
  opacity: 0.65;
}

.lrn-prog .btn-card {
  background: #D77357;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
}

.lrn-prog .btn-card::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.lrn-prog .btn-card:hover {
  background: #c4614a;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.18);
}

.lrn-prog .btn-card:hover::after {
  border-color: rgba(255, 255, 255, 0.45);
}

.lrn-prog .seats-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8b3a2a;
  background: rgba(215, 115, 87, 0.1);
  border-radius: 28px;
  padding: 3px 10px;
  margin-top: 8px;
  align-self: flex-start;
}

.lrn-prog .seats-badge svg {
  opacity: 0.8;
}

.lrn-prog .split-band {
  display: grid;
  grid-template-columns: 30fr 70fr;
  min-height: 480px;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 56px;
  align-items: center;
}

.lrn-prog .split-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.lrn-prog .split-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: -28px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(215, 115, 87, 0.3), transparent);
}

.lrn-prog .split-left-label {
  font-size: 13px;
  color: #D77357;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lrn-prog .split-left-h {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e1a18;
  margin: 0;
}

.lrn-prog .split-left-p {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a44;
  margin: 0;
}

.lrn-prog .split-right {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.8fr;
  gap: 16px;
  align-items: end;
}

.lrn-prog .feat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lrn-prog .feat-box {
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1.5px dashed rgba(215, 115, 87, 0.35);
  background: #fff;
  transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .feat-box:hover {
  background: #fdf5f2;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
}

.lrn-prog .feat-box-icon {
  width: 38px;
  height: 38px;
  background: rgba(215, 115, 87, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D77357;
}

.lrn-prog .feat-box-h {
  font-size: 13px;
  font-weight: 700;
  color: #1e1a18;
  margin: 0;
}

.lrn-prog .feat-box-p {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a44;
  margin: 0;
}

.lrn-prog .feat-box.accent-box {
  background: #D77357;
  border-color: #D77357;
}

.lrn-prog .feat-box.accent-box .feat-box-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lrn-prog .feat-box.accent-box .feat-box-h {
  color: #fff;
}

.lrn-prog .feat-box.accent-box .feat-box-p {
  color: rgba(255, 255, 255, 0.85);
}

.lrn-prog .feat-box.accent-box:hover {
  background: #c4614a;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.22);
}

.lrn-prog .bg-img-band {
  position: relative;
  padding: 96px 32px;
  overflow: hidden;
}

.lrn-prog .bg-img-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 8, 0.88);
  z-index: 1;
  pointer-events: none;
}

.lrn-prog .bg-img-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.lrn-prog .fog-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.lrn-prog .fog-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 220%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0.07) 55%, rgba(255, 255, 255, 0.04) 70%, transparent 100%);
  animation: fog-drift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes fog-drift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(18%);
  }
}

.lrn-prog .bg-img-inner {
  position: relative;
  z-index: 3;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.lrn-prog .bg-img-overline {
  font-size: 13px;
  color: #E9C7D2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.lrn-prog .bg-img-h {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  max-width: 700px;
}

.lrn-prog .bg-img-h mark {
  background: rgba(215, 115, 87, 0.38);
  color: #f8c4a8;
  padding: 0 6px;
  border-radius: 3px;
}

.lrn-prog .bg-img-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0;
}

.lrn-prog .btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(215, 115, 87, 0.7);
  color: #f8c4a8;
  background: transparent;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .btn-ghost::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.lrn-prog .btn-ghost:hover {
  background: rgba(215, 115, 87, 0.18);
  border-color: #D77357;
  color: #fff;
}

.lrn-prog .btn-ghost:hover::after {
  border-color: rgba(215, 115, 87, 0.4);
}

.lrn-prog .howto-band {
  padding: 96px 32px;
  background: #fdf5f2;
}

.lrn-prog .howto-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.lrn-prog .howto-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 56px;
}

.lrn-prog .howto-overline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lrn-prog .howto-overline span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #D77357;
}

.lrn-prog .howto-overline-txt {
  font-size: 13px;
  color: #D77357;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lrn-prog .howto-h {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e1a18;
  margin: 0;
  max-width: 540px;
}

.lrn-prog .howto-steps {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.lrn-prog .step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding: 32px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(215, 115, 87, 0.12);
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
  transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .step-item:hover {
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.11);
}

.lrn-prog .step-num {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: rgba(215, 115, 87, 0.15);
  position: absolute;
  top: 16px;
  right: 20px;
}

.lrn-prog .step-icon {
  width: 44px;
  height: 44px;
  background: rgba(215, 115, 87, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D77357;
}

.lrn-prog .step-h {
  font-size: 16px;
  font-weight: 700;
  color: #1e1a18;
  margin: 0;
}

.lrn-prog .step-p {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a44;
  margin: 0;
}

.lrn-prog .faq-band {
  padding: 96px 32px;
  background: #fff;
}

.lrn-prog .faq-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30fr 70fr;
  gap: 56px;
  align-items: start;
}

.lrn-prog .faq-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 32px;
}

.lrn-prog .faq-overline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lrn-prog .faq-overline span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #D77357;
}

.lrn-prog .faq-overline-txt {
  font-size: 13px;
  color: #D77357;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lrn-prog .faq-h {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e1a18;
  margin: 0;
}

.lrn-prog .faq-left-p {
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a44;
  margin: 0;
}

.lrn-prog .faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lrn-prog .faq-item {
  border: 1px solid rgba(215, 115, 87, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.lrn-prog .faq-q {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1e1a18;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.45s ease-in-out;
}

.lrn-prog .faq-q:hover {
  background: #fdf5f2;
}

.lrn-prog .faq-q svg {
  flex-shrink: 0;
  color: #D77357;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lrn-prog .faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), padding 0.45s ease-in-out;
  padding: 0 24px;
  font-size: 13px;
  line-height: 1.65;
  color: #5a4a44;
}

.lrn-prog .faq-item.open .faq-ans {
  max-height: 300px;
  padding: 0 24px 20px;
}

.lrn-prog .faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.lrn-prog .divider-b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}

.lrn-prog .divider-b span {
  display: block;
  width: 32px;
  height: 1px;
  background: #E9C7D2;
}

.lrn-prog .divider-b .dshape {
  width: 8px;
  height: 8px;
  border: 1.5px solid #D77357;
  border-radius: 3px;
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .lrn-prog .pg-h1 {
    font-size: 46px;
  }

  .lrn-prog .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lrn-prog .split-band {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lrn-prog .split-left::before {
    display: none;
  }

  .lrn-prog .split-right {
    grid-template-columns: 1fr 1fr;
  }

  .lrn-prog .howto-steps {
    flex-direction: column;
  }

  .lrn-prog .faq-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lrn-prog .faq-left {
    position: static;
  }

  .lrn-prog .bg-img-h {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .lrn-prog .pg-h1 {
    font-size: 34px;
  }

  .lrn-prog .cards-grid {
    grid-template-columns: 1fr;
  }

  .lrn-prog .split-right {
    grid-template-columns: 1fr;
  }

  .lrn-prog .cards-band {
    padding: 32px 16px 56px;
  }

  .lrn-prog .pg-band {
    padding: 56px 16px 32px;
  }

  .lrn-prog .howto-band {
    padding: 56px 16px;
  }

  .lrn-prog .faq-band {
    padding: 56px 16px;
  }

  .lrn-prog .bg-img-band {
    padding: 56px 16px;
  }

  .lrn-prog .bg-img-h {
    font-size: 34px;
  }

  .lrn-prog .split-band {
    padding: 0 16px;
  }
}

.bs-root {
  background: #fff;
  overflow-x: hidden;
  position: relative;
}

.bs-root *::selection {
  background: #2c1a14;
  color: #fff;
  font-weight: 700;
}

.bs-root .schema-block {
  display: none;
}

/* ── SECTION 1: TITLE BLOCK ── */
.bs-root .tbl {
  position: relative;
  padding: 96px 56px 96px 56px;
  max-width: 1366px;
  margin: 0 auto;
}

.bs-root .tbl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.bs-root .tbl-left {
  padding-right: 32px;
}

.bs-root .tbl-overline {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.bs-root .tbl-overline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 3px;
  background: #D77357;
  border-radius: 3px;
}

.bs-root .tbl-h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #1b1410;
  margin: 0 0 32px 0;
  font-weight: 800;
}

.bs-root .tbl-h1 .acc {
  color: #D77357;
}

.bs-root .tbl-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #3d2e28;
  margin: 0 0 32px 0;
  max-width: 480px;
}

.bs-root .tbl-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.bs-root .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #D77357;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #D77357;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease-in-out;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  position: relative;
}

.bs-root .btn-prim::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bs-root .btn-prim:hover {
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14), 0 0 0 6px rgba(215, 115, 87, 0.12);
  background: #c4613e;
}

.bs-root .btn-prim:hover::after {
  opacity: 1;
}

.bs-root .btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #1b1410;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #c8b4ac;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s ease-in-out;
  position: relative;
}

.bs-root .btn-sec::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(215, 115, 87, 0.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bs-root .btn-sec:hover {
  border-color: #D77357;
  color: #D77357;
}

.bs-root .btn-sec:hover::after {
  opacity: 1;
}

.bs-root .tbl-right {
  position: relative;
}

.bs-root .tbl-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  cursor: pointer;
}

.bs-root .tbl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.bs-root .tbl-img-wrap:hover img {
  transform: translateX(-4%) scale(1.04);
}

.bs-root .tbl-img-leak {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(233, 199, 210, 0.7) 0%, rgba(215, 115, 87, 0.18) 55%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.bs-root .tbl-img-leak2 {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 70% 70%, rgba(215, 115, 87, 0.22) 0%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.bs-root .tbl-shape-a {
  position: absolute;
  top: -16px;
  right: -32px;
  font-size: 220px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(215, 115, 87, 0.13);
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.bs-root .tbl-shape-b {
  position: absolute;
  bottom: 56px;
  left: -48px;
  width: 80px;
  height: 80px;
  border: 3px solid rgba(233, 199, 210, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* bounce on load */
@keyframes bs-bounce {
  0% {
    transform: translateY(-28px);
    opacity: 0;
  }

  55% {
    transform: translateY(10px);
    opacity: 1;
  }

  75% {
    transform: translateY(-6px);
  }

  90% {
    transform: translateY(3px);
  }

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

.bs-root .tbl-left {
  animation: bs-bounce 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bs-root .tbl-right {
  animation: bs-bounce 0.65s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── DIVIDER 1 ── */
.bs-root .div-band-a {
  height: 5px;
  background: linear-gradient(to left, #E9C7D2, transparent);
  width: 100%;
}

/* ── SECTION 2: EXPERIENCE OVER TIME ── */
.bs-root .exp-sec {
  background: radial-gradient(ellipse at 52% 48%, #fff8f6 0%, #f5ede8 100%);
  position: relative;
}

.bs-root .exp-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 56px;
  align-items: start;
}

.bs-root .exp-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bs-root .exp-over {
  font-size: 13px;
  font-weight: 700;
  color: #D77357;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bs-root .exp-over-bar {
  display: inline-block;
  width: 22px;
  height: 3px;
  background: #D77357;
  border-radius: 3px;
}

.bs-root .exp-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1b1410;
  margin: 0;
  font-weight: 800;
}

.bs-root .exp-h2 .acc {
  color: #D77357;
}

.bs-root .exp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bs-root .exp-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  border-top: 4px solid transparent;
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bs-root .exp-card:hover {
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14), 0 0 0 5px rgba(215, 115, 87, 0.09);
  border-color: #D77357;
}

.bs-root .exp-card-ico {
  width: 44px;
  height: 44px;
  background: rgba(215, 115, 87, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D77357;
  flex-shrink: 0;
}

.bs-root .exp-card-h {
  font-size: 16px;
  font-weight: 700;
  color: #1b1410;
  margin: 0;
}

.bs-root .exp-card-p {
  font-size: 13px;
  line-height: 1.65;
  color: #3d2e28;
  margin: 0;
}

.bs-root .exp-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.bs-root .exp-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.bs-root .exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.bs-root .exp-img-wrap:hover img {
  transform: translateY(-5%) scale(1.04);
}

.bs-root .exp-quote {
  background: #D77357;
  border-radius: 18px;
  padding: 32px;
  color: #fff;
}

.bs-root .exp-quote-text {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 16px 0;
  font-style: italic;
}

.bs-root .exp-quote-name {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.85;
}

/* ── DIVIDER 2 ── */
.bs-root .div-band-b {
  height: 5px;
  background: linear-gradient(to left, transparent, #E9C7D2, transparent);
  width: 100%;
}

/* ── SECTION 3: NUMBERS / SCALE ── */
.bs-root .nums-sec {
  background: #1b1410;
  position: relative;
  overflow: hidden;
}

.bs-root .nums-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(215, 115, 87, 0.18) 1px, transparent 1px),
    radial-gradient(circle, rgba(233, 199, 210, 0.1) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(215, 115, 87, 0.09) 0.8px, transparent 0.8px);
  background-size: 38px 38px, 73px 73px, 19px 19px;
  background-position: 0 0, 18px 18px, 9px 9px;
}

.bs-root .nums-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 56px;
  position: relative;
  z-index: 1;
}

.bs-root .nums-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}

.bs-root .nums-over {
  font-size: 13px;
  font-weight: 700;
  color: #E9C7D2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.bs-root .nums-over-bar {
  display: inline-block;
  width: 22px;
  height: 3px;
  background: #D77357;
  border-radius: 3px;
}

.bs-root .nums-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  font-weight: 800;
}

.bs-root .nums-h2 .acc {
  color: #D77357;
}

.bs-root .nums-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(233, 199, 210, 0.8);
  max-width: 380px;
  margin: 0;
}

.bs-root .nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.bs-root .num-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 115, 87, 0.2);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease-in-out;
}

.bs-root .num-item:hover {
  box-shadow: 0 0 0 3px rgba(215, 115, 87, 0.22), 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  border-color: #D77357;
}

.bs-root .num-val {
  font-size: 62px;
  line-height: 1.2;
  font-weight: 900;
  background: linear-gradient(to left, #E9C7D2, #D77357);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.bs-root .num-label {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
}

.bs-root .num-desc {
  font-size: 13px;
  color: rgba(233, 199, 210, 0.7);
  line-height: 1.65;
  margin: 0;
}

/* ── DIVIDER 3 ── */
.bs-root .div-band-c {
  height: 5px;
  background: linear-gradient(to left, #D77357, transparent);
  width: 100%;
}

/* ── SECTION 4: THE GAP ── */
.bs-root .gap-sec {
  background: #fff;
  position: relative;
}

.bs-root .gap-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 56px;
  align-items: start;
}

.bs-root .gap-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px;
}

.bs-root .gap-over {
  font-size: 13px;
  font-weight: 700;
  color: #D77357;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bs-root .gap-over-bar {
  display: inline-block;
  width: 22px;
  height: 3px;
  background: #D77357;
  border-radius: 3px;
}

.bs-root .gap-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1b1410;
  font-weight: 800;
  margin: 0;
}

.bs-root .gap-h2 .acc {
  color: #D77357;
}

.bs-root .gap-lede {
  font-size: 16px;
  line-height: 1.65;
  color: #3d2e28;
  margin: 0;
}

.bs-root .gap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D77357;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(215, 115, 87, 0.3);
  padding-bottom: 4px;
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), gap 0.4s ease-in-out;
  align-self: flex-start;
}

.bs-root .gap-link:hover {
  border-color: #D77357;
  gap: 14px;
}

.bs-root .gap-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bs-root .gap-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 18px;
  background: #fdf8f6;
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease-in-out;
}

.bs-root .gap-row:hover {
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08), 0 0 0 4px rgba(215, 115, 87, 0.08);
  background: #fff;
}

.bs-root .gap-row-num {
  font-size: 34px;
  font-weight: 900;
  color: #D77357;
  line-height: 1.2;
  min-width: 56px;
  opacity: 0.25;
}

.bs-root .gap-row-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs-root .gap-row-h {
  font-size: 16px;
  font-weight: 700;
  color: #1b1410;
  margin: 0;
  line-height: 1.45;
}

.bs-root .gap-row-p {
  font-size: 13px;
  line-height: 1.65;
  color: #3d2e28;
  margin: 0;
}

.bs-root .gap-row-p .kw {
  font-weight: 700;
  color: #D77357 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bs-root .tbl-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bs-root .tbl-h1 {
    font-size: 46px;
  }

  .bs-root .tbl-left {
    padding-right: 0;
  }

  .bs-root .tbl-img-wrap {
    max-width: 100%;
    aspect-ratio: 16/9;
  }

  .bs-root .tbl-shape-a {
    display: none;
  }

  .bs-root .exp-inner {
    grid-template-columns: 1fr;
    padding: 56px 32px;
  }

  .bs-root .exp-aside {
    display: none;
  }

  .bs-root .exp-cards {
    grid-template-columns: 1fr 1fr;
  }

  .bs-root .nums-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bs-root .nums-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .bs-root .nums-h2 {
    font-size: 34px;
  }

  .bs-root .gap-inner {
    grid-template-columns: 1fr;
    padding: 56px 32px;
  }

  .bs-root .gap-left {
    position: static;
  }

  .bs-root .gap-h2 {
    font-size: 34px;
  }

  .bs-root .tbl {
    padding: 56px 32px;
  }

  .bs-root .nums-inner {
    padding: 56px 32px;
  }
}

@media (max-width: 640px) {
  .bs-root .tbl {
    padding: 56px 16px;
  }

  .bs-root .tbl-h1 {
    font-size: 34px;
  }

  .bs-root .exp-inner {
    padding: 56px 16px;
  }

  .bs-root .exp-cards {
    grid-template-columns: 1fr;
  }

  .bs-root .exp-h2 {
    font-size: 34px;
  }

  .bs-root .nums-inner {
    padding: 56px 16px;
  }

  .bs-root .nums-grid {
    grid-template-columns: 1fr;
  }

  .bs-root .nums-h2 {
    font-size: 34px;
  }

  .bs-root .num-val {
    font-size: 46px;
  }

  .bs-root .gap-inner {
    padding: 56px 16px;
  }

  .bs-root .gap-h2 {
    font-size: 34px;
  }

  .bs-root .gap-row {
    flex-direction: column;
    gap: 16px;
  }

  .bs-root .tbl-btns {
    flex-direction: column;
  }
}

.abt-pg {
  background: #fff;
  overflow-x: clip;
  position: relative;
}

.abt-pg .fade-seq>* {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.abt-pg .fade-seq>*:nth-child(1) {
  animation-delay: 0.1s;
}

.abt-pg .fade-seq>*:nth-child(2) {
  animation-delay: 0.25s;
}

.abt-pg .fade-seq>*:nth-child(3) {
  animation-delay: 0.4s;
}

.abt-pg .fade-seq>*:nth-child(4) {
  animation-delay: 0.55s;
}

.abt-pg .fade-seq>*:nth-child(5) {
  animation-delay: 0.7s;
}

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

.abt-pg ::selection {
  background: #2a1a14;
  color: #fff;
}

.abt-pg a {
  color: #D77357;
  text-decoration: none;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg a:hover {
  color: #b85a3e;
}

.abt-pg .over-lbl {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D77357;
  margin-bottom: 8px;
}

.abt-pg .pg-max {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 640px) {
  .abt-pg .pg-max {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ─── SECTION 1: TITLE BLOCK ─── */
.abt-pg .ttl-blk {
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
  position: relative;
}

.abt-pg .ttl-blk::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to left, #E9C7D2, transparent);
}

.abt-pg .ttl-img-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 32px;
}

.abt-pg .ttl-img-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed #D77357;
  border-radius: 18px;
  opacity: 0.5;
  pointer-events: none;
}

.abt-pg .ttl-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  filter: contrast(1.04) saturate(0.96);
}

.abt-pg .ttl-h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #1e1410;
  margin: 0 0 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.abt-pg .ttl-h1 em {
  font-style: normal;
  color: #D77357;
  font-weight: 700;
}

.abt-pg .ttl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.45;
  color: #D77357;
  border-bottom: 1px solid rgba(215, 115, 87, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .ttl-link:hover {
  color: #b85a3e;
  border-color: #b85a3e;
}

@media (max-width: 1024px) {
  .abt-pg .ttl-h1 {
    font-size: 46px;
  }
}

@media (max-width: 640px) {
  .abt-pg .ttl-h1 {
    font-size: 34px;
  }

  .abt-pg .ttl-img {
    width: 160px;
    height: 160px;
  }
}

/* ─── SECTION 2: STORY / CHECKERBOARD ─── */
.abt-pg .story-sec {
  background: linear-gradient(to left, #E9C7D2 0%, transparent 60%);
  padding-top: 96px;
  padding-bottom: 96px;
}

.abt-pg .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.abt-pg .story-txt .over-lbl {
  margin-bottom: 8px;
}

.abt-pg .story-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1e1410;
  margin: 0 0 16px;
}

.abt-pg .story-h2 strong {
  color: #D77357;
}

.abt-pg .story-body {
  font-size: 16px;
  line-height: 1.65;
  color: #3a2820;
  margin: 0 0 16px;
}

.abt-pg .story-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
}

.abt-pg .story-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .story-img-wrap:hover .story-img {
  transform: scale(1.03);
}

.abt-pg .story-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.45;
  color: #1e1410;
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
  pointer-events: none;
}

.abt-pg .story-badge strong {
  color: #D77357;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .abt-pg .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-pg .story-h2 {
    font-size: 34px;
  }

  .abt-pg .story-img {
    height: 280px;
  }
}

/* ─── SECTION 3: PROCESS FLOW ─── */
.abt-pg .proc-sec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.abt-pg .proc-hd {
  text-align: center;
  margin-bottom: 56px;
}

.abt-pg .proc-h3 {
  font-size: 34px;
  line-height: 1.2;
  color: #1e1410;
  margin: 0;
}

.abt-pg .proc-flow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.abt-pg .proc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.abt-pg .proc-step:nth-child(1) {
  animation-delay: 0.15s;
}

.abt-pg .proc-step:nth-child(2) {
  animation-delay: 0.3s;
}

.abt-pg .proc-step:nth-child(3) {
  animation-delay: 0.45s;
}

.abt-pg .proc-step:nth-child(4) {
  animation-delay: 0.6s;
}

.abt-pg .proc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, #D77357, #E9C7D2);
  z-index: 1;
}

.abt-pg .proc-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(to left, #E9C7D2, rgba(233, 199, 210, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .proc-step:hover .proc-icon-ring {
  background: linear-gradient(to left, #D77357, #E9C7D2);
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
}

.abt-pg .proc-icon-ring svg {
  width: 26px;
  height: 26px;
  color: #D77357;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .proc-step:hover .proc-icon-ring svg {
  color: #fff;
}

.abt-pg .proc-step-lbl {
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.abt-pg .proc-step-name {
  font-size: 16px;
  line-height: 1.45;
  color: #1e1410;
  font-weight: 600;
  margin-bottom: 8px;
}

.abt-pg .proc-step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #5a3e35;
}

@media (max-width: 1024px) {
  .abt-pg .proc-flow {
    flex-direction: column;
    gap: 32px;
  }

  .abt-pg .proc-step:not(:last-child)::after {
    display: none;
  }

  .abt-pg .proc-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  .abt-pg .proc-icon-ring {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ─── SECTION 4: TEAM / MATTE BG ─── */
.abt-pg .team-sec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #f5ede9;
  position: relative;
}

.abt-pg .team-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to left, #E9C7D2, transparent);
  pointer-events: none;
}

.abt-pg .team-hd {
  margin-bottom: 56px;
  max-width: 560px;
}

.abt-pg .team-h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #1e1410;
  margin: 0 0 16px;
}

.abt-pg .team-h2 em {
  font-style: normal;
  color: #D77357;
}

.abt-pg .team-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #3a2820;
  margin: 0;
}

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

.abt-pg .team-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.abt-pg .team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to left, #E9C7D2, transparent);
  border-radius: 18px 18px 0 0;
  transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-pg .team-card:hover {
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  transform: translateY(-4px);
}

.abt-pg .team-card:hover::before {
  background: linear-gradient(to left, #D77357, #E9C7D2);
}

.abt-pg .team-av {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(to left, #E9C7D2, rgba(233, 199, 210, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.abt-pg .team-av svg {
  width: 32px;
  height: 32px;
  color: #D77357;
}

.abt-pg .team-name {
  font-size: 16px;
  line-height: 1.45;
  color: #1e1410;
  font-weight: 700;
  margin: 0 0 8px;
}

.abt-pg .team-role {
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.abt-pg .team-bio {
  font-size: 13px;
  line-height: 1.65;
  color: #5a3e35;
  margin: 0;
}

.abt-pg .team-stat-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(215, 115, 87, 0.18);
}

.abt-pg .team-stat {
  flex: 1;
  text-align: center;
}

.abt-pg .team-stat-num {
  font-size: 46px;
  line-height: 1.2;
  color: #D77357;
  font-weight: 700;
  display: block;
}

.abt-pg .team-stat-desc {
  font-size: 13px;
  line-height: 1.45;
  color: #5a3e35;
}

@media (max-width: 1024px) {
  .abt-pg .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-pg .team-h2 {
    font-size: 34px;
  }

  .abt-pg .team-stat-row {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .abt-pg .team-grid {
    grid-template-columns: 1fr;
  }

  .abt-pg .team-stat-row {
    flex-direction: column;
    gap: 32px;
  }

  .abt-pg .proc-h3 {
    font-size: 34px;
  }
}

.success-pg {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #fff;
}

.success-pg .success-wrap {
  max-width: 560px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.success-pg .success-icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(to left, #E9C7D2, rgba(233, 199, 210, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08), 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
  flex-shrink: 0;
}

.success-pg .success-icon-ring svg {
  width: 40px;
  height: 40px;
  stroke: #D77357;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-pg .success-overline {
  font-size: 13px;
  line-height: 1.45;
  color: #D77357;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.success-pg .success-heading {
  font-size: 46px;
  line-height: 1.2;
  color: #1b1212;
  font-weight: 700;
  margin: 0;
}

.success-pg .success-heading span {
  color: #D77357;
}

.success-pg .success-body {
  font-size: 16px;
  line-height: 1.65;
  color: #4a3c3c;
  margin: 0;
  max-width: 440px;
}

.success-pg .success-divider {
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(to left, #E9C7D2, #D77357);
}

.success-pg .success-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.success-pg .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #D77357;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  border: 2px solid #D77357;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  box-shadow: 1px 6px 14px 0 rgba(215, 115, 87, 0.08);
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-pg .btn-primary::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.success-pg .btn-primary:hover {
  background: #c4634a;
  border-color: #c4634a;
  box-shadow: 1px 12px 44px 0 rgba(215, 115, 87, 0.14);
}

.success-pg .btn-primary:hover::after {
  border-color: rgba(255, 255, 255, 0.38);
}

.success-pg .btn-primary:focus-visible {
  outline: 3px solid #D77357;
  outline-offset: 3px;
}

.success-pg .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: #4a3c3c;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  border: 2px solid #d4c4c4;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s ease-in-out, box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-pg .btn-ghost::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 7px;
  border: 1.5px solid transparent;
  transition: border-color 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.success-pg .btn-ghost:hover {
  border-color: #D77357;
  color: #D77357;
  box-shadow: 1px 3px 6px 0 rgba(215, 115, 87, 0.07);
}

.success-pg .btn-ghost:hover::after {
  border-color: rgba(215, 115, 87, 0.18);
}

.success-pg .btn-ghost:focus-visible {
  outline: 3px solid #D77357;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .success-pg {
    padding: 56px 16px;
  }

  .success-pg .success-heading {
    font-size: 34px;
  }

  .success-pg .success-actions {
    flex-direction: column;
    width: 100%;
  }

  .success-pg .btn-primary,
  .success-pg .btn-ghost {
    justify-content: center;
    width: 100%;
  }
}