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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Oxygen', sans-serif;
}

.siteheader {
  position: relative;
  border-bottom: 2px solid #AF4A3B;
  background: #F3F2F0;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  overflow: visible;
}

.siteheader-frame {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

.siteheader-top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
  min-height: 96px;
  border-bottom: 1px solid rgba(175, 74, 59, 0.15);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  flex-shrink: 0;
}

.brand-logobox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: inset 0 1px 2px 0 rgba(175, 74, 59, 0.12), 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  border: 1px solid rgba(175, 74, 59, 0.18);
  background: #fff;
  overflow: hidden;
}

.brand-logobox img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #2a1a17;
  text-decoration: none;
}

.brand-name:hover {
  color: #AF4A3B;
  transition: color 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-tagline {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #5c3a32;
  letter-spacing: 0.01em;
}

.brand-accent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.brand-accent-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #AF4A3B, #DABEAB);
  border-radius: 0px;
}

.brand-accent-dot {
  width: 6px;
  height: 6px;
  border-radius: 0px;
  background: #AF4A3B;
}

.header-nav-block {
  display: flex;
  align-items: center;
  padding: 24px 0;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.primary-menu li {
  display: block;
}

.primary-menu a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #2a1a17;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  min-height: 44px;
  transition: color 0.65s cubic-bezier(0.4, 0, 0.2, 1), background 0.65s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-menu a:hover {
  color: #AF4A3B;
  background: #fff;
  border-color: rgba(175, 74, 59, 0.2);
  box-shadow: inset 0 2px 4px 0 rgba(175, 74, 59, 0.08);
}

.primary-menu a:focus {
  outline: none;
  color: #AF4A3B;
  background: #fff;
  border-color: #AF4A3B;
}

.primary-menu a:focus::before {
  content: "aktywny";
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 11px;
  font-family: 'Oxygen', sans-serif;
  color: #AF4A3B;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
}

.primary-menu li {
  position: relative;
}

.primary-menu .active-page a {
  color: #AF4A3B;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 60%, rgba(218, 190, 171, 0.2));
  border-color: rgba(175, 74, 59, 0.25);
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
}

.siteheader-strip {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 8px 0;
}

.contact-strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #5c3a32;
  text-decoration: none;
  transition: color 0.7s ease-in-out;
}

.contact-strip-item:hover {
  color: #AF4A3B;
}

.contact-strip-item .codicon {
  font-size: 15px;
  color: #AF4A3B;
}

@media (max-width: 900px) {
  .siteheader-frame {
    padding: 0 24px;
  }

  .siteheader-top {
    gap: 24px;
    flex-wrap: wrap;
    min-height: auto;
  }

  .header-nav-block {
    width: 100%;
    padding: 0 0 16px 0;
  }

  .primary-menu {
    justify-content: flex-start;
  }

  .contact-strip {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .siteheader-frame {
    padding: 0 12px;
  }

  .brand-tagline {
    display: none;
  }

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

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

  .primary-menu a {
    padding: 12px 12px;
    font-size: 15px;
  }
}

.sitefooter {
  background: linear-gradient(160deg, #2a1a17 0%, #3d2219 50%, #AF4A3B 100%);
  color: #F3F2F0;
  position: relative;
  overflow: visible;
}

.sitefooter-upper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(218, 190, 171, 0.2);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logobox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(218, 190, 171, 0.3);
  box-shadow: inset 0 1px 2px 0 rgba(175, 74, 59, 0.15), 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-logobox img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-brand-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #F3F2F0;
  letter-spacing: -0.02em;
}

.footer-brand-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 242, 240, 0.7);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.footer-contact-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(243, 242, 240, 0.8);
  text-decoration: none;
  transition: color 0.75s ease-in-out;
}

.footer-contact-entry:hover {
  color: #DABEAB;
}

.footer-contact-entry .codicon {
  font-size: 15px;
  color: #DABEAB;
  flex-shrink: 0;
}

.footer-column-heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #DABEAB;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(218, 190, 171, 0.2);
}

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

.footer-linklist a {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(243, 242, 240, 0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}

.footer-linklist a:hover {
  color: #DABEAB;
}

.footer-linklist a:focus {
  outline: none;
  color: #DABEAB;
}

.footer-linklist a:focus::before {
  content: "aktywny";
  font-size: 11px;
  font-family: 'Oxygen', sans-serif;
  color: #DABEAB;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.footer-address-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 242, 240, 0.7);
  font-style: normal;
}

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-bottom img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-copyright {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(243, 242, 240, 0.55);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(243, 242, 240, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.8s ease-in-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-legal-links a:hover {
  color: #DABEAB;
}

@media (max-width: 1200px) {
  .sitefooter-upper {
    grid-template-columns: 1fr 1fr;
    padding: 48px 48px 48px;
  }
}

@media (max-width: 900px) {
  .sitefooter-upper {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px;
    gap: 24px;
  }

  .footer-bottom {
    padding: 24px 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .sitefooter-upper {
    grid-template-columns: 1fr;
    padding: 48px 12px;
  }

  .footer-bottom {
    padding: 24px 12px;
  }
}

.cookiebar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: #2a1a17;
  border-radius: 12px;
  border: 1px solid rgba(218, 190, 171, 0.25);
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
  padding: 24px;
  font-family: 'Oxygen', sans-serif;
}

.cookiebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(175, 74, 59, 0.15);
  margin-bottom: 12px;
}

.cookiebar-icon .codicon {
  font-size: 20px;
  color: #DABEAB;
}

.cookiebar-message {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 242, 240, 0.85);
  margin-bottom: 16px;
}

.cookiebar-message a {
  color: #DABEAB;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookiebar-settings {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(218, 190, 171, 0.1);
}

.cookiebar-settings.open {
  display: flex;
}

.cookiebar-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookiebar-toggle-label {
  font-size: 15px;
  color: rgba(243, 242, 240, 0.8);
  line-height: 1.4;
}

.cookiebar-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookiebar-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookiebar-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(218, 190, 171, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookiebar-toggle-switch input:checked+.cookiebar-toggle-track {
  background: #AF4A3B;
}

.cookiebar-toggle-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #F3F2F0;
  border-radius: 12px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookiebar-toggle-switch input:checked+.cookiebar-toggle-track::after {
  transform: translateX(18px);
}

.cookiebar-always-on {
  font-size: 15px;
  color: rgba(218, 190, 171, 0.6);
  font-style: italic;
}

.cookiebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookiebar-btn-accept {
  display: block;
  width: 100%;
  padding: 12px 24px;
  font-size: 15px;
  font-family: 'Oxygen', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #F3F2F0;
  background: linear-gradient(135deg, #AF4A3B, #8a3a2e);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
}

.cookiebar-btn-accept:hover {
  box-shadow: inset 0 2px 4px 0 rgba(175, 74, 59, 0.2);
}

.cookiebar-btn-accept:active {
  transform: scale(0.97);
}

.cookiebar-secondary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cookiebar-btn-reject,
.cookiebar-btn-settings {
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 15px;
  font-family: 'Oxygen', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  min-height: 44px;
  transition: color 0.75s ease-in-out;
}

.cookiebar-btn-reject {
  color: rgba(243, 242, 240, 0.7);
}

.cookiebar-btn-reject:hover {
  color: #DABEAB;
}

.cookiebar-btn-settings {
  color: rgba(218, 190, 171, 0.7);
}

.cookiebar-btn-settings:hover {
  color: #DABEAB;
}

.j-content-legal {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px;
}

.j-content-legal h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b1410;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid #DABEAB;
}

.j-content-legal h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #1b1410;
  margin-top: 96px;
  margin-bottom: 24px;
}

.j-content-legal h3 {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #2a1f1a;
  margin-top: 48px;
  margin-bottom: 12px;
}

.j-content-legal h4 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: #2a1f1a;
  margin-top: 48px;
  margin-bottom: 12px;
}

.j-content-legal h5 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #AF4A3B;
  margin-top: 24px;
  margin-bottom: 8px;
}

.j-content-legal h6 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #AF4A3B;
  margin-top: 24px;
  margin-bottom: 8px;
}

.j-content-legal p {
  font-size: 16px;
  line-height: 1.9;
  color: #2a1f1a;
  margin-bottom: 24px;
}

.j-content-legal ul,
.j-content-legal ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.j-content-legal ul {
  list-style: none;
  padding-left: 0;
}

.j-content-legal ul li {
  padding-left: 24px;
  position: relative;
}

.j-content-legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 0px;
  background-color: #AF4A3B;
  transform: rotate(45deg);
}

.j-content-legal ol {
  list-style: decimal;
}

.j-content-legal ol li {
  padding-left: 8px;
}

