*, *::before, *::after {
  box-sizing: border-box;
  content: none;
}
body {
  margin: 0;
  padding: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
}
html {
  scroll-behavior: auto;
}

.site-hdr {
  font-family: 'Ubuntu Mono', monospace;
  background: #fff;
  border-bottom: 2px solid #E0E8DB;
  position: relative;
  z-index: 100;
  overflow: hidden;
}
.site-hdr::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B13336 0%, #2DBE9F 100%);
}
.hdr-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 32px 0;
  gap: 8px;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E0E8DB;
  border-radius: 48px;
  padding: 8px 16px;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08), 0 6px 14px -2px rgba(177,51,54,0.11);
  border: 1.5px solid #c8d8c0;
  gap: 16px;
}
.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.brand-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #1a0a0b;
  text-transform: lowercase;
}
.brand-name span {
  color: #B13336;
}
.hdr-tagline {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.hdr-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 8px 32px;
}
.hdr-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Ubuntu Mono', monospace;
  color: #2a2a2a;
  border-radius: 7px;
  padding: 8px 16px;
  background: #f5f7f3;
  border: 1px solid #E0E8DB;
  box-shadow: 0 2px 2px -2px rgba(45,190,159,0.08);
  transition: background 0.25s cubic-bezier(0.34,1.56,0.64,1), color 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
  outline-offset: 3px;
}
.hdr-contact-item:hover, .hdr-contact-item:focus {
  background: #2DBE9F;
  color: #fff;
  box-shadow: 0 6px 14px -2px rgba(45,190,159,0.11);
}
.hdr-contact-item:focus {
  text-decoration: underline;
  outline: 2px solid #2DBE9F;
}
.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pri-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px 32px;
}
.pri-nav a {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #2a2a2a;
  text-decoration: none;
  border-radius: 48px;
  padding: 8px 16px;
  background: transparent;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: color 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color 0.28s cubic-bezier(0.34,1.56,0.64,1);
  outline-offset: 3px;
  min-height: 44px;
  line-height: 1.9;
}
.pri-nav a::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #B13336;
  border-radius: 48px;
  transition: left 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}
.pri-nav a:hover::before, .pri-nav a:focus::before {
  left: 0;
}
.pri-nav a:hover, .pri-nav a:focus {
  color: #fff;
  border-color: #B13336;
}
.pri-nav a:focus {
  text-decoration: underline;
  outline: 2px solid #B13336;
}
.pri-nav a span {
  position: relative;
  z-index: 1;
}
.pri-nav a[aria-current="page"] {
  border-color: #B13336;
  color: #B13336;
}

.site-ftr {
  font-family: 'Ubuntu Mono', monospace;
  background: #1a0a0b;
  color: #E0E8DB;
  padding: 64px 32px 32px;
  overflow: hidden;
}
.ftr-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.ftr-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ftr-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E0E8DB;
  border-radius: 48px;
  padding: 8px 32px;
  border: 2px solid #2DBE9F;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
}
.ftr-logo-pill img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.ftr-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  text-transform: lowercase;
}
.ftr-name span {
  color: #B13336;
}
.ftr-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #b8c8b0;
  text-align: center;
  max-width: 480px;
  margin: 0;
}
.ftr-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ftr-links li a {
  font-size: 14px;
  color: #E0E8DB;
  text-decoration: none;
  border-radius: 48px;
  padding: 8px 16px;
  border: 1px solid rgba(224,232,219,0.25);
  display: inline-block;
  min-height: 44px;
  line-height: 1.9;
  transition: background 0.22s cubic-bezier(0.68,-0.55,0.27,1.55), color 0.22s cubic-bezier(0.68,-0.55,0.27,1.55), border-color 0.22s cubic-bezier(0.68,-0.55,0.27,1.55);
  outline-offset: 3px;
}
.ftr-links li a:hover, .ftr-links li a:focus {
  background: #2DBE9F;
  color: #fff;
  border-color: #2DBE9F;
}
.ftr-links li a:focus {
  text-decoration: underline;
  outline: 2px solid #2DBE9F;
}
.ftr-contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ftr-contact-list li {
  font-size: 14px;
  line-height: 1.5;
}
.ftr-contact-list li a {
  color: #2DBE9F;
  text-decoration: none;
  border-radius: 7px;
  outline-offset: 3px;
}
.ftr-contact-list li a:hover, .ftr-contact-list li a:focus {
  text-decoration: underline;
}
.ftr-contact-list li a:focus {
  outline: 2px solid #2DBE9F;
}
.ftr-contact-list li span {
  color: #b8c8b0;
  margin-right: 8px;
}
.ftr-divider {
  width: 100%;
  height: 1px;
  background: rgba(224,232,219,0.15);
  border: none;
  margin: 0;
}
.ftr-copy {
  font-size: 14px;
  color: #7a8a72;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.ck-bar {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 4000;
  max-width: 420px;
  width: calc(100vw - 64px);
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
  border: 1.5px solid #E0E8DB;
  padding: 32px;
  font-family: 'Ubuntu Mono', monospace;
  display: none;
}
.ck-bar.visible {
  display: block;
}
.ck-bar-headline {
  font-size: 15px;
  font-weight: 700;
  color: #1a0a0b;
  margin: 0 0 8px;
  line-height: 1.5;
}
.ck-bar-body {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.9;
  margin: 0 0 16px;
}
.ck-bar-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ck-accept {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #B13336;
  border: none;
  border-radius: 48px;
  padding: 8px 16px;
  cursor: pointer;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
  outline-offset: 3px;
  flex: 1;
}
.ck-accept:hover, .ck-accept:focus {
  background: #8f1f22;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
}
.ck-accept:focus {
  outline: 2px solid #B13336;
}
.ck-decline {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #3a3a3a;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px;
  min-height: 44px;
  border-radius: 7px;
  outline-offset: 3px;
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.ck-decline:hover, .ck-decline:focus {
  color: #B13336;
}
.ck-decline:focus {
  outline: 2px solid #B13336;
}

@media (max-width: 768px) {
  .hdr-top {
    padding: 16px 16px 0;
  }
  .hdr-contact-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 16px;
  }
  .pri-nav {
    padding: 16px 16px 16px;
    gap: 8px;
  }
  .pri-nav a {
    font-size: 14px;
    padding: 8px 16px;
  }
  .site-ftr {
    padding: 32px 16px 32px;
  }
  .ck-bar {
    left: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }
}
@media (max-width: 320px) {
  .brand-name {
    font-size: 17px;
  }
  .hdr-contact-item {
    font-size: 14px;
    padding: 8px;
  }
  .pri-nav a {
    font-size: 14px;
  }
}.policy-x-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 32px;
}

.policy-x-container h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1b1b1b;
    margin-bottom: 32px;
    margin-top: 0;
}

.policy-x-container h2 {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #1b1b1b;
    margin-top: 64px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E0E8DB;
}

.policy-x-container h3 {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #222;
    margin-top: 32px;
    margin-bottom: 8px;
    font-weight: 700;
}

.policy-x-container h4,
.policy-x-container h5,
.policy-x-container h6 {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-top: 32px;
    margin-bottom: 8px;
    font-weight: 700;
}

.policy-x-container p {
    font-size: 15px;
    line-height: 1.9;
    color: #2e2e2e;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch;
}

.policy-x-container ul,
.policy-x-container ol {
    font-size: 15px;
    line-height: 1.9;
    color: #2e2e2e;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    max-width: 72ch;
}

.policy-x-container ul {
    list-style: none;
    padding-left: 16px;
}

.policy-x-container ul li {
    padding-left: 16px;
    position: relative;
}

.policy-x-container ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #B13336;
    position: absolute;
    left: 0;
    top: 0.7em;
}

.policy-x-container ol {
    list-style: decimal;
}

.policy-x-container ol li {
    padding-left: 8px;
}

.policy-x-container ol li::marker {
    color: #B13336;
    font-weight: 700;
}

.policy-x-container li {
    margin-bottom: 8px;
}

.policy-x-container em,
.policy-x-container i {
    color: #B13336;
    font-style: italic;
}

.policy-x-container a {
    color: #B13336;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s cubic-bezier(0.34,1.56,0.64,1), text-decoration-color 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.policy-x-container a:hover {
    color: #2DBE9F;
    text-decoration-color: #2DBE9F;
}

.policy-x-container a:visited {
    color: #8a2527;
}

.policy-x-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 32px;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08), 0 6px 14px -2px rgba(177,51,54,0.11);
}

.policy-x-container thead {
    background: #E0E8DB;
}