.j-content-legal ol li::marker {
  color: #AF4A3B;
  font-size: 15px;
}

.j-content-legal li {
  font-size: 16px;
  line-height: 1.9;
  color: #2a1f1a;
  margin-bottom: 8px;
}

.j-content-legal li:last-child {
  margin-bottom: 0;
}

.j-content-legal ul ul,
.j-content-legal ol ol,
.j-content-legal ul ol,
.j-content-legal ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.j-content-legal em,
.j-content-legal i {
  font-style: italic;
  color: #5c3a2e;
}

.j-content-legal hr {
  border: none;
  border-top: 1px solid #DABEAB;
  margin-top: 48px;
  margin-bottom: 48px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
}

@media (max-width: 900px) {
  .j-content-legal {
    padding: 48px 24px;
  }

  .j-content-legal h1 {
    font-size: 34px;
  }

  .j-content-legal h2 {
    font-size: 24px;
    margin-top: 48px;
  }

  .j-content-legal h3 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .j-content-legal {
    padding: 48px 12px;
  }

  .j-content-legal h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .j-content-legal h2 {
    font-size: 20px;
    margin-top: 48px;
  }

  .j-content-legal h3 {
    font-size: 16px;
  }

  .j-content-legal p,
  .j-content-legal li {
    font-size: 15px;
  }
}

.learningprogramdetail {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: hidden;
}

.learningprogramdetail .titleblock {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.learningprogramdetail .titleblock .imagecolumn {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 0 12px 12px 0;
  min-height: 520px;
}

.learningprogramdetail .titleblock .imagecolumn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.88) contrast(1.08);
}

.learningprogramdetail .titleblock .imagecolumn .blobdepth {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: rgba(175, 74, 59, 0.18);
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 1;
}

.learningprogramdetail .titleblock .imagecolumn .blobdepth2 {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: rgba(218, 190, 171, 0.22);
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  z-index: 1;
}

.learningprogramdetail .titleblock .textcolumn {
  flex: 0 0 50%;
  padding: 96px 48px 96px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, #AF4A3B08 0%, #F3F2F0 60%, #fff 100%);
  position: relative;
}

.learningprogramdetail .titleblock .textcolumn .overline {
  display: block;
  width: 32px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 4px;
}

.learningprogramdetail .titleblock .textcolumn .tagrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.learningprogramdetail .titleblock .textcolumn .tag {
  font-size: 15px;
  line-height: 1.4;
  color: #AF4A3B;
  background: rgba(175, 74, 59, 0.08);
  border-radius: 12px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.learningprogramdetail .titleblock .textcolumn .usertag {
  font-size: 15px;
  line-height: 1.4;
  color: #5a4a43;
  background: rgba(218, 190, 171, 0.22);
  border-radius: 12px;
  padding: 4px 12px;
}

.learningprogramdetail .titleblock .textcolumn .maintitle {
  font-size: 48px;
  line-height: 1.2;
  color: #1b1412;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

.learningprogramdetail .titleblock .textcolumn .maintitle .accentword {
  position: relative;
  display: inline;
  color: #AF4A3B;
}

.learningprogramdetail .titleblock .textcolumn .maintitle .accentword::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: #AF4A3B;
  border-radius: 0;
}

.learningprogramdetail .titleblock .textcolumn .metarow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.learningprogramdetail .titleblock .textcolumn .metaitem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  color: #5a4a43;
}

.learningprogramdetail .titleblock .textcolumn .metaitem svg {
  flex-shrink: 0;
}

.learningprogramdetail .titleblock .textcolumn .pricebox {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  max-width: 340px;
}

.learningprogramdetail .titleblock .textcolumn .pricebox .pricevalue {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b1412;
  letter-spacing: -0.01em;
}

.learningprogramdetail .titleblock .textcolumn .pricebox .pricevalue .integerpart {
  color: #1b1412;
}

.learningprogramdetail .titleblock .textcolumn .pricebox .pricevalue .fractionalpart {
  color: #AF4A3B;
  font-size: 24px;
}

.learningprogramdetail .titleblock .textcolumn .pricebox .pricenote {
  font-size: 15px;
  line-height: 1.4;
  color: #7a6660;
}

.learningprogramdetail .titleblock .textcolumn .enrollbtn {
  display: inline-block;
  padding: 12px 48px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, #AF4A3B 0%, #c9614f 60%, #DABEAB 100%);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
  align-self: flex-start;
}

.learningprogramdetail .titleblock .textcolumn .enrollbtn:hover {
  box-shadow: inset 0 2px 6px 0 rgba(175, 74, 59, 0.18), 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transform: translateY(1px);
}

.learningprogramdetail .titleblock .textcolumn .enrollbtn:active {
  transform: scale(0.97);
}

.learningprogramdetail .titleblock .textcolumn .likesrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  color: #7a6660;
}

.learningprogramdetail .titleblock .textcolumn .likesrow svg {
  color: #AF4A3B;
}

.learningprogramdetail .detailblock {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  padding: 96px 48px;
  background: linear-gradient(100deg, rgba(218, 190, 171, 0.18) 0%, #F3F2F0 55%, #fff 100%);
  position: relative;
}

.learningprogramdetail .detailblock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #AF4A3B 0%, #DABEAB 60%, transparent 100%);
}