.policy-x-container thead th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1b1b1b;
    border-bottom: 2px solid #c8d4c2;
}

.policy-x-container tbody tr {
    background: #fff;
    transition: background 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.policy-x-container tbody tr:nth-child(even) {
    background: #f5f7f3;
}

.policy-x-container tbody tr:hover {
    background: #eef5ec;
}

.policy-x-container td {
    padding: 16px;
    color: #2e2e2e;
    border-bottom: 1px solid #dde6d8;
    vertical-align: top;
}

.policy-x-container tbody tr:last-child td {
    border-bottom: none;
}

.policy-x-container hr {
    border: none;
    height: 2px;
    background: #E0E8DB;
    border-radius: 48px;
    margin: 64px 0;
}

@media (max-width: 768px) {
    .policy-x-container {
        padding: 32px 16px;
    }

    .policy-x-container h1 {
        font-size: 26px;
    }

    .policy-x-container h2 {
        font-size: 17px;
        margin-top: 32px;
    }

    .policy-x-container h3,
    .policy-x-container h4,
    .policy-x-container h5,
    .policy-x-container h6 {
        font-size: 15px;
        margin-top: 16px;
    }

    .policy-x-container table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .policy-x-container hr {
        margin: 32px 0;
    }
}

@media (max-width: 320px) {
    .policy-x-container {
        padding: 16px 8px;
    }

    .policy-x-container p,
    .policy-x-container ul,
    .policy-x-container ol {
        font-size: 14px;
    }
}
.meth-det {
  background: #fff;
  overflow-x: clip;
}

.meth-det .drop-in {
  animation: dropIn 0.55s cubic-bezier(0.34,1.56,0.64,1) both;
}
.meth-det .drop-in:nth-child(2) { animation-delay: 0.08s; }
.meth-det .drop-in:nth-child(3) { animation-delay: 0.16s; }
.meth-det .drop-in:nth-child(4) { animation-delay: 0.24s; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-28px); }
  to { opacity: 1; transform: translateY(0); }
}

.meth-det .pg-frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.meth-det .lede {
  padding: 64px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.meth-det .lede__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meth-det .lede__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #B13336;
  border: 1.5px solid #B13336;
  border-radius: 7px;
  padding: 8px 16px;
  width: fit-content;
  letter-spacing: 0.04em;
}

.meth-det .lede__h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b1b1b;
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid #B13336;
}

.meth-det .lede__desc {
  font-size: 17px;
  line-height: 1.9;
  color: #3a3a3a;
  margin: 0;
}

.meth-det .lede__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.meth-det .btn-prim {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  background: #B13336;
  border-radius: 7px;
  padding: 16px 32px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.25s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
}
.meth-det .btn-prim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2DBE9F;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}
.meth-det .btn-prim:hover::before,
.meth-det .btn-prim:focus::before { transform: translateX(0); }
.meth-det .btn-prim span { position: relative; z-index: 1; }
.meth-det .btn-prim:focus { outline: 2px solid #2DBE9F; outline-offset: 3px; }

.meth-det .btn-sec {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  background: #E0E8DB;
  border-radius: 7px;
  padding: 16px 32px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.68,-0.55,0.27,1.55);
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
}
.meth-det .btn-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #c8d4c2;
  transform: translateX(-100%);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}
.meth-det .btn-sec:hover::before,
.meth-det .btn-sec:focus::before { transform: translateX(0); }
.meth-det .btn-sec span { position: relative; z-index: 1; }
.meth-det .btn-sec:focus { outline: 2px solid #B13336; outline-offset: 3px; }

.meth-det .lede__img-wrap {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
  border: 1.5px dashed #B13336;
}
.meth-det .lede__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, rgba(177,51,54,0.38) 0%, transparent 55%);
  pointer-events: none;
}
.meth-det .lede__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.meth-det .lede__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  background: #E0E8DB;
  border-radius: 7px;
}
.meth-det .lede__meta-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  color: #3a3a3a;
}
.meth-det .lede__meta-row.accent {
  color: #B13336;
  font-size: 15px;
}
.meth-det .lede__meta-label {
  font-size: 14px;
  color: #6a6a6a;
}
.meth-det .lede__meta-val {
  font-size: 14px;
  color: #1b1b1b;
}

.meth-det .divider-band {
  width: 100%;
  background: #B13336;
  padding: 16px 32px;
}
.meth-det .divider-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.meth-det .divider-band__stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.meth-det .divider-band__num {
  font-size: 26px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}
.meth-det .divider-band__lbl {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.meth-det .divider-band__sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

.meth-det .body-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.meth-det .body-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.meth-det .prog-head {
  font-size: 26px;
  line-height: 1.1;
  color: #1b1b1b;
  letter-spacing: -0.02em;
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid #2DBE9F;
}

.meth-det .prog-body {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a3a;
}
.meth-det .prog-body p { margin: 0 0 8px; }
.meth-det .prog-body h2 {
  font-size: 17px;
  line-height: 1.5;
  color: #B13336;
  margin: 16px 0 8px;
  letter-spacing: -0.01em;
}
.meth-det .prog-body h3 {
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  margin: 16px 0 8px;
}
.meth-det .prog-body ul,
.meth-det .prog-body ol {
  padding-left: 32px;
  margin: 8px 0;
}
.meth-det .prog-body li { margin-bottom: 8px; }
.meth-det .prog-body dl { margin: 8px 0; }
.meth-det .prog-body dt {
  font-size: 15px;
  color: #1b1b1b;
  font-weight: 600;
}
.meth-det .prog-body dd {
  margin-left: 32px;
  color: #3a3a3a;
  margin-bottom: 8px;
}
.meth-det .prog-body details {
  border: 1.5px solid #E0E8DB;
  border-radius: 7px;
  padding: 8px 16px;
  margin-bottom: 8px;
}
.meth-det .prog-body summary {
  cursor: pointer;
  color: #1b1b1b;
  font-size: 15px;
  line-height: 1.5;
}
.meth-det .prog-body abbr {
  text-decoration: underline dotted #B13336;
  cursor: help;
}

.meth-det .body-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 32px;
}

.meth-det .aside-note {
  background: #E0E8DB;
  border-radius: 7px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #3a3a3a;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
}
.meth-det .aside-note__head {
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  margin: 0 0 8px;
  padding-left: 16px;
  border-left: 3px solid #2DBE9F;
}

.meth-det .aside-price {
  background: #fff;
  border: 1.5px solid #E0E8DB;
  border-radius: 7px;
  padding: 16px;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
}
.meth-det .aside-price__amt {
  font-size: 48px;
  line-height: 1.1;
  color: #B13336;
  letter-spacing: -0.03em;
}
.meth-det .aside-price__currency {
  font-size: 26px;
  vertical-align: super;
}
.meth-det .aside-price__terms {
  font-size: 14px;
  line-height: 1.5;
  color: #6a6a6a;
  margin: 8px 0;
}
.meth-det .aside-price__note {
  font-size: 14px;
  line-height: 1.9;
  color: #3a3a3a;
  margin: 8px 0 16px;
  padding: 8px;
  background: #fff8f8;
  border-radius: 7px;
  border: 1px solid rgba(177,51,54,0.12);
}
.meth-det .aside-price__enrol {
  width: 100%;
  display: block;
  text-align: center;
}

.meth-det .desc-strip {
  background: linear-gradient(31deg, #E0E8DB 30%, #fff 100%);
  padding: 64px 32px;
}
.meth-det .desc-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.meth-det .desc-strip__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meth-det .desc-strip__head {
  font-size: 26px;
  line-height: 1.1;
  color: #1b1b1b;
  letter-spacing: -0.02em;
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid #B13336;
}

.meth-det .desc-strip__body {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a3a;
}
.meth-det .desc-strip__body p { margin: 0 0 8px; }
.meth-det .desc-strip__body h2 {
  font-size: 17px;
  line-height: 1.5;
  color: #B13336;
  margin: 16px 0 8px;
}
.meth-det .desc-strip__body h3 {
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  margin: 16px 0 8px;
}
.meth-det .desc-strip__body blockquote {
  margin: 16px 0;
  padding: 16px 16px 16px 32px;
  background: #fff;
  border-radius: 7px;
  border-left: none;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
  font-size: 17px;
  line-height: 1.9;
  color: #1b1b1b;
  position: relative;
}
.meth-det .desc-strip__body blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #B13336;
  border-radius: 7px 0 0 7px;
}
.meth-det .desc-strip__body cite {
  font-size: 14px;
  color: #6a6a6a;
  font-style: normal;
  display: block;
  margin-top: 8px;
}
.meth-det .desc-strip__body small {
  font-size: 14px;
  color: #6a6a6a;
}
.meth-det .desc-strip__body ol {
  padding-left: 32px;
  margin: 8px 0;
}
.meth-det .desc-strip__body li { margin-bottom: 8px; }
.meth-det .desc-strip__body details {
  border: 1.5px solid #E0E8DB;
  border-radius: 7px;
  padding: 8px 16px;
  margin-bottom: 8px;
}
.meth-det .desc-strip__body summary {
  cursor: pointer;
  color: #1b1b1b;
  font-size: 15px;
  line-height: 1.5;
}

.meth-det .desc-strip__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meth-det .pullquote {
  background: #B13336;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
}
.meth-det .pullquote__text {
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.meth-det .pullquote__attr {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

.meth-det .spec-tbl {
  width: 100%;
  border-collapse: collapse;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
}
.meth-det .spec-tbl th {
  background: #1b1b1b;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 16px;
  text-align: left;
}
.meth-det .spec-tbl td {
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 16px;
  border-bottom: 1px solid #E0E8DB;
  color: #1b1b1b;
}
.meth-det .spec-tbl tr:last-child td { border-bottom: none; }
.meth-det .spec-tbl td.val-hi { background: rgba(45,190,159,0.12); color: #1b6b5a; }
.meth-det .spec-tbl td.val-mid { background: rgba(177,51,54,0.08); color: #7a2224; }
.meth-det .spec-tbl td.val-lo { background: #E0E8DB; color: #3a3a3a; }
.meth-det .spec-tbl tr:nth-child(even) td:not(.val-hi):not(.val-mid):not(.val-lo) {
  background: #f5f7f3;
}

.meth-det .enrol-strip {
  background: #1b1b1b;
  padding: 64px 32px;
}
.meth-det .enrol-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.meth-det .enrol-strip__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meth-det .enrol-strip__head {
  font-size: 26px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}
.meth-det .enrol-strip__sub {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.meth-det .enrol-strip__sub.accent-row {
  color: #2DBE9F;
}
.meth-det .enrol-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.meth-det .btn-light {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  background: #fff;
  border-radius: 7px;
  padding: 16px 32px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
  white-space: nowrap;
}
.meth-det .btn-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2DBE9F;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}
.meth-det .btn-light:hover::before,
.meth-det .btn-light:focus::before { transform: translateX(0); }
.meth-det .btn-light span { position: relative; z-index: 1; }
.meth-det .btn-light:focus { outline: 2px solid #2DBE9F; outline-offset: 3px; }

.meth-det .seats-badge {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  text-align: right;
}
.meth-det .seats-badge strong {
  color: #B13336;
}

.meth-det .tooltip-wrap {
  position: relative;
  display: inline-block;
}
.meth-det .tooltip-wrap:focus-within .tooltip-box,
.meth-det .tooltip-wrap:hover .tooltip-box {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.meth-det .tooltip-box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1b1b1b;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 16px;
  border-radius: 7px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.34,1.56,0.64,1), transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 10;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
}
.meth-det .tooltip-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1b1b1b;
}

@media (max-width: 1024px) {
  .meth-det .lede {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  .meth-det .lede__img-wrap { max-width: 100%; }
  .meth-det .body-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  .meth-det .body-aside { position: static; }
  .meth-det .desc-strip__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .meth-det .enrol-strip__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .meth-det .enrol-strip__actions { align-items: flex-start; }
  .meth-det .seats-badge { text-align: left; }
}

@media (max-width: 768px) {
  .meth-det .lede { padding: 32px 16px; }
  .meth-det .lede__h1 { font-size: 26px; }
  .meth-det .pg-frame { padding: 0 16px; }
  .meth-det .divider-band { padding: 16px; }
  .meth-det .divider-band__sep { display: none; }
  .meth-det .body-grid { padding: 32px 16px; }
  .meth-det .desc-strip { padding: 32px 16px; }
  .meth-det .enrol-strip { padding: 32px 16px; }
  .meth-det .pullquote__text { font-size: 17px; }
  .meth-det .aside-price__amt { font-size: 26px; }
}

@media (max-width: 320px) {
  .meth-det .lede__actions { flex-direction: column; }
  .meth-det .lede__h1 { font-size: 26px; }
}

.cnt-us {
  background: #f4f2ee;
  position: relative;
  overflow: hidden;
}

.cnt-us .grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(177,51,54,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177,51,54,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: grid-pulse 6s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cnt-us .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.cnt-us .divider-dash {
  border: none;
  border-top: 2px dashed rgba(177,51,54,0.35);
  margin: 0;
  position: relative;
  z-index: 1;
}

.cnt-us .divider-dash::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #B13336;
  border-radius: 48px;
}

.cnt-us .reach-blk {
  padding: 96px 0 64px;
  background: linear-gradient(31deg, #2a1a1b 18%, #3d1c1e 72%, #1e2d2a 100%);
  position: relative;
  overflow: hidden;
}

.cnt-us .reach-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, rgba(177,51,54,0.18) 0%, rgba(45,190,159,0.08) 100%);
  pointer-events: none;
}

.cnt-us .reach-blk::after {
  content: '';
  position: absolute;
  top: -64px;
  right: -64px;
  width: 320px;
  height: 320px;
  border-radius: 48px;
  background: rgba(177,51,54,0.07);
  pointer-events: none;
  transform: rotate(18deg);
}

.cnt-us .reach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-end;
}

.cnt-us .reach-text {
  flex: 1 1 0;
}

.cnt-us .reach-tag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #2DBE9F;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #2DBE9F;
  padding-left: 16px;
}

.cnt-us .reach-h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f4f2ee;
  margin: 0 0 16px;
}

.cnt-us .reach-h1 span {
  color: #B13336;
}

.cnt-us .reach-sub {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(224,232,219,0.72);
  margin: 0;
  max-width: 420px;
}

.cnt-us .reach-img-col {
  flex: 0 0 340px;
  position: relative;
}

.cnt-us .reach-img-frame {
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
  filter: grayscale(1) contrast(1.15);
  transition: filter 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.cnt-us .reach-img-frame:hover {
  filter: grayscale(0.3) contrast(1.05);
}

.cnt-us .reach-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}

.cnt-us .reach-img-frame:hover img {
  transform: scale(1.05);
}

.cnt-us .reach-deco {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-radius: 7px;
  background: rgba(177,51,54,0.13);
  pointer-events: none;
}

.cnt-us .info-strip {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cnt-us .info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-us .info-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(224,232,219,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cnt-us .info-val {
  font-size: 15px;
  line-height: 1.5;
  color: #E0E8DB;
}

.cnt-us .info-val a {
  color: #2DBE9F;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.cnt-us .info-val a:hover {
  color: #f4f2ee;
}

.cnt-us .form-blk {
  padding: 64px 0;
  background: #f4f2ee;
  position: relative;
  z-index: 1;
}

.cnt-us .form-layout {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.cnt-us .form-aside {
  flex: 0 0 220px;
  padding-top: 8px;
}

.cnt-us .form-aside-heading {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a0d0e;
  margin: 0 0 16px;
  border-left: 3px solid #B13336;
  padding-left: 16px;
}

.cnt-us .form-aside-note {
  font-size: 14px;
  line-height: 1.9;
  color: #4a3535;
  margin: 0;
}

.cnt-us .form-aside-accent {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #B13336;
  margin-top: 16px;
  font-weight: 600;
}

.cnt-us .form-col {
  flex: 1 1 0;
}

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

.cnt-us .field-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.cnt-us .field-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
}

.cnt-us .field-grp.full {
  flex: 1 1 100%;
}

.cnt-us .field-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: #2a1a1b;
  letter-spacing: 0.04em;
}

.cnt-us .field-lbl span {
  color: #B13336;
  margin-left: 2px;
}

.cnt-us .field-inp {
  border: 1.5px solid rgba(177,51,54,0.22);
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #1a0d0e;
  background: #fff;
  box-shadow: inset 0 2px 4px rgba(177,51,54,0.06);
  outline: none;
  transition: border-color 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
  width: 100%;
  box-sizing: border-box;
}

.cnt-us .field-inp::placeholder {
  color: rgba(42,26,27,0.35);
  transition: opacity 0.22s ease;
}

.cnt-us .field-inp:focus::placeholder {
  opacity: 0;
}

.cnt-us .field-inp:focus {
  border-color: #B13336;
  box-shadow: inset 0 2px 4px rgba(177,51,54,0.1), 0 0 0 3px rgba(177,51,54,0.08);
}

.cnt-us .radio-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-us .radio-grp-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: #2a1a1b;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}

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

.cnt-us .radio-opt {
  position: relative;
}

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

.cnt-us .radio-opt label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 48px;
  border: 1.5px solid rgba(177,51,54,0.25);
  font-size: 14px;
  line-height: 1.5;
  color: #2a1a1b;
  cursor: pointer;
  background: #fff;
  transition: background 0.22s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s cubic-bezier(0.34,1.56,0.64,1), color 0.22s cubic-bezier(0.34,1.56,0.64,1);
  user-select: none;
}

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

.cnt-us .radio-opt label:hover {
  border-color: #B13336;
  background: rgba(177,51,54,0.06);
}

.cnt-us .radio-opt input[type="radio"]:focus-visible + label {
  outline: 2px solid #B13336;
  outline-offset: 2px;
}

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

.cnt-us .privacy-check {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #B13336;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.cnt-us .privacy-text {
  font-size: 14px;
  line-height: 1.9;
  color: #4a3535;
  margin: 0;
}

.cnt-us .privacy-text a {
  color: #B13336;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.cnt-us .privacy-text a:hover {
  color: #2DBE9F;
}

.cnt-us .submit-btn {
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 7px;
  border: none;
  background: #B13336;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
  transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1), transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  letter-spacing: 0.03em;
}