.learningprogramdetail .detailblock .diagonalline {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.learningprogramdetail .detailblock .diagonalline svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.learningprogramdetail .detailblock .leftcolumn {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.learningprogramdetail .detailblock .rightcolumn {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.learningprogramdetail .detailblock .overlineaccent {
  display: block;
  width: 32px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 4px;
}

.learningprogramdetail .detailblock .sectionlabel {
  font-size: 15px;
  line-height: 1.4;
  color: #AF4A3B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.learningprogramdetail .detailblock .descriptionarea {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.learningprogramdetail .detailblock .descriptionarea p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a1f1c;
  margin: 0;
  text-indent: 1.4em;
}

.learningprogramdetail .detailblock .descriptionarea h2 {
  font-size: 24px;
  line-height: 1.4;
  color: #1b1412;
  font-weight: 700;
  margin: 24px 0 8px;
  text-indent: 0;
}

.learningprogramdetail .detailblock .descriptionarea em {
  color: #AF4A3B;
  font-style: normal;
}

.learningprogramdetail .detailblock .descriptionarea ul {
  margin: 8px 0 0 1.4em;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.learningprogramdetail .detailblock .descriptionarea ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #2a1f1c;
  padding-left: 12px;
  position: relative;
}

.learningprogramdetail .detailblock .descriptionarea ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #AF4A3B;
}

.learningprogramdetail .detailblock .descriptionarea blockquote {
  margin: 24px 0;
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(218, 190, 171, 0.18);
  font-size: 16px;
  line-height: 1.6;
  color: #3a2a25;
  font-style: italic;
}

.learningprogramdetail .detailblock .programarea {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.learningprogramdetail .detailblock .programarea h2 {
  font-size: 24px;
  line-height: 1.4;
  color: #1b1412;
  font-weight: 700;
  margin: 0 0 24px;
}

.learningprogramdetail .detailblock .programarea h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #1b1412;
  font-weight: 600;
  margin: 0 0 8px;
}

.learningprogramdetail .detailblock .programarea p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a1f1c;
  margin: 0;
  text-indent: 1.4em;
}

.learningprogramdetail .detailblock .programarea strong {
  color: #AF4A3B;
  font-weight: 700;
}

.learningprogramdetail .detailblock .programarea em {
  font-style: italic;
  color: #5a4a43;
}

.learningprogramdetail .detailblock .programarea ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.learningprogramdetail .detailblock .programarea ol li {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
  counter-increment: steps;
  font-size: 16px;
  line-height: 1.6;
  color: #2a1f1c;
}

.learningprogramdetail .detailblock .programarea ol li::before {
  content: counter(steps, decimal-leading-zero);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #AF4A3B;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.learningprogramdetail .detailblock .programarea ol li::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 52px;
  width: 2px;
  bottom: 0;
  background: rgba(175, 74, 59, 0.18);
}

.learningprogramdetail .detailblock .programarea ol li:last-child::after {
  display: none;
}

.learningprogramdetail .detailblock .programarea dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.learningprogramdetail .detailblock .programarea dt {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #1b1412;
}

.learningprogramdetail .detailblock .programarea dd {
  font-size: 16px;
  line-height: 1.6;
  color: #5a4a43;
  margin: 0 0 8px 0;
  padding-left: 12px;
}

.learningprogramdetail .detailblock .statsrow {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.learningprogramdetail .detailblock .statcard {
  flex: 1 1 100px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  animation: shadowpulse 3.2s ease-in-out infinite;
}

@keyframes shadowpulse {
  0% {
    box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  }

  50% {
    box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
  }

  100% {
    box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  }
}

.learningprogramdetail .detailblock .statcard .statvalue {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1412;
}

.learningprogramdetail .detailblock .statcard .statvalue .statint {
  color: #1b1412;
}

.learningprogramdetail .detailblock .statcard .statvalue .statfrac {
  color: #AF4A3B;
  font-size: 24px;
}

.learningprogramdetail .detailblock .statcard .statlabel {
  font-size: 15px;
  line-height: 1.4;
  color: #7a6660;
  text-align: center;
}

.learningprogramdetail .detailblock .indicatorbox {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learningprogramdetail .detailblock .indicatorbox .indicatortitle {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #1b1412;
}

.learningprogramdetail .detailblock .indicatorbox .progressrow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learningprogramdetail .detailblock .indicatorbox .progressitem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.learningprogramdetail .detailblock .indicatorbox .progressitem .progresslabel {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.4;
  color: #3a2a25;
}

.learningprogramdetail .detailblock .indicatorbox .progressitem .progressbar {
  height: 8px;
  background: rgba(218, 190, 171, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.learningprogramdetail .detailblock .indicatorbox .progressitem .progressfill {
  height: 100%;
  background: linear-gradient(90deg, #AF4A3B, #DABEAB);
  border-radius: 12px;
  transition: width 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.learningprogramdetail .detailblock .ratingbox {
  background: linear-gradient(120deg, rgba(175, 74, 59, 0.07) 0%, rgba(218, 190, 171, 0.15) 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.learningprogramdetail .detailblock .ratingbox .ratingtitle {
  font-size: 15px;
  line-height: 1.4;
  color: #7a6660;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.learningprogramdetail .detailblock .ratingbox .ratingvalue {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1412;
  letter-spacing: -0.02em;
}

.learningprogramdetail .detailblock .ratingbox .ratingcount {
  font-size: 15px;
  line-height: 1.4;
  color: #7a6660;
}

.learningprogramdetail .detailblock .ratingbox .stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.learningprogramdetail .detailblock .ratingbox .stars svg {
  fill: #AF4A3B;
}

.learningprogramdetail .detailblock .ctabox {
  background: #AF4A3B;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learningprogramdetail .detailblock .ctabox .ctaheading {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
}

.learningprogramdetail .detailblock .ctabox .ctadesc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.learningprogramdetail .detailblock .ctabox .ctabtn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #AF4A3B;
  background: #fff;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
  align-self: flex-start;
}

.learningprogramdetail .detailblock .ctabox .ctabtn:hover {
  box-shadow: inset 0 2px 4px 0 rgba(175, 74, 59, 0.15);
  transform: translateY(1px);
}

.learningprogramdetail .detailblock .ctabox .ctabtn:active {
  transform: scale(0.97);
}

@keyframes cascadeappear {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.learningprogramdetail .titleblock .textcolumn .tagrow,
.learningprogramdetail .titleblock .textcolumn .maintitle,
.learningprogramdetail .titleblock .textcolumn .metarow,
.learningprogramdetail .titleblock .textcolumn .pricebox,
.learningprogramdetail .titleblock .textcolumn .enrollbtn,
.learningprogramdetail .titleblock .textcolumn .likesrow {
  opacity: 0;
  animation: cascadeappear 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.learningprogramdetail .titleblock .textcolumn .tagrow {
  animation-delay: 0.05s;
}

.learningprogramdetail .titleblock .textcolumn .maintitle {
  animation-delay: 0.18s;
}

.learningprogramdetail .titleblock .textcolumn .metarow {
  animation-delay: 0.30s;
}

.learningprogramdetail .titleblock .textcolumn .pricebox {
  animation-delay: 0.42s;
}

.learningprogramdetail .titleblock .textcolumn .enrollbtn {
  animation-delay: 0.54s;
}

.learningprogramdetail .titleblock .textcolumn .likesrow {
  animation-delay: 0.65s;
}

.learningprogramdetail .detailblock .statcard:nth-child(1) {
  animation-delay: 0.1s;
}

.learningprogramdetail .detailblock .statcard:nth-child(2) {
  animation-delay: 0.25s;
}

.learningprogramdetail .detailblock .statcard:nth-child(3) {
  animation-delay: 0.4s;
}

@media (max-width: 900px) {
  .learningprogramdetail .titleblock {
    flex-direction: column;
  }

  .learningprogramdetail .titleblock .imagecolumn {
    flex: 0 0 auto;
    width: 100%;
    min-height: 280px;
    border-radius: 0 0 12px 12px;
    display: none;
  }

  .learningprogramdetail .titleblock .textcolumn {
    flex: 1;
    padding: 48px 24px;
  }

  .learningprogramdetail .detailblock {
    flex-direction: column;
    padding: 48px 24px;
  }

  .learningprogramdetail .detailblock .leftcolumn {
    flex: 1;
  }

  .learningprogramdetail .detailblock .rightcolumn {
    flex: 1;
    width: 100%;
  }

  .learningprogramdetail .titleblock .textcolumn .maintitle {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .learningprogramdetail .titleblock .textcolumn {
    padding: 24px 12px;
  }

  .learningprogramdetail .detailblock {
    padding: 24px 12px;
  }

  .learningprogramdetail .titleblock .textcolumn .maintitle {
    font-size: 24px;
  }

  .learningprogramdetail .detailblock .statsrow {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .learningprogramdetail .titleblock .imagecolumn {
    min-height: 600px;
  }
}

.learningtips {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
}

.learningtips .tipshero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 96px 48px 48px 48px;
  gap: 48px;
  position: relative;
  background: #F3F2F0;
}

.learningtips .tipshero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(175, 74, 59, 0.03) 3px,
      rgba(175, 74, 59, 0.03) 4px);
  pointer-events: none;
}

.learningtips .tipshero .imagecol {
  flex: 0 0 320px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.learningtips .tipshero .imagecol img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.learningtips .tipshero .imagecol:hover img {
  transform: scale(1.04);
}

.learningtips .tipshero .imagecol .scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(175, 74, 59, 0.06) 2px,
      rgba(175, 74, 59, 0.06) 4px);
  pointer-events: none;
}

.learningtips .tipshero .textcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 24px;
  position: relative;
}

.learningtips .tipshero .bgnum {
  position: absolute;
  top: -24px;
  right: 0;
  font-size: 200px;
  font-weight: 900;
  color: rgba(218, 190, 171, 0.18);
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}

.learningtips .tipshero .overline {
  display: block;
  width: 48px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 12px;
}

.learningtips .tipshero h1 {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #2a2320;
  margin: 0 0 24px 0;
}

.learningtips .tipshero h1 .gradword {
  background: linear-gradient(135deg, #AF4A3B 0%, #DABEAB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.learningtips .tipshero .lead {
  font-size: 20px;
  line-height: 1.6;
  color: #3d2e28;
  max-width: 520px;
  margin: 0;
  text-indent: 0;
}

.learningtips .tipshero .doubleborder {
  position: absolute;
  bottom: 24px;
  right: 48px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(175, 74, 59, 0.15);
  border-radius: 12px;
  pointer-events: none;
}

.learningtips .tipshero .doubleborder::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(218, 190, 171, 0.3);
  border-radius: 8px;
}

.learningtips .dividerasym {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 48px;
  gap: 8px;
}

.learningtips .dividerasym .longline {
  flex: 3;
  height: 1px;
  background: linear-gradient(90deg, #AF4A3B 0%, rgba(218, 190, 171, 0.3) 100%);
}

.learningtips .dividerasym .shortline {
  flex: 1;
  height: 1px;
  background: rgba(218, 190, 171, 0.3);
}

.learningtips .tipslist {
  padding: 96px 48px;
  background: #fff;
  position: relative;
}

@keyframes colorwave {
  0% {
    background-position: 0% 50%;
  }

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

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

.learningtips .tipslist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(243, 242, 240, 0.6), rgba(218, 190, 171, 0.08), rgba(243, 242, 240, 0.6));
  background-size: 400% 400%;
  animation: colorwave 12s ease-in-out infinite;
  pointer-events: none;
}

.learningtips .tipslist .listheader {
  max-width: 640px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.learningtips .tipslist .listheader .overline {
  display: block;
  width: 48px;
  height: 2px;
  background: #AF4A3B;
  margin: 0 auto 12px auto;
}

.learningtips .tipslist .listheader h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #2a2320;
  margin: 0 0 12px 0;
}

.learningtips .tipslist .listheader .accentword {
  text-decoration: underline;
  text-decoration-color: #AF4A3B;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.learningtips .tipslist .listheader p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3830;
  margin: 0;
}

.learningtips .tipslist .stepgrid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.learningtips .tipslist .stepgrid::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(180deg, #AF4A3B 0%, rgba(218, 190, 171, 0.2) 100%);
  pointer-events: none;
}

.learningtips .tipslist .stepitem {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 24px 0;
  align-items: flex-start;
  position: relative;
}

.learningtips .tipslist .stepitem .stepnum {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #F3F2F0;
  border: 1px solid rgba(175, 74, 59, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #AF4A3B;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transition: background 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.learningtips .tipslist .stepitem:hover .stepnum {
  background: #AF4A3B;
  color: #fff;
  box-shadow: inset 0 2px 4px rgba(175, 74, 59, 0.3), 0 7px 14px 0 rgba(175, 74, 59, 0.08);
}

.learningtips .tipslist .stepitem .stepbody {
  flex: 1;
  padding-top: 8px;
}

.learningtips .tipslist .stepitem .stepbody h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #2a2320;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.learningtips .tipslist .stepitem .stepbody p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3830;
  margin: 0;
  text-indent: 1.2em;
}

.learningtips .tipslist .stepitem .stepbody p+p {
  text-indent: 1.2em;
}

.learningtips .divider2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 48px;
  gap: 8px;
}

.learningtips .divider2 .shortline {
  flex: 1;
  height: 1px;
  background: rgba(218, 190, 171, 0.3);
}

.learningtips .divider2 .longline {
  flex: 3;
  height: 1px;
  background: linear-gradient(90deg, rgba(218, 190, 171, 0.3) 0%, #AF4A3B 100%);
}

.learningtips .practicalblock {
  padding: 96px 48px;
  background: #F3F2F0;
  position: relative;
}

.learningtips .practicalblock::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(175, 74, 59, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.learningtips .practicalblock .practicalinner {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  position: relative;
}

.learningtips .practicalblock .practicaltext {
  flex: 1;
}

.learningtips .practicalblock .practicaltext .overline {
  display: block;
  width: 48px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 12px;
}

.learningtips .practicalblock .practicaltext h3 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #2a2320;
  margin: 0 0 24px 0;
}

.learningtips .practicalblock .practicaltext p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3830;
  margin: 0;
  text-indent: 1.2em;
}

.learningtips .practicalblock .practicaltext p+p {
  text-indent: 1.2em;
}

.learningtips .practicalblock .practicalcards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learningtips .practicalblock .tipcard {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.learningtips .practicalblock .tipcard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to top, rgba(218, 190, 171, 0.18), transparent);
  pointer-events: none;
}

.learningtips .practicalblock .tipcard:hover {
  box-shadow: inset 0 1px 2px rgba(175, 74, 59, 0.08), 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transform: translateY(-2px);
}

.learningtips .practicalblock .tipcard .cardicon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learningtips .practicalblock .tipcard .cardicon svg {
  width: 28px;
  height: 28px;
}

.learningtips .practicalblock .tipcard h5 {
  font-size: 16px;
  line-height: 1.4;
  color: #2a2320;
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
}

.learningtips .practicalblock .tipcard p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3830;
  margin: 0;
}

.learningtips .practicalblock .imagecol2 {
  flex: 0 0 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
  align-self: stretch;
  min-height: 360px;
}

.learningtips .practicalblock .imagecol2 img {
  width: 280px;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.learningtips .practicalblock .imagecol2:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .learningtips .tipshero {
    flex-direction: column;
    padding: 48px 24px 24px 24px;
  }

  .learningtips .tipshero .imagecol {
    display: none;
  }

  .learningtips .tipshero h1 {
    font-size: 48px;
  }

  .learningtips .tipshero .bgnum {
    font-size: 120px;
  }

  .learningtips .tipslist {
    padding: 48px 24px;
  }

  .learningtips .practicalblock {
    padding: 48px 24px;
  }

  .learningtips .practicalblock .practicalinner {
    flex-direction: column;
  }

  .learningtips .practicalblock .imagecol2 {
    display: none;
  }

  .learningtips .dividerasym,
  .learningtips .divider2 {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .learningtips .tipshero h1 {
    font-size: 34px;
  }

  .learningtips .tipslist .listheader h2 {
    font-size: 34px;
  }

  .learningtips .practicalblock .practicaltext h3 {
    font-size: 24px;
  }

  .learningtips .tipslist .stepgrid::before {
    display: none;
  }

  .learningtips .tipshero {
    padding: 48px 12px 24px 12px;
  }

  .learningtips .tipslist {
    padding: 48px 12px;
  }

  .learningtips .practicalblock {
    padding: 48px 12px;
  }
}

@media (min-width: 1200px) {
  .learningtips .tipshero {
    padding: 96px 96px 48px 96px;
  }

  .learningtips .tipslist {
    padding: 96px 96px;
  }

  .learningtips .practicalblock {
    padding: 96px 96px;
  }

  .learningtips .dividerasym,
  .learningtips .divider2 {
    padding: 0 96px;
  }
}

.aboutus {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
}

.aboutus .overline {
  display: block;
  width: 32px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 12px;
}

.aboutus .accent-word {
  text-decoration: underline;
  text-decoration-color: #AF4A3B;
  text-underline-offset: 4px;
}

.aboutus .panel-identity {
  background: linear-gradient(160deg, #2a1a17 0%, #3d2520 60%, #5a3028 100%);
  padding: 96px 48px 48px;
  position: relative;
}

.aboutus .panel-identity .blob-a {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 400px;
  height: 300px;
  background: rgba(175, 74, 59, 0.18);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.aboutus .panel-identity .blob-b {
  position: absolute;
  bottom: -40px;
  right: 10%;
  width: 300px;
  height: 200px;
  background: rgba(218, 190, 171, 0.12);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.aboutus .identity-grid {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.aboutus .identity-left {
  flex: 1 1 0;
  min-width: 0;
}

.aboutus .identity-right {
  flex: 0 0 420px;
  max-width: 420px;
}

.aboutus .identity-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #DABEAB;
  margin-bottom: 24px;
  display: block;
}

.aboutus .identity-heading {
  font-size: 64px;
  line-height: 1.2;
  color: #F3F2F0;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.aboutus .identity-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #c8b8b0;
  margin: 0 0 48px;
  max-width: 520px;
}

.aboutus .identity-actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.aboutus .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #AF4A3B 0%, #c96b5a 100%);
  color: #F3F2F0;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
}

.aboutus .btn-primary:hover {
  box-shadow: inset 0 2px 6px rgba(175, 74, 59, 0.22), 0 7px 14px 0 rgba(175, 74, 59, 0.14);
  transform: translateY(-1px);
}

.aboutus .btn-primary:active {
  transform: scale(0.97);
}

.aboutus .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #DABEAB;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(218, 190, 171, 0.35);
  cursor: pointer;
  transition: border-color 0.7s ease-in-out, color 0.7s ease-in-out, box-shadow 0.7s ease-in-out;
}

.aboutus .btn-secondary:hover {
  border-color: #DABEAB;
  color: #F3F2F0;
  box-shadow: inset 0 1px 3px rgba(218, 190, 171, 0.15);
}

.aboutus .btn-secondary:active {
  transform: scale(0.97);
}

.aboutus .identity-image-wrap {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
}

.aboutus .identity-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.9);
}

.aboutus .divider-band {
  height: 48px;
  background: linear-gradient(180deg, #3d2520 0%, #F3F2F0 100%);
}

.aboutus .panel-story {
  background: #F3F2F0;
  padding: 96px 48px;
}

.aboutus .story-grid {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.aboutus .story-left {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aboutus .story-stat {
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.aboutus .story-stat:hover {
  box-shadow: inset 0 1px 3px rgba(175, 74, 59, 0.12), 0 7px 14px 0 rgba(175, 74, 59, 0.08);
}

.aboutus .story-stat .stat-number {
  font-size: 48px;
  line-height: 1.2;
  color: #AF4A3B;
  letter-spacing: -0.02em;
  display: block;
}

.aboutus .story-stat .stat-label {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3530;
}

.aboutus .story-stat .diamond {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #AF4A3B;
  transform: rotate(45deg);
  border-radius: 0px;
}

.aboutus .story-center {
  flex: 1 1 0;
  min-width: 0;
}

.aboutus .story-heading {
  font-size: 34px;
  line-height: 1.4;
  color: #2a1a17;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.aboutus .story-body {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2520;
}

.aboutus .story-body p {
  text-indent: 1.5em;
  margin: 0;
}

.aboutus .story-right {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aboutus .expert-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s ease-in-out;
}

.aboutus .expert-card:hover {
  box-shadow: inset 0 2px 4px rgba(175, 74, 59, 0.10), 0 8px 60px 0 rgba(175, 74, 59, 0.10);
  transform: translateY(-2px);
}

.aboutus .expert-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.aboutus .expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.aboutus .expert-info {
  padding: 24px;
}

.aboutus .expert-name {
  font-size: 20px;
  line-height: 1.4;
  color: #2a1a17;
  margin: 0 0 8px;
}

.aboutus .expert-role {
  font-size: 15px;
  color: #AF4A3B;
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
}

.aboutus .expert-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #5a3028;
  margin: 0;
}

.aboutus .annotation-block {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
}

.aboutus .annotation-block .annotation-num {
  font-size: 34px;
  line-height: 1.2;
  color: #DABEAB;
  display: block;
  letter-spacing: -0.02em;
}

.aboutus .annotation-block .annotation-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2520;
  margin: 0;
}

.aboutus .divider-accent {
  height: 4px;
  background: linear-gradient(90deg, #AF4A3B 0%, rgba(218, 190, 171, 0.3) 60%, transparent 100%);
}

.aboutus .panel-contact {
  background: #fff;
  padding: 96px 48px;
  animation: bgpulse 6s ease-in-out infinite;
}

@keyframes bgpulse {

  0%,
  100% {
    background-color: #fff;
  }

  50% {
    background-color: #fdf8f6;
  }
}

.aboutus .contact-grid {
  display: flex;
  flex-direction: row;
  gap: 96px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.aboutus .contact-left {
  flex: 1 1 0;
  min-width: 0;
}

.aboutus .contact-heading {
  font-size: 34px;
  line-height: 1.4;
  color: #2a1a17;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.aboutus .contact-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #3d2520;
  margin: 0 0 48px;
}

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

.aboutus .contact-detail-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #3d2520;
  padding: 12px;
  border-radius: 12px;
  background: #F3F2F0;
  transition: background 0.7s ease-in-out;
}

.aboutus .contact-detail-list li:hover {
  background: #ede8e4;
}

.aboutus .detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #AF4A3B;
}

.aboutus .contact-right {
  flex: 0 0 440px;
  max-width: 440px;
}

.aboutus .form-card {
  background: #F3F2F0;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
}

.aboutus .form-card .form-heading {
  font-size: 24px;
  line-height: 1.4;
  color: #2a1a17;
  margin: 0 0 8px;
}

.aboutus .form-card .form-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #5a3028;
  margin: 0 0 24px;
}

.aboutus .field-group {
  margin-bottom: 24px;
}

.aboutus .field-group label {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  color: #2a1a17;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.aboutus .field-group input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(175, 74, 59, 0.25);
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
  color: #2a1a17;
  box-sizing: border-box;
  transition: border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.aboutus .field-group input[type="email"]::placeholder {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #9a7a72;
}

.aboutus .field-group input[type="email"]:focus {
  border-color: #AF4A3B;
  box-shadow: 0 0 0 3px rgba(175, 74, 59, 0.12);
}

.aboutus .checkbox-group-label {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  color: #2a1a17;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.aboutus .checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.aboutus .checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.aboutus .checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #AF4A3B;
  cursor: pointer;
  flex-shrink: 0;
}

.aboutus .checkbox-item span {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2520;
}

.aboutus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}

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

.aboutus .privacy-row .privacy-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5a3028;
}

.aboutus .privacy-row .privacy-text a {
  color: #AF4A3B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.6s ease-in-out;
}

.aboutus .privacy-row .privacy-text a:hover {
  color: #8a3a2d;
}

.aboutus .submit-btn {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #AF4A3B 0%, #c96b5a 60%, #DABEAB 100%);
  color: #F3F2F0;
  font-size: 16px;
  line-height: 1.4;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
}

.aboutus .submit-btn:hover {
  box-shadow: inset 0 2px 4px rgba(175, 74, 59, 0.18), 0 8px 60px 0 rgba(175, 74, 59, 0.10);
}

.aboutus .submit-btn:active {
  transform: scale(0.97);
}

.aboutus .step-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aboutus .step-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  position: relative;
}

.aboutus .step-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 40px;
  bottom: -12px;
  width: 2px;
  background: linear-gradient(180deg, #AF4A3B 0%, rgba(218, 190, 171, 0.3) 100%);
}

.aboutus .step-num {
  width: 24px;
  height: 24px;
  border-radius: 0px;
  background: #AF4A3B;
  color: #F3F2F0;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  flex-shrink: 0;
  font-weight: 600;
}

.aboutus .step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2520;
  padding-top: 4px;
}

@media (max-width: 900px) {
  .aboutus .identity-grid {
    flex-direction: column;
  }

  .aboutus .identity-right {
    flex: unset;
    max-width: 100%;
    width: 100%;
    display: none;
  }

  .aboutus .identity-heading {
    font-size: 48px;
  }

  .aboutus .story-grid {
    flex-direction: column;
  }

  .aboutus .story-left {
    flex: unset;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .aboutus .story-stat {
    flex: 1 1 120px;
  }

  .aboutus .story-right {
    flex: unset;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .aboutus .expert-card {
    flex: 1 1 200px;
  }

  .aboutus .contact-grid {
    flex-direction: column;
    gap: 48px;
  }

  .aboutus .contact-right {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .aboutus .panel-identity {
    padding: 48px 24px 24px;
  }

  .aboutus .identity-heading {
    font-size: 34px;
  }

  .aboutus .identity-desc {
    font-size: 16px;
  }

  .aboutus .identity-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .aboutus .panel-story {
    padding: 48px 24px;
  }

  .aboutus .panel-contact {
    padding: 48px 24px;
  }

  .aboutus .form-card {
    padding: 24px;
  }

  .aboutus .story-left {
    display: none;
  }
}

.front {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
}

.front .titlegrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  padding-top: 96px;
  padding-bottom: 48px;
  background: linear-gradient(135deg, #AF4A3B 0%, #c4695c 30%, #DABEAB 70%, #F3F2F0 100%);
  position: relative;
}

.front .titlegrid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(175, 74, 59, 0.18) 0%, rgba(218, 190, 171, 0.10) 60%, transparent 100%);
  pointer-events: none;
}

.front .titleleft {
  padding: 48px 48px 24px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.front .dotpath {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.front .dotpath span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 0px;
  background: #AF4A3B;
  opacity: 0.5;
}

.front .dotpath span:nth-child(2) {
  opacity: 0.35;
  width: 4px;
  height: 4px;
}

.front .dotpath span:nth-child(3) {
  opacity: 0.2;
  width: 3px;
  height: 3px;
}

.front .dotpath span:nth-child(4) {
  opacity: 0.12;
  width: 2px;
  height: 2px;
}

.front .titleleft h1 {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a0f0d;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.front .titleleft h1 .punctmark {
  color: #AF4A3B;
}

.front .titlesub {
  font-size: 20px;
  line-height: 1.6;
  color: #3a1f1a;
  margin: 0 0 48px 0;
  max-width: 480px;
}

.front .titlebadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(175, 74, 59, 0.10);
  border: 1px solid rgba(175, 74, 59, 0.25);
  border-radius: 12px;
  padding: 8px 24px;
  font-size: 15px;
  color: #AF4A3B;
  font-weight: 600;
  letter-spacing: 0.04em;
  width: fit-content;
}

.front .titleright {
  padding: 48px 96px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.front .imageholder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
}

.front .imageholder img {
  width: 480px;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  border-radius: 12px;
  transition: filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.front .imageholder:hover img {
  filter: grayscale(60%);
}

.front .imageholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(175, 74, 59, 0.18);
  border-radius: 12px;
  pointer-events: none;
}

.front .svgdivider1 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.front .svgdivider1 svg {
  display: block;
  width: 100%;
}

.front .teamblock {
  background: #F3F2F0;
  padding: 96px 96px 48px 96px;
}

.front .overline {
  display: block;
  width: 32px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 12px;
}

.front .teamblock h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a0f0d;
  margin: 0 0 48px 0;
  font-weight: 700;
}

.front .teamgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.front .teamcard {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.front .teamcard:hover {
  box-shadow: inset 0 2px 4px rgba(175, 74, 59, 0.10), 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transform: translateY(2px);
}

.front .teamcard h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #1a0f0d;
  margin: 0;
  font-weight: 700;
}

.front .teamcard .role {
  font-size: 15px;
  color: #AF4A3B;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.front .teamcard p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2520;
  margin: 0;
  text-indent: 1em;
}

.front .teamimgwrap {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 180px;
}

.front .teamimgwrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  border-radius: 12px;
  transition: filter 0.75s ease-in-out;
}

.front .teamimgwrap:hover img {
  filter: grayscale(30%);
}

.front .svgdivider2 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #F3F2F0;
}

.front .conditionsblock {
  background: #fff;
  padding: 48px 96px 96px 96px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 96px;
  align-items: start;
}

.front .conditionsblock h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a0f0d;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.front .conditionsblock .accentword {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #AF4A3B;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.front .steplist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: stepcount;
}

.front .steplist li {
  counter-increment: stepcount;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid rgba(175, 74, 59, 0.12);
  position: relative;
}

.front .steplist li:last-child {
  border-bottom: 1px solid rgba(175, 74, 59, 0.12);
}

.front .stepnum {
  font-size: 34px;
  line-height: 1.2;
  color: #AF4A3B;
  font-weight: 700;
  min-width: 48px;
  opacity: 0.35;
}

.front .stepnum::before {
  content: counter(stepcount, decimal-leading-zero);
}

.front .steptext {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.front .steptext h5 {
  font-size: 16px;
  line-height: 1.4;
  color: #1a0f0d;
  margin: 0;
  font-weight: 700;
}

.front .steptext p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2520;
  margin: 0;
  text-indent: 1em;
}

.front .conditionsimgwrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  position: relative;
}

.front .conditionsimgwrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  filter: grayscale(100%);
  transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.front .conditionsimgwrap:hover img {
  filter: grayscale(20%);
}

.front .conditionsimgwrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(175, 74, 59, 0.15);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.front .svgdivider3 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #fff;
}

.front .communityblock {
  padding: 96px 96px 96px 96px;
  background: linear-gradient(160deg, #AF4A3B 0%, #8a3429 60%, #3a1510 100%);
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 96px;
  align-items: center;
}

.front .communityblock h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F3F2F0;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.front .communityblock .overline {
  background: rgba(243, 242, 240, 0.5);
}

.front .communityblock p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(243, 242, 240, 0.85);
  margin: 0 0 24px 0;
  text-indent: 1em;
}

.front .communityimgwrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
  position: relative;
}

.front .communityimgwrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  border-radius: 12px;
  transition: filter 0.7s ease-in-out;
}

.front .communityimgwrap:hover img {
  filter: grayscale(0%);
}

.front .communityimgwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(218, 190, 171, 0.25);
  border-radius: 12px;
  pointer-events: none;
}

.front .communitystats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.front .statcard {
  background: rgba(243, 242, 240, 0.08);
  border: 1px solid rgba(243, 242, 240, 0.15);
  border-radius: 12px;
  padding: 24px;
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.front .statcard:hover {
  background: rgba(243, 242, 240, 0.15);
  box-shadow: inset 0 1px 2px rgba(218, 190, 171, 0.12);
}

.front .statcard .statlabel {
  font-size: 15px;
  color: rgba(243, 242, 240, 0.6);
  display: block;
  margin-bottom: 4px;
}

.front .statcard .statvalue {
  font-size: 34px;
  line-height: 1.2;
  color: #F3F2F0;
  font-weight: 700;
}

.front .svgdivider4 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #F3F2F0;
}