.cnt-us .submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2DBE9F;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.68,-0.55,0.27,1.55);
  z-index: 0;
}

.cnt-us .submit-btn:hover::before {
  transform: translateX(0);
}

.cnt-us .submit-btn:hover {
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
  transform: translateY(-1px);
}

.cnt-us .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
}

.cnt-us .submit-btn:focus-visible {
  outline: 2px solid #B13336;
  outline-offset: 3px;
}

.cnt-us .submit-btn-txt {
  position: relative;
  z-index: 1;
}

.cnt-us .channels-blk {
  padding: 64px 0 96px;
  background: #E0E8DB;
  position: relative;
}

.cnt-us .channels-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, rgba(45,190,159,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cnt-us .ch-head-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 32px;
}

.cnt-us .ch-heading {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a0d0e;
  margin: 0;
  border-left: 3px solid #2DBE9F;
  padding-left: 16px;
}

.cnt-us .ch-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #2a1a1b;
  margin: 0;
  max-width: 340px;
  text-align: right;
}

.cnt-us .ch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cnt-us .ch-card {
  background: #fff;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
  transition: box-shadow 0.28s cubic-bezier(0.34,1.56,0.64,1), transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnt-us .ch-card:hover {
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
  transform: translateY(-3px);
}

.cnt-us .ch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(31deg, #B13336 18%, #2DBE9F 100%);
}

.cnt-us .ch-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.cnt-us .ch-name {
  font-size: 17px;
  line-height: 1.1;
  color: #1a0d0e;
  margin: 0;
  letter-spacing: -0.01em;
}

.cnt-us .ch-detail {
  font-size: 14px;
  line-height: 1.9;
  color: #4a3535;
  margin: 0;
}

.cnt-us .ch-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: #B13336;
  text-decoration: none;
  border-bottom: 1px solid rgba(177,51,54,0.3);
  padding-bottom: 2px;
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s cubic-bezier(0.34,1.56,0.64,1);
  align-self: flex-start;
}

.cnt-us .ch-link:hover {
  color: #2DBE9F;
  border-color: #2DBE9F;
}

.cnt-us .ch-img-card {
  grid-column: span 1;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
  position: relative;
}

.cnt-us .ch-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}

.cnt-us .ch-img-card:hover img {
  transform: scale(1.05);
}

.cnt-us .addr-row {
  margin-top: 16px;
  padding: 16px;
  background: rgba(177,51,54,0.05);
  border-radius: 7px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.cnt-us .addr-icon {
  flex-shrink: 0;
}

.cnt-us .addr-text {
  font-size: 14px;
  line-height: 1.9;
  color: #2a1a1b;
  margin: 0;
}

@media (max-width: 1024px) {
  .cnt-us .reach-inner {
    flex-direction: column;
    gap: 32px;
  }
  .cnt-us .reach-img-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .cnt-us .ch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cnt-us .form-layout {
    flex-direction: column;
    gap: 32px;
  }
  .cnt-us .form-aside {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .cnt-us .reach-h1 {
    font-size: 26px;
  }
  .cnt-us .field-row {
    flex-direction: column;
    gap: 16px;
  }
  .cnt-us .ch-grid {
    grid-template-columns: 1fr;
  }
  .cnt-us .ch-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cnt-us .ch-desc {
    text-align: left;
  }
  .cnt-us .info-strip {
    flex-direction: column;
    gap: 16px;
  }
  .cnt-us .reach-inner {
    padding: 0 16px;
  }
  .cnt-us .pg-wrap {
    padding: 0 16px;
  }
}

@media (max-width: 320px) {
  .cnt-us .reach-h1 {
    font-size: 26px;
  }
  .cnt-us .submit-btn {
    width: 100%;
  }
  .cnt-us .radio-opts {
    flex-direction: column;
  }
}

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

.mthd .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.mthd .diamond-div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 32px 0 0;
  justify-content: center;
}

.mthd .diamond-div span {
  width: 6px;
  height: 6px;
  background: #B13336;
  transform: rotate(45deg);
  display: inline-block;
  opacity: 0.4;
}

.mthd .diamond-div span:nth-child(3n+1) { opacity: 1; background: #B13336; }
.mthd .diamond-div span:nth-child(3n+2) { opacity: 0.5; background: #2DBE9F; }
.mthd .diamond-div span:nth-child(3n) { opacity: 0.3; background: #B13336; }

.mthd .ttl-blk {
  position: relative;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.mthd .ttl-blk .side-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 7px;
  opacity: 0.55;
  filter: saturate(0.7) brightness(1.05);
  animation: blurIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both;
}

.mthd .ttl-blk .side-img.right {
  opacity: 0.45;
}

@keyframes blurIn {
  from { filter: blur(12px) saturate(0.3); opacity: 0; }
  to { filter: blur(0) saturate(0.7) brightness(1.05); opacity: 0.55; }
}

.mthd .ttl-blk .side-img.right {
  animation: blurInRight 0.32s cubic-bezier(0.34,1.56,0.64,1) 0.06s both;
}

@keyframes blurInRight {
  from { filter: blur(12px) saturate(0.3); opacity: 0; }
  to { filter: blur(0) saturate(0.7) brightness(1.05); opacity: 0.45; }
}

.mthd .ttl-center {
  text-align: center;
}

.mthd .ttl-center h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  color: #222;
  margin: 0 0 16px;
}

.mthd .ttl-center h1 .accent-br {
  color: #B13336;
}

.mthd .ttl-center .slogan {
  font-size: 17px;
  line-height: 1.5;
  color: #555;
  font-style: italic;
  margin: 0;
}

.mthd .wave-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 16px;
}

.mthd .wave-div svg {
  display: block;
  width: 100%;
}

.mthd .about-strip {
  background: linear-gradient(31deg, #E0E8DB 18%, #fff 72%, #f5f8f4 100%);
  padding: 48px 32px;
}

.mthd .about-strip .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mthd .about-strip .blk-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.mthd .about-strip .blk-head .v-line {
  width: 3px;
  min-height: 36px;
  background: #B13336;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 4px;
}

.mthd .about-strip .blk-head h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #222;
  margin: 0;
}

.mthd .about-strip p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 16px;
}

.mthd .about-strip p:last-child { margin-bottom: 0; }

.mthd .about-strip .note-aside {
  font-size: 14px;
  line-height: 1.5;
  color: #2DBE9F;
  border-top: 1px solid #2DBE9F;
  padding-top: 16px;
  margin-top: 16px;
}

.mthd .about-strip .accent-line {
  font-size: 15px;
  line-height: 1.5;
  color: #B13336;
  font-weight: 600;
  margin: 0 0 16px;
}

.mthd .steps-band {
  padding: 64px 32px;
  background: #fff;
  position: relative;
}

.mthd .steps-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 5% 95%, rgba(45,190,159,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.mthd .steps-band .pg-wrap {
  position: relative;
}

.mthd .steps-band .sec-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.mthd .steps-band .sec-head .v-line {
  width: 3px;
  min-height: 32px;
  background: #2DBE9F;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 4px;
}

.mthd .steps-band .sec-head h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #222;
  margin: 0;
}

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

.mthd .step-card {
  background: #fff;
  border-radius: 7px;
  padding: 32px 16px;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08), 0 6px 14px -2px rgba(177,51,54,0.11);
  position: relative;
  overflow: hidden;
}