.front .reputationblock {
  background: #F3F2F0;
  padding: 96px 96px 96px 96px;
}

.front .reputationblock h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a0f0d;
  margin: 0 0 48px 0;
  font-weight: 700;
  max-width: 640px;
}

.front .reputationgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.front .reputationcard {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.front .reputationcard:hover {
  box-shadow: inset 0 2px 3px rgba(175, 74, 59, 0.08), 0 7px 14px 0 rgba(175, 74, 59, 0.08);
}

.front .reputationcard h5 {
  font-size: 16px;
  line-height: 1.4;
  color: #1a0f0d;
  margin: 0;
  font-weight: 700;
}

.front .reputationcard p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2520;
  margin: 0;
  text-indent: 1em;
}

.front .reputationcard .repicon {
  width: 40px;
  height: 40px;
  background: rgba(175, 74, 59, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.front .reputationcard .repicon svg {
  width: 20px;
  height: 20px;
}

.front .repquote {
  background: #AF4A3B;
  border-radius: 12px;
  padding: 24px;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.front .repquote blockquote {
  font-size: 20px;
  line-height: 1.6;
  color: #F3F2F0;
  margin: 0;
  font-style: italic;
}

.front .repquote cite {
  font-size: 15px;
  color: rgba(243, 242, 240, 0.7);
  font-style: normal;
}

.front .svgdivider5 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #F3F2F0;
}

.front .journeyblock {
  background: #fff;
  padding: 96px 96px 96px 96px;
}

.front .journeyblock h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a0f0d;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.front .journeyblock .journeylead {
  font-size: 20px;
  line-height: 1.6;
  color: #3a2520;
  margin: 0 0 48px 0;
  max-width: 640px;
}

.front .journeylayout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.front .journeyphase {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-top: 24px;
}

.front .journeyphase::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #AF4A3B 0%, rgba(218, 190, 171, 0.3) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.front .journeyphase h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #1a0f0d;
  margin: 0;
  font-weight: 700;
}

.front .journeyphase p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2520;
  margin: 0;
  text-indent: 1em;
}

.front .journeyphase .phaselabel {
  font-size: 15px;
  color: #AF4A3B;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.front .journeyimgrow {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: center;
}

.front .journeyimgwrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  position: relative;
}

.front .journeyimgwrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  border-radius: 12px;
  transition: filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.front .journeyimgwrap:hover img {
  filter: grayscale(10%);
}

.front .journeyimgwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(175, 74, 59, 0.12);
  border-radius: 12px;
  pointer-events: none;
}

.front .journeynote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #F3F2F0;
  border-radius: 12px;
}

.front .journeynote h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #1a0f0d;
  margin: 0;
  font-weight: 700;
}

.front .journeynote p {
  font-size: 15px;
  line-height: 1.6;
  color: #3a2520;
  margin: 0;
  text-indent: 1em;
}

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

.front .titlegridwrap {
  position: relative;
}

@keyframes colreveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.front .titleleft {
  animation: colreveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.front .titleright {
  animation: colreveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

@media (max-width: 1200px) {
  .front .titlegrid {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .front .titleleft {
    padding: 48px 48px 24px 48px;
  }

  .front .titleright {
    display: none;
  }

  .front .teamgrid {
    grid-template-columns: 1fr 1fr;
  }

  .front .conditionsblock {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px;
  }

  .front .communityblock {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px;
  }

  .front .reputationblock {
    padding: 48px;
  }

  .front .journeyblock {
    padding: 48px;
  }

  .front .journeylayout {
    grid-template-columns: 1fr 1fr;
  }

  .front .teamblock {
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .front .titleleft h1 {
    font-size: 48px;
  }

  .front .teamgrid {
    grid-template-columns: 1fr;
  }

  .front .reputationgrid {
    grid-template-columns: 1fr;
  }

  .front .journeylayout {
    grid-template-columns: 1fr;
  }

  .front .journeyimgrow {
    grid-template-columns: 1fr;
  }

  .front .communitystats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .front .titleleft {
    padding: 24px;
  }

  .front .titleleft h1 {
    font-size: 34px;
  }

  .front .teamblock,
  .front .conditionsblock,
  .front .communityblock,
  .front .reputationblock,
  .front .journeyblock {
    padding: 24px;
  }

  .front .teamblock h2,
  .front .conditionsblock h2,
  .front .communityblock h2,
  .front .reputationblock h2,
  .front .journeyblock h2 {
    font-size: 34px;
  }

  .front .journeynote {
    display: none;
  }
}

.contactus {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.contactus .radio-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.contactus .radio-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contactus .radio-option input[type="radio"] {
  accent-color: #AF4A3B;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contactus .radio-option span {
  font-size: 15px;
  color: #2a1f1d;
  line-height: 1.4;
}

.contactus .spotlight {
  position: relative;
  background: radial-gradient(ellipse at 15% 40%, #AF4A3B 0%, #DABEAB 55%, #F3F2F0 100%);
  background-size: 120% 120%;
  animation: breathe 10s ease-in-out infinite;
  padding: 96px 48px;
}

@keyframes breathe {

  0%,
  100% {
    background-size: 120% 120%;
  }

  50% {
    background-size: 140% 140%;
  }
}

.contactus .spotlight-grid {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  max-width: 1600px;
}

.contactus .spotlight-text {
  flex: 0 0 55%;
  position: relative;
  z-index: 1;
}

.contactus .overline {
  display: block;
  width: 32px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 24px;
}

.contactus .spotlight-text h1 {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1a0f0d;
  margin: 0 0 24px 0;
}

.contactus .spotlight-text h1 .accent-word {
  display: inline-block;
  color: #AF4A3B;
  text-decoration: underline;
  text-decoration-color: #AF4A3B;
  text-underline-offset: 6px;
}

.contactus .spotlight-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #2a1f1d;
  margin: 0 0 0 24px;
}

.contactus .spotlight-image-zone {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactus .image-decor {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at center, rgba(175, 74, 59, 0.18) 0%, transparent 70%);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}

.contactus .spotlight-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.55;
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
}

.contactus .spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contactus .bracket-left,
.contactus .bracket-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}

.contactus .bracket-left {
  left: -28px;
  border-top: 2px solid #AF4A3B;
  border-bottom: 2px solid #AF4A3B;
  border-left: 2px solid #AF4A3B;
  border-radius: 0px;
}

.contactus .bracket-right {
  right: -28px;
  border-top: 2px solid #AF4A3B;
  border-bottom: 2px solid #AF4A3B;
  border-right: 2px solid #AF4A3B;
  border-radius: 0px;
}

.contactus .divider-tick {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0 48px;
  background: #F3F2F0;
}

.contactus .divider-tick-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, #DABEAB 0px, #DABEAB 18px, transparent 18px, transparent 28px);
  position: relative;
}

.contactus .divider-tick-line::before,
.contactus .divider-tick-line::after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: #AF4A3B;
}

.contactus .divider-tick-line::before {
  left: 0;
}

.contactus .divider-tick-line::after {
  right: 0;
}

.contactus .contact-body {
  background: #F3F2F0;
  padding: 96px 48px;
}

.contactus .contact-body-grid {
  display: flex;
  flex-direction: row;
  gap: 96px;
  max-width: 1600px;
  align-items: flex-start;
}

.contactus .contact-details-col {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contactus .stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contactus .stat-number {
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #AF4A3B;
  font-weight: 700;
}

.contactus .stat-label {
  font-size: 15px;
  line-height: 1.4;
  color: #5a3f38;
}

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

.contactus .contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.contactus .contact-info-item:hover {
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08), inset 0 1px 2px 0 rgba(175, 74, 59, 0.08);
}

.contactus .info-label {
  font-size: 15px;
  line-height: 1.4;
  color: #AF4A3B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contactus .info-value {
  font-size: 16px;
  line-height: 1.6;
  color: #2a1f1d;
}

.contactus .info-value a {
  color: #2a1f1d;
  text-decoration: none;
  transition: color 0.7s ease-in-out;
}

.contactus .info-value a:hover {
  color: #AF4A3B;
}

.contactus .quote-block {
  border-top: 2px solid #DABEAB;
  padding-top: 24px;
}

.contactus .quote-text {
  font-size: 20px;
  line-height: 1.6;
  color: #2a1f1d;
  font-style: italic;
  margin: 0 0 12px 0;
}

.contactus .quote-attr {
  font-size: 15px;
  line-height: 1.4;
  color: #5a3f38;
}

.contactus .form-col {
  flex: 1;
}

.contactus .form-col h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a0f0d;
  margin: 0 0 8px 0;
}