.mthd .step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(31deg, #B13336 30%, #2DBE9F 100%);
  border-radius: 7px 7px 0 0;
}

.mthd .step-num {
  font-size: 48px;
  line-height: 1.1;
  color: #E0E8DB;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.mthd .step-card h4 {
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  margin: 0 0 8px;
  font-weight: 700;
}

.mthd .step-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.mthd .cards-band {
  background: linear-gradient(31deg, #f7f9f6 12%, #fff 68%, #E0E8DB 100%);
  padding: 64px 32px;
}

.mthd .cards-band .sec-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.mthd .cards-band .sec-head .v-line {
  width: 3px;
  min-height: 32px;
  background: #B13336;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 4px;
}

.mthd .cards-band .sec-head h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #222;
  margin: 0;
}

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

.mthd .course-card {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08), 0 6px 14px -2px rgba(177,51,54,0.11), 0 9px 36px -2px rgba(177,51,54,0.14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1), transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.mthd .course-card:hover {
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.12), 0 6px 14px -2px rgba(177,51,54,0.18), 0 9px 36px -2px rgba(177,51,54,0.22);
  transform: translateY(-4px);
}

.mthd .card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.mthd .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(1.02);
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}

.mthd .course-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

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

.mthd .card-tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.mthd .tag {
  font-size: 14px;
  line-height: 1.5;
  background: #E0E8DB;
  color: #444;
  border-radius: 48px;
  padding: 2px 8px;
  font-weight: 600;
}

.mthd .tag.usr {
  background: rgba(45,190,159,0.12);
  color: #1a8a72;
}

.mthd .card-body h3 {
  font-size: 17px;
  line-height: 1.5;
  color: #222;
  margin: 0;
  font-weight: 700;
}

.mthd .card-body .desc {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.mthd .card-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #E0E8DB;
  padding-top: 8px;
  margin-top: 8px;
}

.mthd .meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mthd .meta-item .lbl {
  font-size: 14px;
  line-height: 1.5;
  color: #888;
}

.mthd .meta-item .val {
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  font-weight: 600;
}

.mthd .meta-item .val.seats {
  color: #B13336;
}

.mthd .card-price-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.mthd .price-blk .price-main {
  font-size: 26px;
  line-height: 1.1;
  color: #B13336;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mthd .price-blk .price-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #888;
}

.mthd .price-blk .price-note {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  font-style: italic;
}

.mthd .btn-enrol {
  display: inline-block;
  padding: 8px 16px;
  background: #B13336;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}

.mthd .btn-enrol::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  background: #2DBE9F;
  width: 200%;
  transition: left 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.mthd .btn-enrol:hover::before {
  left: 0;
}

.mthd .btn-enrol span {
  position: relative;
  z-index: 1;
}

.mthd .team-band {
  padding: 64px 32px;
  background: #fff;
}

.mthd .team-band .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.mthd .team-band .sec-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.mthd .team-band .sec-head .v-line {
  width: 3px;
  min-height: 32px;
  background: #B13336;
  border-radius: 7px;
  flex-shrink: 0;
  margin-top: 4px;
}

.mthd .team-band .sec-head h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #222;
  margin: 0;
}

.mthd .team-band .intro-txt p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 16px;
}

.mthd .team-band .intro-txt p:last-child { margin-bottom: 0; }

.mthd .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mthd .team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 16px;
  background: linear-gradient(31deg, #f7f9f6 0%, #fff 100%);
  border-radius: 7px;
  box-shadow: 0 2px 2px -2px rgba(45,190,159,0.08), 0 6px 14px -2px rgba(45,190,159,0.11);
}

.mthd .portrait-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08), 0 6px 14px -2px rgba(177,51,54,0.11);
}

.mthd .portrait-wrap img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mthd .team-card .member-name {
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.mthd .team-card .member-role {
  font-size: 14px;
  line-height: 1.5;
  color: #2DBE9F;
  text-align: center;
  margin: 0;
}

.mthd .team-card .member-note {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  margin: 0;
}

.mthd .cta-band {
  background: linear-gradient(31deg, #B13336 12%, #8a1f22 88%);
  padding: 64px 32px;
}

.mthd .cta-band .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mthd .cta-band h2 {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}

.mthd .cta-band p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.mthd .cta-form {
  background: #fff;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
}

.mthd .cta-form h4 {
  font-size: 17px;
  line-height: 1.5;
  color: #222;
  margin: 0 0 16px;
  font-weight: 700;
}

.mthd .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.mthd .form-field label {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  font-weight: 600;
}

.mthd .form-field input,
.mthd .form-field textarea {
  border: 1px solid #E0E8DB;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  background: #fff;
  box-shadow: inset 0 2px 4px rgba(177,51,54,0.06);
  transition: border-color 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.mthd .form-field input::placeholder,
.mthd .form-field textarea::placeholder {
  color: #aaa;
  transition: opacity 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.mthd .form-field input:focus::placeholder,
.mthd .form-field textarea:focus::placeholder {
  opacity: 0;
}

.mthd .form-field input:focus,
.mthd .form-field textarea:focus {
  border-color: #2DBE9F;
  box-shadow: inset 0 2px 4px rgba(45,190,159,0.08), 0 0 0 2px rgba(45,190,159,0.15);
}

.mthd .form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.mthd .btn-submit {
  width: 100%;
  padding: 16px;
  background: #B13336;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.mthd .btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 200%;
  background: #222;
  transition: left 0.28s cubic-bezier(0.68,-0.55,0.27,1.55);
  z-index: 0;
}

.mthd .btn-submit:hover::before {
  left: 0;
}

.mthd .btn-submit span {
  position: relative;
  z-index: 1;
}

.mthd .btn-submit:focus {
  outline: 2px solid #2DBE9F;
  outline-offset: 2px;
}

.mthd .bracket-frame {
  display: inline-block;
  position: relative;
  padding: 0 16px;
}

.mthd .bracket-frame::before,
.mthd .bracket-frame::after {
  font-size: 48px;
  line-height: 1;
  color: #2DBE9F;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}

.mthd .bracket-frame::before {
  content: '[';
  left: 0;
}

.mthd .bracket-frame::after {
  content: ']';
  right: 0;
}

@media (max-width: 1024px) {
  .mthd .ttl-blk {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    padding: 48px 16px 32px;
  }

  .mthd .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mthd .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .mthd .team-band .pg-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mthd .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mthd .cta-band .pg-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mthd .about-strip .pg-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .mthd .ttl-blk {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }

  .mthd .ttl-blk .side-img {
    display: none;
  }

  .mthd .ttl-center h1 {
    font-size: 26px;
  }

  .mthd .course-grid {
    grid-template-columns: 1fr;
  }

  .mthd .steps-list {
    grid-template-columns: 1fr;
  }

  .mthd .team-grid {
    grid-template-columns: 1fr;
  }

  .mthd .about-strip,
  .mthd .steps-band,
  .mthd .cards-band,
  .mthd .team-band,
  .mthd .cta-band {
    padding: 32px 16px;
  }

  .mthd .pg-wrap {
    padding: 0 16px;
  }
}

@media (max-width: 320px) {
  .mthd .ttl-center h1 {
    font-size: 26px;
  }

  .mthd .price-blk .price-main {
    font-size: 17px;
  }
}

.srv-pg {
  background: #fff;
  overflow-x: clip;
  padding: 0;
}

.srv-pg .lead {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: 480px;
  padding-top: 96px;
  padding-bottom: 64px;
  padding-left: 0;
  padding-right: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  align-items: start;
}

.srv-pg .lead-txt {
  padding-left: 64px;
  padding-right: 32px;
  padding-top: 32px;
  position: relative;
  z-index: 1;
}

.srv-pg .lead-txt::before {
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(177,51,54,0.10);
  border-radius: 7px;
  transform: rotate(45deg);
  position: absolute;
  top: -32px;
  left: 32px;
  pointer-events: none;
}

.srv-pg .eyebrow {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #2DBE9F;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.srv-pg .lead-h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b1b1b;
  margin: 0 0 32px 0;
  max-width: 560px;
}

.srv-pg .lead-h1 span {
  color: #B13336;
}

.srv-pg .lead-meta {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.srv-pg .lead-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-pg .lead-stat strong {
  font-size: 26px;
  line-height: 1.1;
  color: #B13336;
  letter-spacing: -0.02em;
}

.srv-pg .lead-stat span {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.srv-pg .lead-img-strip {
  width: 280px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.srv-pg .lead-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%) contrast(1.15);
  opacity: 0.88;
}

.srv-pg .lead-img-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, rgba(177,51,54,0.18) 22%, transparent 80%);
  pointer-events: none;
}

.srv-pg .type-cursor {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  max-width: 440px;
  margin-bottom: 32px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #B13336;
  animation: type-in 2.8s steps(60, end) 0.3s both, blink-cur 0.75s step-end 3.1s infinite;
  width: 0;
}

@keyframes type-in {
  from { width: 0; }
  to { width: 440px; }
}

@keyframes blink-cur {
  0%, 100% { border-color: #B13336; }
  50% { border-color: transparent; }
}

.srv-pg .divider-brush {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.srv-pg .divider-brush svg {
  display: block;
  width: 100%;
}

.srv-pg .svc-strip {
  background: #E0E8DB;
  position: relative;
  padding: 0;
}

.srv-pg .svc-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(31deg, #B13336 22%, #2DBE9F 100%);
}

.srv-pg .svc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 64px 64px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.srv-pg .svc-item {
  background: #fff;
  border-radius: 7px;
  padding: 32px;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08), 0 6px 14px -2px rgba(177,51,54,0.11);
  position: relative;
  transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1), transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.srv-pg .svc-item:hover {
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.11), 0 6px 14px -2px rgba(177,51,54,0.16), 0 9px 36px -2px rgba(177,51,54,0.14);
  transform: translateY(-4px);
}

.srv-pg .svc-item.featured {
  grid-column: span 1;
  border: 2px solid #2DBE9F;
  outline: 1px solid rgba(45,190,159,0.3);
  outline-offset: 4px;
}

.srv-pg .svc-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.srv-pg .svc-h {
  font-size: 17px;
  line-height: 1.5;
  color: #1b1b1b;
  margin: 0 0 8px 0;
  padding-left: 16px;
  border-left: 3px solid #B13336;
  letter-spacing: -0.01em;
}

.srv-pg .svc-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  margin: 0;
}

.srv-pg .svc-accent-row {
  font-size: 14px;
  line-height: 1.5;
  color: #B13336;
  font-weight: 600;
  margin-top: 16px;
  display: block;
}

.srv-pg .flow-sect {
  background: #fff;
  position: relative;
  padding: 96px 0 64px;
}

.srv-pg .flow-sect::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(31deg, #2DBE9F 22%, #B13336 100%);
}

.srv-pg .flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.srv-pg .flow-lft h2 {
  font-size: 26px;
  line-height: 1.1;
  color: #1b1b1b;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  padding-left: 16px;
  border-left: 3px solid #2DBE9F;
}

.srv-pg .flow-lft p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 32px 0;
}

.srv-pg .flow-lft aside {
  font-size: 14px;
  line-height: 1.5;
  color: #888;
  border-radius: 7px;
  background: #E0E8DB;
  padding: 16px;
}

.srv-pg .timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.srv-pg .tl-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  position: relative;
  padding-bottom: 32px;
}

.srv-pg .tl-item:last-child {
  padding-bottom: 0;
}

.srv-pg .tl-track {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.srv-pg .tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 48px;
  background: #fff;
  border: 2px solid #B13336;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.22s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.srv-pg .tl-item.done .tl-dot {
  background: #2DBE9F;
  border-color: #2DBE9F;
}

.srv-pg .tl-item.active .tl-dot {
  background: #B13336;
  border-color: #B13336;
}

.srv-pg .tl-line {
  width: 2px;
  flex: 1;
  background: #ddd;
  margin-top: 4px;
}

.srv-pg .tl-item.done .tl-line {
  background: #2DBE9F;
}

.srv-pg .tl-body h5 {
  font-size: 15px;
  line-height: 1.5;
  color: #1b1b1b;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.srv-pg .tl-body p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.srv-pg .tl-status {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 48px;
  padding: 0 8px;
  margin-bottom: 8px;
  font-weight: 600;
}

.srv-pg .tl-status.done { background: rgba(45,190,159,0.15); color: #1a8c72; }
.srv-pg .tl-status.active { background: rgba(177,51,54,0.12); color: #B13336; }
.srv-pg .tl-status.pending { background: #f0f0f0; color: #777; }

.srv-pg .pano-sect {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 96px 0;
  background: #1b1b1b;
}

.srv-pg .pano-bg {
  position: absolute;
  inset: 0;
  width: 140%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  animation: pano-move 18s linear infinite alternate;
  pointer-events: none;
}

@keyframes pano-move {
  from { transform: translateX(0); }
  to { transform: translateX(-28%); }
}

.srv-pg .pano-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.srv-pg .pano-form-wrap {
  background: rgba(255,255,255,0.97);
  border-radius: 7px;
  padding: 32px;
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
}

.srv-pg .pano-form-wrap h3 {
  font-size: 26px;
  line-height: 1.1;
  color: #1b1b1b;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
  padding-left: 16px;
  border-left: 3px solid #B13336;
}

.srv-pg .pano-form-wrap p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 32px 0;
}

.srv-pg .form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.srv-pg .f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-pg .f-group label {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-weight: 600;
}

.srv-pg .f-group input,
.srv-pg .f-group select {
  font-size: 15px;
  line-height: 1.5;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 7px;
  background: #fff;
  color: #1b1b1b;
  box-shadow: inset 0 2px 4px rgba(177,51,54,0.06);
  transition: border-color 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
  outline: none;
  width: 100%;
}

.srv-pg .f-group input::placeholder {
  color: #aaa;
  transition: color 0.28s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.srv-pg .f-group input:focus::placeholder { color: transparent; }

.srv-pg .f-group input:focus,
.srv-pg .f-group select:focus {
  border-color: #2DBE9F;
  box-shadow: inset 0 2px 4px rgba(45,190,159,0.10), 0 0 0 2px rgba(45,190,159,0.18);
}

.srv-pg .f-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B13336' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.srv-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: 8px;
}

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

.srv-pg .privacy-row label {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.srv-pg .privacy-row a {
  color: #B13336;
  text-decoration: underline;
}

.srv-pg .btn-submit {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  background: #B13336;
  border: none;
  border-radius: 7px;
  padding: 16px 32px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.22);
  transition: color 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s cubic-bezier(0.34,1.56,0.64,1);
  width: 100%;
}

.srv-pg .btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2DBE9F;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.srv-pg .btn-submit:hover::before { transform: translateX(0); }
.srv-pg .btn-submit:hover { box-shadow: 0 9px 36px -2px rgba(45,190,159,0.22); }

.srv-pg .btn-submit span {
  position: relative;
  z-index: 1;
}

.srv-pg .btn-submit:focus {
  outline: 2px solid #2DBE9F;
  outline-offset: 3px;
}

.srv-pg .pano-copy {
  padding-top: 32px;
}

.srv-pg .pano-copy h2 {
  font-size: 26px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  padding-left: 16px;
  border-left: 3px solid #2DBE9F;
}

.srv-pg .pano-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  margin: 0 0 32px 0;
}

.srv-pg .pano-team {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv-pg .pano-member {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 16px;
}

.srv-pg .pano-portrait {
  width: 64px;
  height: 82px;
  flex-shrink: 0;
  overflow: hidden;
}

.srv-pg .pano-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  display: block;
}

.srv-pg .pano-member-info h6 {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.srv-pg .pano-member-info span {
  font-size: 14px;
  line-height: 1.5;
  color: #2DBE9F;
}

@media (max-width: 1024px) {
  .srv-pg .lead {
    grid-template-columns: 1fr 200px;
  }
  .srv-pg .lead-h1 { font-size: 48px; }
  .srv-pg .svc-inner {
    grid-template-columns: 1fr 1fr;
    padding: 64px 32px 64px 64px;
  }
  .srv-pg .flow-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 32px;
  }
  .srv-pg .pano-inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .srv-pg .lead {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 32px;
  }
  .srv-pg .lead-img-strip { display: none; }
  .srv-pg .lead-txt { padding-left: 32px; padding-right: 32px; }
  .srv-pg .lead-h1 { font-size: 26px; }
  .srv-pg .type-cursor { font-size: 14px; width: 0; }
  @keyframes type-in { to { width: 280px; } }
  .srv-pg .svc-inner {
    grid-template-columns: 1fr;
    padding: 32px 32px 32px 48px;
  }
  .srv-pg .flow-inner { padding: 0 32px; }
  .srv-pg .flow-sect { padding: 64px 0 32px; }
  .srv-pg .pano-inner { grid-template-columns: 1fr; padding: 0 32px; }
  .srv-pg .pano-sect { padding: 64px 0; }
  .srv-pg .lead-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 320px) {
  .srv-pg .lead-txt { padding-left: 16px; padding-right: 16px; }
  .srv-pg .svc-inner { padding: 32px 16px 32px 32px; }
  .srv-pg .pano-inner { padding: 0 16px; }
  .srv-pg .flow-inner { padding: 0 16px; }
}

.frnt {
  max-width: 100%;
  overflow-x: hidden;
}

.frnt .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}


.frnt .tbl {
  padding: 96px 0 64px;
  background: #fff;
  position: relative;
}

.frnt .tbl-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.frnt .tbl-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.frnt .tbl-pre {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #B13336;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.5;
}

.frnt .tbl-q {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #B13336;
}

.frnt .tbl-ans {
  font-size: 17px;
  line-height: 1.9;
  color: #3a3a3a;
  margin: 0;
}

.frnt .tbl-accent {
  font-size: 15px;
  line-height: 1.5;
  color: #B13336;
  font-weight: 600;
}

.frnt .tbl-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #B13336;
  text-decoration: none;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
  transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1), transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  align-self: flex-start;
}