.contactus .form-overline {
  display: block;
  width: 24px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 24px;
}

.contactus .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contactus .form-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.contactus .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.contactus .form-field label {
  font-size: 15px;
  line-height: 1.4;
  color: #5a3f38;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contactus .form-field input[type="text"],
.contactus .form-field input[type="email"],
.contactus .form-field input[type="tel"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #2a1f1d;
  background: #fff;
  border: 1px solid #DABEAB;
  border-radius: 12px;
  outline: none;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transition: border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.contactus .form-field input[type="text"]:focus,
.contactus .form-field input[type="email"]:focus,
.contactus .form-field input[type="tel"]:focus {
  border-color: #AF4A3B;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08), inset 0 1px 2px 0 rgba(175, 74, 59, 0.06);
}

.contactus .form-field input::placeholder {
  text-transform: uppercase;
  font-size: 15px;
  color: #b09890;
  letter-spacing: 0.05em;
}

.contactus .topic-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contactus .topic-group legend {
  font-size: 15px;
  line-height: 1.4;
  color: #5a3f38;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.contactus .privacy-row input[type="checkbox"] {
  accent-color: #AF4A3B;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.contactus .privacy-row span {
  font-size: 15px;
  line-height: 1.6;
  color: #5a3f38;
}

.contactus .privacy-row a {
  color: #AF4A3B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.7s ease-in-out;
}

.contactus .privacy-row a:hover {
  color: #8a3a2e;
}

.contactus .submit-btn {
  align-self: flex-start;
  padding: 12px 48px;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  background: linear-gradient(135deg, #AF4A3B 0%, #DABEAB 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
  letter-spacing: 0.04em;
}

.contactus .submit-btn:hover {
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10), inset 0 1px 2px 0 rgba(175, 74, 59, 0.10);
}

.contactus .submit-btn:active {
  transform: scale(0.97);
}

.contactus .submit-btn:focus {
  outline: 2px solid #AF4A3B;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .contactus .spotlight {
    padding: 48px 24px;
  }

  .contactus .spotlight-grid {
    flex-direction: column;
    gap: 24px;
  }

  .contactus .spotlight-image-zone {
    display: none;
  }

  .contactus .spotlight-text {
    flex: 1;
  }

  .contactus .spotlight-text h1 {
    font-size: 48px;
  }

  .contactus .contact-body {
    padding: 48px 24px;
  }

  .contactus .contact-body-grid {
    flex-direction: column;
    gap: 48px;
  }

  .contactus .contact-details-col {
    flex: 1;
    width: 100%;
  }

  .contactus .form-row {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .contactus .spotlight-text h1 {
    font-size: 34px;
  }

  .contactus .spotlight-text p {
    font-size: 16px;
    margin-left: 0;
  }

  .contactus .stat-number {
    font-size: 48px;
  }

  .contactus .divider-tick {
    padding: 0 24px;
  }

  .contactus .submit-btn {
    width: 100%;
    text-align: center;
  }
}

.learningprogram {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.learningprogram .pagetop {
  position: relative;
  background: #F3F2F0;
  padding: 96px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.learningprogram .pagetop .faded-letter {
  position: absolute;
  top: 0;
  right: 48px;
  font-size: 64px;
  font-weight: 900;
  color: #DABEAB;
  opacity: 0.22;
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -4px;
}

.learningprogram .pagetop .top-image-area {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
}

.learningprogram .pagetop .top-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0px);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.learningprogram .pagetop .top-image-area:hover img {
  transform: scale(1.04);
  filter: blur(1px) brightness(0.95);
}

.learningprogram .pagetop .top-image-area .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(175, 74, 59, 0.18) 0%, rgba(218, 190, 171, 0.32) 100%);
  border-radius: 12px;
}

.learningprogram .pagetop .text-lower {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learningprogram .pagetop .overline-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: #AF4A3B;
  border-radius: 0;
  margin-bottom: 4px;
}

.learningprogram .pagetop .page-heading {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #2a1f1c;
  margin: 0;
  font-weight: 800;
}

.learningprogram .pagetop .page-heading span {
  text-decoration: underline;
  text-decoration-color: #AF4A3B;
  text-underline-offset: 6px;
}

.learningprogram .pagetop .page-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #3d2e2a;
  margin: 0;
  max-width: 560px;
}

.learningprogram .divider-thick {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F3F2F0 0%, #DABEAB 40%, #AF4A3B 100%);
  border: none;
  margin: 0;
}

.learningprogram .stat-block {
  background: #fff;
  padding: 96px 48px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  border-bottom: 1px solid #DABEAB;
}

.learningprogram .stat-block .stat-primary {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 220px;
}

.learningprogram .stat-block .stat-number {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 900;
  color: #AF4A3B;
  letter-spacing: -3px;
  margin: 0;
}

.learningprogram .stat-block .stat-label {
  font-size: 15px;
  line-height: 1.4;
  color: #5a3e38;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.learningprogram .stat-block .stat-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, #DABEAB 0%, #AF4A3B 100%);
  flex-shrink: 0;
}

.learningprogram .stat-block .stat-context {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.learningprogram .stat-block .stat-context-heading {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  color: #2a1f1c;
  margin: 0;
}

.learningprogram .stat-block .stat-context p {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2e2a;
  margin: 0;
  text-indent: 1.5em;
}

.learningprogram .stat-block .stat-items {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.learningprogram .stat-block .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: #F3F2F0;
  border-radius: 12px;
  min-width: 120px;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
}

.learningprogram .stat-block .stat-item-val {
  font-size: 24px;
  font-weight: 800;
  color: #AF4A3B;
  line-height: 1.2;
}

.learningprogram .stat-block .stat-item-desc {
  font-size: 15px;
  color: #5a3e38;
  line-height: 1.4;
}

.learningprogram .cards-area {
  background: #F3F2F0;
  padding: 96px 48px;
}

.learningprogram .cards-area .area-overline {
  display: block;
  width: 48px;
  height: 2px;
  background: #AF4A3B;
  margin-bottom: 8px;
}

.learningprogram .cards-area .area-heading {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #2a1f1c;
  margin: 0 0 48px 0;
  letter-spacing: -0.5px;
}

.learningprogram .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.learningprogram .program-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.learningprogram .program-card:hover {
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10), inset 0 1px 2px 0 rgba(218, 190, 171, 0.18);
  transform: translateY(-4px);
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: rotate(-2deg) translateY(24px);
  }

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

.learningprogram .program-card .card-badge-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 12px 12px 0;
  align-items: center;
}

.learningprogram .program-card .card-tag {
  font-size: 15px;
  color: #AF4A3B;
  background: rgba(175, 74, 59, 0.08);
  border-radius: 0;
  padding: 4px 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.learningprogram .program-card .card-level {
  font-size: 15px;
  color: #5a3e38;
  background: #F3F2F0;
  border-radius: 0;
  padding: 4px 8px;
}

.learningprogram .program-card .card-body {
  padding: 12px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.learningprogram .program-card .card-title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #2a1f1c;
  margin: 0;
}

.learningprogram .program-card .card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2e2a;
  margin: 0;
}

.learningprogram .program-card .card-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.learningprogram .program-card .card-readtime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #5a3e38;
}

.learningprogram .program-card .card-readtime svg {
  flex-shrink: 0;
}

.learningprogram .program-card .card-likes {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #AF4A3B;
  position: relative;
}

.learningprogram .program-card .card-likes .dot-indicator {
  width: 8px;
  height: 8px;
  background: #AF4A3B;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  right: -3px;
}

.learningprogram .program-card .card-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: #F3F2F0;
  margin-top: auto;
}

.learningprogram .program-card .card-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.learningprogram .program-card .card-price {
  font-size: 20px;
  font-weight: 800;
  color: #2a1f1c;
  line-height: 1.2;
}

.learningprogram .program-card .card-price-note {
  font-size: 15px;
  color: #5a3e38;
  line-height: 1.4;
}

.learningprogram .program-card .card-link {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #AF4A3B 0%, #DABEAB 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
}

.learningprogram .program-card .card-link:hover {
  box-shadow: inset 0 2px 4px rgba(175, 74, 59, 0.18), 0 7px 14px 0 rgba(175, 74, 59, 0.08);
  transform: scale(0.97);
  color: #fff;
}

.learningprogram .program-card .card-link:active {
  transform: scale(0.94);
}

.learningprogram .accent-feature {
  background: #fff;
  padding: 96px 48px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: stretch;
}

.learningprogram .accent-feature .feature-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.learningprogram .accent-feature .feature-overline {
  display: block;
  width: 48px;
  height: 2px;
  background: #AF4A3B;
}

.learningprogram .accent-feature .feature-heading {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #2a1f1c;
  margin: 0;
  letter-spacing: -0.5px;
}

.learningprogram .accent-feature .feature-body {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2e2a;
  margin: 0;
  text-indent: 1.5em;
}

.learningprogram .accent-feature .dashed-accent {
  border: 2px dashed #DABEAB;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.learningprogram .accent-feature .dashed-accent .accent-label {
  font-size: 15px;
  font-weight: 700;
  color: #AF4A3B;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.learningprogram .accent-feature .dashed-accent .accent-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2e2a;
  margin: 0;
}

.learningprogram .accent-feature .steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.learningprogram .accent-feature .steps-list li {
  counter-increment: steps;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 24px;
}

.learningprogram .accent-feature .steps-list li:last-child {
  padding-bottom: 0;
}

.learningprogram .accent-feature .steps-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: #AF4A3B;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.learningprogram .accent-feature .steps-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  width: 2px;
  height: calc(100% - 32px);
  background: linear-gradient(180deg, #AF4A3B 0%, #DABEAB 100%);
  z-index: 0;
}

.learningprogram .accent-feature .steps-list .step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2e2a;
  padding-top: 4px;
}

.learningprogram .accent-feature .feature-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.learningprogram .accent-feature .feature-image-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
}

.learningprogram .accent-feature .feature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), brightness 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.learningprogram .accent-feature .feature-image-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.93);
}

.learningprogram .accent-feature .two-col-info {
  display: flex;
  flex-direction: row;
  gap: 0;
  border: 1px solid #DABEAB;
  border-radius: 12px;
  overflow: hidden;
}

.learningprogram .accent-feature .info-col {
  flex: 1 1 50%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.learningprogram .accent-feature .info-col:first-child {
  border-right: 1px solid #DABEAB;
}

.learningprogram .accent-feature .info-col-label {
  font-size: 15px;
  color: #AF4A3B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.learningprogram .accent-feature .info-col-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3d2e2a;
  margin: 0;
}

.learningprogram .divider-gradient {
  height: 2px;
  background: linear-gradient(90deg, #DABEAB 0%, #AF4A3B 60%, #2a1f1c 100%);
  border: none;
  margin: 0;
}

.learningprogram .cta-strip {
  background: linear-gradient(135deg, #AF4A3B 0%, #DABEAB 100%);
  padding: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.learningprogram .cta-strip .cta-text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.learningprogram .cta-strip .cta-heading {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.learningprogram .cta-strip .cta-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.learningprogram .cta-strip .cta-button {
  display: inline-block;
  padding: 12px 48px;
  background: #fff;
  color: #AF4A3B;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
}

.learningprogram .cta-strip .cta-button:hover {
  box-shadow: inset 0 2px 4px rgba(175, 74, 59, 0.14), 0 7px 14px 0 rgba(175, 74, 59, 0.10);
  transform: scale(0.97);
  color: #AF4A3B;
}

.learningprogram .cta-strip .cta-button:active {
  transform: scale(0.94);
}

@media (max-width: 1200px) {
  .learningprogram .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learningprogram .stat-block {
    flex-direction: column;
    gap: 24px;
  }

  .learningprogram .stat-block .stat-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
}

@media (max-width: 900px) {
  .learningprogram .pagetop {
    padding: 48px 24px 24px;
  }

  .learningprogram .pagetop .top-image-area {
    height: 200px;
  }

  .learningprogram .pagetop .page-heading {
    font-size: 34px;
  }

  .learningprogram .stat-block {
    padding: 48px 24px;
  }

  .learningprogram .cards-area {
    padding: 48px 24px;
  }

  .learningprogram .accent-feature {
    flex-direction: column;
    padding: 48px 24px;
  }

  .learningprogram .accent-feature .feature-image-wrap {
    display: none;
  }

  .learningprogram .cta-strip {
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .learningprogram .cards-grid {
    grid-template-columns: 1fr;
  }

  .learningprogram .pagetop .top-image-area {
    display: none;
  }

  .learningprogram .pagetop .page-heading {
    font-size: 24px;
  }

  .learningprogram .stat-block .stat-number {
    font-size: 48px;
  }

  .learningprogram .stat-block .stat-items {
    flex-direction: column;
  }

  .learningprogram .accent-feature .two-col-info {
    flex-direction: column;
  }

  .learningprogram .accent-feature .info-col:first-child {
    border-right: none;
    border-bottom: 1px solid #DABEAB;
  }
}

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

.successPage .successWrapper {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 60px 0 rgba(175, 74, 59, 0.10);
  text-align: center;
}

.successPage .iconCircle {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(160deg, #AF4A3B 0%, #DABEAB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 48px;
  box-shadow: 0 7px 14px 0 rgba(175, 74, 59, 0.08);
}

.successPage .iconCircle svg {
  display: block;
}

.successPage .successHeading {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2c1f1c;
  margin: 0 0 24px;
}

.successPage .successHeading span {
  display: inline-block;
  border-bottom: 2px solid #AF4A3B;
  padding-bottom: 2px;
}

.successPage .successText {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3530;
  margin: 0 0 48px;
}

.successPage .dividerLine {
  width: 48px;
  height: 1px;
  background: #DABEAB;
  margin: 0 auto 48px;
}

.successPage .successMeta {
  font-size: 15px;
  line-height: 1.4;
  color: #7a5f58;
  margin: 0 0 48px;
}

.successPage .successMeta strong {
  color: #2c1f1c;
  font-weight: 600;
}

.successPage .returnButton {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 12px;
  background: linear-gradient(160deg, #AF4A3B 0%, #c4614f 100%);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 2px 0 rgba(175, 74, 59, 0.08);
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s ease-in-out;
}

.successPage .returnButton:hover {
  box-shadow: inset 0 2px 6px 0 rgba(175, 74, 59, 0.18), 0 7px 14px 0 rgba(175, 74, 59, 0.08);
}

.successPage .returnButton:active {
  transform: scale(0.97);
}

.successPage .returnButton:focus-visible {
  outline: 2px solid #AF4A3B;
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .successPage {
    padding: 48px 12px;
  }

  .successPage .successWrapper {
    padding: 24px;
  }

  .successPage .successHeading {
    font-size: 24px;
  }
}