.frnt .tbl-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #8e2224;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.frnt .tbl-btn:hover::before { transform: translateX(0); }
.frnt .tbl-btn:hover { box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14); transform: translateY(-2px); }
.frnt .tbl-btn span { position: relative; z-index: 1; }

.frnt .tbl-img-col {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.frnt .tbl-shape {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 48px 7px 48px 7px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
}

.frnt .tbl-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .tbl-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(177,51,54,0.18);
  pointer-events: none;
}

.frnt .tbl-deco {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 48px;
  border: 2px solid rgba(177,51,54,0.22);
  pointer-events: none;
}

.frnt .tbl-deco-2 {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: rgba(45,190,159,0.15);
  pointer-events: none;
}


.frnt .sup {
  background: #E0E8DB;
  padding: 64px 0;
}

.frnt .sup-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.frnt .sup-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.frnt .sup-lbl {
  font-size: 14px;
  color: #2DBE9F;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.frnt .sup-h {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #2DBE9F;
}

.frnt .sup-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frnt .sup-p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a3a;
  margin: 0;
}

.frnt .sup-p.accent-row {
  font-size: 15px;
  line-height: 1.5;
  color: #B13336;
  font-weight: 600;
}

.frnt .sup-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.frnt .sup-note {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  padding: 16px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
}

.frnt .sup-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
}

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


.frnt .curr {
  padding: 96px 0;
  background: #fff;
  position: relative;
}

.frnt .curr-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.frnt .curr-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.frnt .curr-head {
  flex: 1;
}

.frnt .curr-lbl {
  font-size: 14px;
  color: #B13336;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.frnt .curr-h {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #B13336;
}

.frnt .curr-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frnt .curr-p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a3a;
  margin: 0;
}

.frnt .curr-p.accent-row {
  color: #B13336;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}

.frnt .curr-cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 16px;
  align-items: start;
}

.frnt .curr-card {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.frnt .curr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
}

.frnt .curr-card.tall {
  margin-top: -32px;
}

.frnt .curr-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.frnt .curr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .curr-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frnt .curr-card-tag {
  font-size: 14px;
  color: #2DBE9F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.frnt .curr-card-h {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

.frnt .curr-card-p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}


.frnt .ppl {
  position: relative;
  padding: 96px 0;
  background: #1b1b1b;
}

.frnt .ppl-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.frnt .ppl-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .ppl-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,27,27,0.82);
}

.frnt .ppl-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.frnt .ppl-lbl {
  font-size: 14px;
  color: #2DBE9F;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.frnt .ppl-h {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 700;
  margin: 0 0 32px;
  padding-left: 16px;
  border-left: 3px solid #2DBE9F;
}

.frnt .ppl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.frnt .ppl-card {
  background: rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 6px 14px -2px rgba(45,190,159,0.11);
  transition: background 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.frnt .ppl-card:hover {
  background: rgba(255,255,255,0.1);
}

.frnt .ppl-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 2px -2px rgba(45,190,159,0.08);
}

.frnt .ppl-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .ppl-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frnt .ppl-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.frnt .ppl-role {
  font-size: 14px;
  color: #2DBE9F;
  font-weight: 600;
  line-height: 1.5;
}

.frnt .ppl-bio {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.frnt .ppl-note {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}

.frnt .ppl-note strong {
  color: #fff;
}


.frnt .cond {
  padding: 64px 0 96px;
  background: #E0E8DB;
}

.frnt .cond-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.frnt .cond-lbl {
  font-size: 14px;
  color: #B13336;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.frnt .cond-h {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0 0 32px;
  padding-left: 16px;
  border-left: 3px solid #B13336;
}

.frnt .cond-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.frnt .cond-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frnt .cond-item {
  background: #fff;
  border-radius: 7px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: box-shadow 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.frnt .cond-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(177,51,54,0.06);
  transition: width 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.frnt .cond-item:hover::after {
  width: 100%;
}

.frnt .cond-item:hover {
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
}

.frnt .cond-item-h {
  font-size: 15px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.frnt .cond-item-p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 1;
}

.frnt .cond-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.frnt .cond-sum {
  font-size: 17px;
  line-height: 1.9;
  color: #3a3a3a;
  margin: 0;
}

.frnt .cond-sum.accent-row {
  font-size: 15px;
  line-height: 1.5;
  color: #B13336;
  font-weight: 600;
}

.frnt .cond-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 7px;
  border: 2px solid #B13336;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #B13336;
  background: transparent;
  text-decoration: none;
  box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
  transition: color 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
  align-self: flex-start;
}

.frnt .cond-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #B13336;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.frnt .cond-link:hover::before { transform: translateX(0); }
.frnt .cond-link:hover { color: #fff; box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11); }
.frnt .cond-link span { position: relative; z-index: 1; }


@keyframes col-reveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.frnt .curr-card:nth-child(1) { animation: col-reveal 0.32s cubic-bezier(0.34,1.56,0.64,1) 0.1s both; }
.frnt .curr-card:nth-child(2) { animation: col-reveal 0.32s cubic-bezier(0.34,1.56,0.64,1) 0.22s both; }
.frnt .curr-card:nth-child(3) { animation: col-reveal 0.32s cubic-bezier(0.34,1.56,0.64,1) 0.34s both; }

.frnt .ppl-card:nth-child(1) { animation: col-reveal 0.3s cubic-bezier(0.34,1.56,0.64,1) 0.1s both; }
.frnt .ppl-card:nth-child(2) { animation: col-reveal 0.3s cubic-bezier(0.34,1.56,0.64,1) 0.22s both; }


@media (max-width: 1024px) {
  .frnt .tbl-inner { grid-template-columns: 1fr; gap: 32px; }
  .frnt .tbl-img-col { display: none; }
  .frnt .sup-inner { grid-template-columns: 1fr; gap: 32px; }
  .frnt .curr-top { flex-direction: column; gap: 32px; }
  .frnt .curr-cols { grid-template-columns: 1fr 1fr; }
  .frnt .curr-card.tall { margin-top: 0; }
  .frnt .ppl-grid { grid-template-columns: 1fr; }
  .frnt .cond-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .frnt .tbl { padding: 64px 0 32px; }
  .frnt .tbl-q { font-size: 26px; }
  .frnt .curr-cols { grid-template-columns: 1fr; }
  .frnt .ppl-card { flex-direction: column; }
  .frnt .pg-wrap { padding: 0 16px; }
  .frnt .tbl-inner,
  .frnt .sup-inner,
  .frnt .curr-inner,
  .frnt .ppl-inner,
  .frnt .cond-inner { padding: 0 16px; }
}

@media (max-width: 320px) {
  .frnt .tbl-q { font-size: 26px; }
  .frnt .tbl-btn { padding: 16px; font-size: 14px; }
}

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

.abt-pg .lead-blk {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 32px 64px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.abt-pg .lead-blk__txt {
    position: relative;
}

.abt-pg .lead-blk__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #2DBE9F;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.abt-pg .lead-blk__eyebrow-line {
    width: 32px;
    height: 2px;
    background: #2DBE9F;
    border-radius: 7px;
}

.abt-pg .lead-blk__h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1b1b1b;
    margin: 0 0 32px;
}

.abt-pg .lead-blk__h1 span {
    color: #B13336;
    display: block;
}

.abt-pg .lead-blk__desc {
    font-size: 17px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0 0 16px;
    max-width: 520px;
}

.abt-pg .lead-blk__desc.accent-row {
    color: #B13336;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 32px;
}

.abt-pg .lead-blk__stat-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
}

.abt-pg .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-pg .stat-item__num {
    font-size: 48px;
    line-height: 1.1;
    color: #B13336;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.abt-pg .stat-item__label {
    font-size: 14px;
    line-height: 1.5;
    color: #5a5a5a;
    max-width: 100px;
}

.abt-pg .lead-blk__img-col {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.abt-pg .lead-blk__bracket {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.abt-pg .lead-blk__bracket-bl {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.abt-pg .lead-blk__img-wrap {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
}

.abt-pg .lead-blk__img-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.85) contrast(1.05);
}

.abt-pg .curve-div {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.abt-pg .curve-div svg {
    display: block;
    width: 100%;
}

.abt-pg .approach-band {
    background: #E0E8DB;
    padding: 64px 0 0;
}

.abt-pg .approach-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px 64px;
}

.abt-pg .approach-hd {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
}

.abt-pg .approach-hd__accent {
    width: 4px;
    min-height: 56px;
    background: #B13336;
    border-radius: 7px;
    flex-shrink: 0;
    margin-top: 4px;
}

.abt-pg .approach-hd__text h2 {
    font-size: 26px;
    line-height: 1.1;
    color: #1b1b1b;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}

.abt-pg .approach-hd__text p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
}

.abt-pg .approach-grid {
    display: grid;
    grid-template-columns: 60px 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.abt-pg .approach-grid__accent-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.abt-pg .step-badge {
    width: 48px;
    height: 48px;
    border-radius: 7px;
    background: #B13336;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.abt-pg .step-badge:hover {
    transform: scale(1.12);
}

.abt-pg .approach-card {
    background: #fff;
    border-radius: 7px;
    padding: 32px;
    box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
    transition: box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1), transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
    cursor: default;
}

.abt-pg .approach-card:hover {
    box-shadow: 0 9px 36px -2px rgba(177,51,54,0.14);
    transform: translateY(-4px);
    border: 1.5px dashed #B13336;
}

.abt-pg .approach-card h4 {
    font-size: 15px;
    line-height: 1.5;
    color: #1b1b1b;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.abt-pg .approach-card p {
    font-size: 14px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0;
}

.abt-pg .approach-card .qty-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2DBE9F;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 48px;
    padding: 0 8px;
    min-width: 24px;
    height: 24px;
    margin-bottom: 8px;
    box-shadow: 0 2px 2px -2px rgba(45,190,159,0.08);
}

.abt-pg .team-band {
    background: #fff;
    padding: 96px 0 64px;
}

.abt-pg .team-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.abt-pg .team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.abt-pg .team-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abt-pg .team-hd {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.abt-pg .team-hd__bar {
    width: 4px;
    min-height: 48px;
    background: #2DBE9F;
    border-radius: 7px;
    flex-shrink: 0;
    margin-top: 4px;
}

.abt-pg .team-hd h2 {
    font-size: 26px;
    line-height: 1.1;
    color: #1b1b1b;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}

.abt-pg .team-hd p {
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
}

.abt-pg .team-body-txt {
    font-size: 15px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0;
}

.abt-pg .team-body-txt.accent-row {
    color: #B13336;
    font-weight: 600;
    font-size: 15px;
}

.abt-pg .team-img-wrap {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
    position: relative;
}

.abt-pg .team-img-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-pg .team-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abt-pg .profile-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 32px;
    border-radius: 7px;
    background: #E0E8DB;
    box-shadow: 0 2px 2px -2px rgba(45,190,159,0.08);
    transition: box-shadow 0.28s cubic-bezier(0.68,-0.55,0.27,1.55), transform 0.28s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.abt-pg .profile-row:hover {
    box-shadow: 0 9px 36px -2px rgba(45,190,159,0.14);
    transform: translateX(6px);
    border: 1.5px dashed #2DBE9F;
}

.abt-pg .profile-row__portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 2px -2px rgba(177,51,54,0.08);
}

.abt-pg .profile-row__portrait img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-pg .profile-row__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-pg .profile-row__name {
    font-size: 17px;
    line-height: 1.1;
    color: #1b1b1b;
    font-weight: 700;
    margin: 0;
}

.abt-pg .profile-row__role {
    font-size: 14px;
    line-height: 1.5;
    color: #B13336;
    margin: 0;
}

.abt-pg .profile-row__bio {
    font-size: 14px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0;
}

.abt-pg .img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abt-pg .img-pair__item {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 2px 2px -2px rgba(45,190,159,0.08);
}

.abt-pg .img-pair__item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-pg .emerge-in {
    opacity: 0;
    transform: translateY(18px);
    animation: emergeUp 0.32s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.abt-pg .emerge-in:nth-child(1) { animation-delay: 0.05s; }
.abt-pg .emerge-in:nth-child(2) { animation-delay: 0.12s; }
.abt-pg .emerge-in:nth-child(3) { animation-delay: 0.19s; }
.abt-pg .emerge-in:nth-child(4) { animation-delay: 0.26s; }

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

@media (max-width: 1024px) {
    .abt-pg .lead-blk {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 64px 32px;
    }
    .abt-pg .lead-blk__img-col {
        max-width: 560px;
    }
    .abt-pg .approach-grid {
        grid-template-columns: 1fr 1fr;
    }
    .abt-pg .approach-grid__accent-col {
        display: none;
    }
    .abt-pg .team-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .abt-pg .lead-blk__h1 {
        font-size: 26px;
    }
    .abt-pg .lead-blk__stat-row {
        gap: 16px;
    }
    .abt-pg .stat-item__num {
        font-size: 26px;
    }
    .abt-pg .approach-grid {
        grid-template-columns: 1fr;
    }
    .abt-pg .img-pair {
        grid-template-columns: 1fr;
    }
    .abt-pg .team-band {
        padding: 64px 0 32px;
    }
    .abt-pg .approach-inner {
        padding: 0 16px 64px;
    }
    .abt-pg .team-inner {
        padding: 0 16px;
    }
    .abt-pg .lead-blk {
        padding: 32px 16px;
    }
}

@media (max-width: 320px) {
    .abt-pg .lead-blk__h1 {
        font-size: 26px;
    }
    .abt-pg .approach-card {
        padding: 16px;
    }
    .abt-pg .profile-row {
        flex-direction: column;
    }
}

.success-pg {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #fff;
}

.success-pg .result-wrap {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.success-pg .mark-ring {
  width: 72px;
  height: 72px;
  border-radius: 48px;
  background: #E0E8DB;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -2px rgba(45,190,159,0.11);
  flex-shrink: 0;
}

.success-pg .mark-ring svg {
  display: block;
}

.success-pg .result-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 560px;
}

.success-pg .result-body__heading {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b1b1b;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #B13336;
}

.success-pg .result-body__sub {
  font-size: 17px;
  line-height: 1.5;
  color: #3a3a3a;
  margin: 0;
}

.success-pg .result-body__note {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.success-pg .accent-line {
  color: #B13336;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

.success-pg .action-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.success-pg .btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 7px;
  background: #B13336;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 6px 14px -2px rgba(177,51,54,0.11);
  transition: color 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.success-pg .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #8a2224;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: -1;
}

.success-pg .btn-primary:hover::before,
.success-pg .btn-primary:focus-visible::before {
  transform: translateX(0);
}

.success-pg .btn-primary:focus-visible {
  outline: 2px solid #B13336;
  outline-offset: 3px;
}

.success-pg .btn-secondary {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 7px;
  background: transparent;
  color: #1b1b1b;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  border: 1.5px solid #c5c5c5;
  cursor: pointer;
  font-weight: 500;
  transition: border-color 0.22s cubic-bezier(0.34,1.56,0.64,1), color 0.22s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 0;
}

.success-pg .btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #E0E8DB;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.68,-0.55,0.27,1.55);
  z-index: -1;
}

.success-pg .btn-secondary:hover::before,
.success-pg .btn-secondary:focus-visible::before {
  transform: translateX(0);
}

.success-pg .btn-secondary:focus-visible {
  outline: 2px solid #2DBE9F;
  outline-offset: 3px;
}

.success-pg .divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(31deg, #B13336 38%, #E0E8DB 100%);
  border-radius: 7px;
}

@media (max-width: 768px) {
  .success-pg {
    padding: 64px 16px;
  }

  .success-pg .result-body__heading {
    font-size: 26px;
    padding-left: 8px;
  }

  .success-pg .action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .success-pg .btn-primary,
  .success-pg .btn-secondary {
    text-align: center;
  }
}

@media (max-width: 320px) {
  .success-pg {
    padding: 32px 8px;
  }
}
