@charset "UTF-8";

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

.site-head {
  background: linear-gradient(160deg, #055131 0%, #0a7a4a 45%, #F26DAC 100%);
  position: relative;
  overflow: hidden;
  padding: 0 0 56px;
}

.site-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

.head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 56px 16px;
  gap: 28px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-mark a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-shell {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10), 0 3px 3px 0 rgba(242, 109, 172, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 60px;
}

.logo-shell img {
  width: auto;
  height: 55px;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.brand-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFEEA;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.avail-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 254, 234, 0.12);
  border: 1px solid rgba(255, 254, 234, 0.25);
  border-radius: 3px;
  padding: 8px 16px;
  flex-shrink: 0;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 0px;
  background: #FFFEEA;
  flex-shrink: 0;
  transform: rotate(45deg);
}

.avail-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: #FFFEEA;
  line-height: 1.4;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.head-nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nav-list li {
  display: flex;
}

.nav-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 254, 234, 0.85);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
  line-height: 1.4;
  transition: color 0.2s ease-out, background-color 0.25s ease-out;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.nav-link:hover,
.nav-link:focus {
  color: #FFFEEA;
  background: rgba(255, 254, 234, 0.15);
  outline: none;
}

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

.nav-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.site-foot {
  background: #055131;
  position: relative;
  box-shadow: 0 -3px 3px 0 rgba(5, 81, 49, 0.06), 0 -4px 14px 0 rgba(5, 81, 49, 0.10), 0 -12px 44px 0 rgba(5, 81, 49, 0.12);
}

.foot-upper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 56px 56px 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

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

.foot-logo-shell {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 60px;
  min-width: 100px;
}

.foot-logo-shell img {
  width: auto;
  height: 55px;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.foot-brand-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFEEA;
  line-height: 1.1;
}

.foot-tagline {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 254, 234, 0.65);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.foot-contact-block {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 254, 234, 0.75);
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease-out;
}

.foot-contact-item:hover {
  color: #FFFEEA;
}

.foot-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #F26DAC;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.foot-col-head {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #F26DAC;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(242, 109, 172, 0.25);
  border-right: 3px solid #F26DAC;
  padding-right: 8px;
}

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

.foot-nav-list li {
  display: flex;
}

.foot-nav-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 254, 234, 0.75);
  text-decoration: none;
  line-height: 1.4;
  padding: 8px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease-out, padding-right 0.25s ease-out;
}

.foot-nav-link:hover,
.foot-nav-link:focus {
  color: #FFFEEA;
  padding-right: 8px;
  outline: none;
}

.foot-nav-link:focus-visible {
  outline: 2px solid #F26DAC;
  outline-offset: 2px;
  border-radius: 3px;
}

.foot-nav-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease-out;
}

.foot-nav-link:hover svg {
  opacity: 1;
}

.foot-lower {
  border-top: 1px solid rgba(255, 254, 234, 0.12);
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-copy {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 254, 234, 0.5);
  line-height: 1.4;
}

.foot-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-legal-links li {
  display: flex;
}

.foot-legal-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 254, 234, 0.5);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease-out;
  padding: 8px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.foot-legal-link:hover,
.foot-legal-link:focus {
  color: #FFFEEA;
  outline: none;
}

.foot-legal-link:focus-visible {
  outline: 2px solid #F26DAC;
  outline-offset: 2px;
  border-radius: 3px;
}

.cookie-bar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4000;
  background: #FFFEEA;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10), 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.cookie-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 56px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-text-area {
  flex: 1;
  min-width: 200px;
}

.cookie-headline {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #055131;
  line-height: 1.4;
  margin-bottom: 8px;
}

.cookie-desc {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: #055131;
  line-height: 1.6;
}

.cookie-desc a {
  color: #055131;
  text-decoration: underline;
  transition: color 0.2s ease-out;
}

.cookie-desc a:hover {
  color: #F26DAC;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-toggle-btn {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: #055131;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 0;
  min-height: 44px;
  transition: color 0.2s ease-out;
}

.cookie-toggle-btn:hover,
.cookie-toggle-btn:focus {
  color: #F26DAC;
  outline: none;
}

.cookie-toggle-btn:focus-visible {
  outline: 2px solid #055131;
  outline-offset: 2px;
}

.cookie-accept-btn {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFEEA;
  background: #055131;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 8px 16px;
  min-height: 44px;
  text-decoration: underline;
  transition: background-color 0.2s ease-out;
}

.cookie-accept-btn:hover,
.cookie-accept-btn:focus {
  background: #F26DAC;
  outline: none;
}

.cookie-accept-btn:focus-visible {
  outline: 2px solid #055131;
  outline-offset: 2px;
}

.cookie-panel {
  display: none;
  border-top: 1px solid rgba(5, 81, 49, 0.15);
  padding: 16px 56px;
  max-width: 1600px;
  margin: 0 auto;
}

.cookie-panel.open {
  display: block;
}

.cookie-opt-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-opt-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: #055131;
  line-height: 1.4;
  flex: 1;
}

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

.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.cookie-switch-track {
  position: absolute;
  inset: 0;
  background: rgba(5, 81, 49, 0.2);
  border-radius: 12px;
  transition: background-color 0.2s ease-out;
  pointer-events: none;
}

.cookie-switch input[type="checkbox"]:checked+.cookie-switch-track {
  background: #055131;
}

.cookie-switch-thumb {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease-out;
  pointer-events: none;
}

.cookie-switch input[type="checkbox"]:checked~.cookie-switch-thumb {
  transform: translateX(-18px);
}

@media (max-width: 1024px) {
  .head-top {
    padding: 28px 28px 16px;
  }

  .head-nav {
    padding: 0 28px;
  }

  .foot-upper {
    padding: 56px 28px 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .foot-lower {
    padding: 28px 28px;
  }

  .cookie-inner {
    padding: 16px 28px;
  }

  .cookie-panel {
    padding: 16px 28px;
  }
}

@media (max-width: 640px) {
  .head-top {
    padding: 16px 16px 8px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .head-nav {
    padding: 0 16px;
  }

  .nav-list {
    gap: 8px;
  }

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

  .foot-upper {
    padding: 28px 16px;
    gap: 28px;
  }

  .foot-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .foot-lower {
    padding: 16px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-inner {
    padding: 16px 16px;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-panel {
    padding: 16px 16px;
  }

  .avail-badge {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand-label {
    font-size: 16px;
  }

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

  .foot-brand-name {
    font-size: 16px;
  }
}

.rules-block {
  max-width: 1600px;
  margin: 0 auto;
  padding: 56px 96px;
  background: #ffffff;
}

.rules-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  margin-bottom: 16px;
  max-width: 860px;
}

.rules-block strong,
.rules-block b {
  font-weight: 700;
  color: #055131;
}

.rules-block em,
.rules-block i {
  font-style: italic;
  color: #3a3a3a;
}

.rules-block hr {
  border: none;
  border-top: 1.5px solid #FFFEEA;
  margin: 56px 0;
  max-width: 860px;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
}

.rules-block div {
  margin-bottom: 28px;
}

@media (max-width: 1280px) {
  .rules-block {
    padding: 56px 56px;
  }
}

@media (max-width: 1024px) {
  .rules-block {
    padding: 56px 28px;
  }

  .rules-block p {
    max-width: 100%;
  }

  .rules-block hr {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .rules-block {
    padding: 28px 16px;
  }

  .rules-block p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .rules-block hr {
    margin: 28px 0;
  }
}

@media (max-width: 360px) {
  .rules-block {
    padding: 16px 8px;
  }

  .rules-block p {
    font-size: 13px;
  }
}

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

.nws .pg-anim {
  animation: bg-osc 6s ease-in-out infinite alternate;
}

@keyframes bg-osc {
  from {
    background-color: #ffffff;
  }

  to {
    background-color: #fffdf6;
  }
}

.nws ::selection {
  background-color: #055131;
  color: #FFFEEA;
}

.nws p::first-child {
  text-indent: 0;
}

.nws .ind-p p {
  text-indent: 28px;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 16px;
}

.nws .ind-p p+p {
  margin-top: 0;
}

.nws .grad-txt {
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nws .lbl {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #055131;
  font-weight: 600;
}

.nws .acc-box {
  display: inline-block;
  border: 1.5px solid #F26DAC;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 13px;
  color: #055131;
  letter-spacing: 0.08em;
}

.nws ul.big-bull {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nws ul.big-bull li {
  padding-right: 28px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.nws ul.big-bull li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #F26DAC;
  position: absolute;
  right: 0;
  top: 7px;
}

.nws .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #055131;
  color: #FFFEEA;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease-out, box-shadow 0.2s ease-out;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
  position: relative;
  overflow: hidden;
}

.nws .btn-main .btn-icon {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease-out, transform 0.22s ease-out;
  flex-shrink: 0;
}

.nws .btn-main .btn-txt {
  transition: transform 0.22s ease-out;
}

.nws .btn-main:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.nws .btn-main:hover .btn-txt {
  transform: translateX(4px);
}

.nws .btn-main:hover {
  background: #033d25;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.nws .btn-main:active {
  background: #022d1b;
}

.nws .btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFEEA;
  color: #055131;
  border: 2px solid #055131;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.28s ease-out, border-color 0.2s ease-out;
}

.nws .btn-light .btn-icon {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease-out, transform 0.22s ease-out;
}

.nws .btn-light .btn-txt {
  transition: transform 0.22s ease-out;
}

.nws .btn-light:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.nws .btn-light:hover .btn-txt {
  transform: translateX(4px);
}

.nws .btn-light:hover {
  background: #FFFEEA;
  border-color: #F26DAC;
}

.nws .expand-border {
  outline: 2px solid transparent;
  outline-offset: 0px;
  transition: outline-offset 0.15s ease-out, outline-color 0.15s ease-out;
}

.nws .expand-border:active {
  outline: 2px solid #F26DAC;
  outline-offset: 4px;
}

[dir="rtl"] .nws,
.nws {
  direction: rtl;
  text-align: right;
}

.nws .t-block {
  position: relative;
  background: #fff;
  padding: 56px 56px 0;
  animation: bg-osc 6s ease-in-out infinite alternate;
}

.nws .t-block .t-img-wrap {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

.nws .t-block .t-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  display: block;
  transition: filter 0.35s ease-out;
}

.nws .t-block .t-img-wrap:hover img {
  filter: grayscale(60%);
}

.nws .t-block .t-bg-num {
  position: absolute;
  top: 8px;
  left: 56px;
  font-size: 220px;
  font-weight: 900;
  color: #F26DAC;
  opacity: 0.07;
  line-height: 1.1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.nws .t-block .t-text-zone {
  position: relative;
  z-index: 1;
  padding: 56px 0 56px;
  max-width: 860px;
}

.nws .t-block .t-h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a2e22;
}

.nws .t-block .t-h1 .kw-under {
  text-decoration: underline;
  text-decoration-color: #F26DAC;
  text-underline-offset: 6px;
  -webkit-text-fill-color: initial;
  background: none;
}

.nws .t-block .t-sub {
  font-size: 20px;
  line-height: 1.6;
  color: #2a4a38;
  margin-bottom: 28px;
  max-width: 640px;
}

.nws .t-block .t-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.nws .t-img-cap {
  position: relative;
}

.nws .t-img-cap .cap-txt {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(5, 81, 49, 0.88) 0%, rgba(5, 81, 49, 0) 100%);
  color: #FFFEEA;
  font-size: 14px;
  line-height: 1.4;
  padding: 28px 16px 16px;
  opacity: 0;
  transition: opacity 0.28s ease-out;
  border-radius: 0 0 12px 12px;
}

.nws .t-img-cap:hover .cap-txt {
  opacity: 1;
}

.nws .geo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border: 2px solid rgba(242, 109, 172, 0.12);
  border-radius: 12px;
  animation: geo-spin 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.nws .geo-bg-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border: 1.5px solid rgba(5, 81, 49, 0.10);
  border-radius: 3px;
  animation: geo-spin 12s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes geo-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.nws .ed-sec {
  padding: 96px 56px;
  background: linear-gradient(to right, #FFFEEA 0%, #fff 50%, #f0f8f4 100%);
  position: relative;
  overflow: hidden;
}

.nws .ed-sec .ed-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.nws .ed-sec .ed-sidebar {
  position: sticky;
  top: 28px;
}

.nws .ed-sec .ed-sidebar .side-h {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.nws .ed-sec .ed-sidebar .side-stat {
  background: #055131;
  color: #FFFEEA;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.nws .ed-sec .ed-sidebar .stat-num {
  font-size: 37px;
  font-weight: 800;
  line-height: 1.1;
  color: #F26DAC;
}

.nws .ed-sec .ed-sidebar .stat-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #FFFEEA;
  opacity: 0.85;
  margin-top: 8px;
}

.nws .ed-sec .ed-main-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nws .ed-sec .ed-main-col .ed-h2 {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.nws .ed-sec .ed-main-col .ed-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
  position: relative;
}

.nws .ed-sec .ed-main-col .ed-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.35s ease-out;
}

.nws .ed-sec .ed-main-col .ed-img:hover img {
  filter: saturate(0.2);
}

.nws .ed-sec .ed-main-col .ed-img .cap-txt {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(5, 81, 49, 0.88) 0%, rgba(5, 81, 49, 0) 100%);
  color: #FFFEEA;
  font-size: 14px;
  line-height: 1.4;
  padding: 28px 16px 16px;
  opacity: 0;
  transition: opacity 0.28s ease-out;
  border-radius: 0 0 12px 12px;
}

.nws .ed-sec .ed-main-col .ed-img:hover .cap-txt {
  opacity: 1;
}

.nws .ed-sec .ed-main-col .card-diag {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 3px 3px 0 rgba(242, 109, 172, 0.06);
  overflow: hidden;
}

.nws .ed-sec .ed-main-col .card-diag::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #F26DAC 0%, #FFFEEA 100%);
  transform: rotate(45deg);
  border-radius: 3px;
  pointer-events: none;
}

.nws .met-sec {
  padding: 96px 56px;
  background: #055131;
  position: relative;
  overflow: hidden;
}

.nws .met-sec .met-geo {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 2px solid rgba(255, 254, 234, 0.08);
  border-radius: 12px;
  animation: geo-spin 22s linear infinite;
  pointer-events: none;
}

.nws .met-sec .met-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.nws .met-sec .met-head .met-h2 {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFEEA;
  margin-bottom: 16px;
}

.nws .met-sec .met-head .met-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.8);
  max-width: 560px;
  margin: 0 auto;
}

.nws .met-sec .met-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.nws .met-sec .met-card {
  background: rgba(255, 254, 234, 0.07);
  border: 1px solid rgba(255, 254, 234, 0.15);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: background 0.25s ease-out, transform 0.2s ease-out;
  cursor: default;
}

.nws .met-sec .met-card:hover {
  background: rgba(255, 254, 234, 0.13);
  transform: translateY(-4px);
}

.nws .met-sec .met-card .mc-num {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #F26DAC;
  margin-bottom: 8px;
}

.nws .met-sec .met-card .mc-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 254, 234, 0.85);
}

.nws .met-sec .met-bottom {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.nws .met-sec .met-bottom .mb-card {
  background: rgba(255, 254, 234, 0.05);
  border: 1px solid rgba(255, 254, 234, 0.12);
  border-radius: 12px;
  padding: 28px;
}

.nws .met-sec .met-bottom .mb-card .mb-h {
  font-size: 20px;
  font-weight: 700;
  color: #FFFEEA;
  margin-bottom: 16px;
  line-height: 1.4;
}

.nws .met-sec .met-bottom .mb-card .mb-p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.8);
}

.nws .prof-sec {
  padding: 96px 56px;
  background: #fff;
  animation: bg-osc 8s ease-in-out infinite alternate;
  position: relative;
}

.nws .prof-sec .ps-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.nws .prof-sec .ps-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nws .prof-sec .ps-left .ps-h2 {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
}

.nws .prof-sec .ps-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nws .prof-sec .ps-tools .tool-item {
  border: 1.5px solid rgba(5, 81, 49, 0.15);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
}

.nws .prof-sec .ps-tools .tool-item:hover {
  border-color: #F26DAC;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10);
}

.nws .prof-sec .ps-tools .tool-item::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #F26DAC 0%, transparent 100%);
  transform: rotate(45deg);
  border-radius: 3px;
  pointer-events: none;
  opacity: 0.7;
}

.nws .prof-sec .ps-tools .tool-item .ti-h {
  font-size: 16px;
  font-weight: 700;
  color: #055131;
  margin-bottom: 8px;
}

.nws .prof-sec .ps-tools .tool-item .ti-p {
  font-size: 14px;
  line-height: 1.6;
  color: #2a4a38;
}

.nws .prof-sec .ps-right {
  position: sticky;
  top: 28px;
}

.nws .prof-sec .ps-portrait {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
  position: relative;
  aspect-ratio: 5/7;
}

.nws .prof-sec .ps-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.35s ease-out;
}

.nws .prof-sec .ps-portrait:hover img {
  filter: saturate(0.2);
}

.nws .prof-sec .ps-portrait .cap-txt {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(5, 81, 49, 0.88) 0%, rgba(5, 81, 49, 0) 100%);
  color: #FFFEEA;
  font-size: 14px;
  line-height: 1.4;
  padding: 28px 16px 16px;
  opacity: 0;
  transition: opacity 0.28s ease-out;
  border-radius: 0 0 12px 12px;
}

.nws .prof-sec .ps-portrait:hover .cap-txt {
  opacity: 1;
}

.nws .prof-sec .ps-quote {
  margin-top: 16px;
  background: linear-gradient(to right, #FFFEEA, #fff);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 3px 3px 0 rgba(242, 109, 172, 0.06);
}

.nws .prof-sec .ps-quote .pq-name {
  font-size: 16px;
  font-weight: 700;
  color: #055131;
  margin-bottom: 8px;
}

.nws .prof-sec .ps-quote .pq-role {
  font-size: 13px;
  color: #F26DAC;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.nws .prof-sec .ps-quote .pq-txt {
  font-size: 14px;
  line-height: 1.6;
  color: #2a4a38;
}

.nws .res-sec {
  padding: 96px 56px;
  background: linear-gradient(to right, #f0f8f4 0%, #FFFEEA 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.nws .res-sec .rs-geo {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(242, 109, 172, 0.1);
  border-radius: 12px;
  animation: geo-spin 16s linear infinite;
  pointer-events: none;
}

.nws .res-sec .rs-head {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.nws .res-sec .rs-head .rs-h2 {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.nws .res-sec .rs-head .rs-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #2a4a38;
  max-width: 560px;
}

.nws .res-sec .rs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.nws .res-sec .rs-row .res-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease-out;
}

.nws .res-sec .rs-row .res-card:hover {
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.nws .res-sec .rs-row .res-card::before {
  content: '';
  position: absolute;
  top: -14px;
  right: -14px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #F26DAC 0%, #FFFEEA 100%);
  transform: rotate(45deg);
  border-radius: 3px;
  pointer-events: none;
}

.nws .res-sec .rs-row .res-card .rc-h {
  font-size: 20px;
  font-weight: 700;
  color: #055131;
  margin-bottom: 8px;
  line-height: 1.4;
}

.nws .res-sec .rs-row .res-card .rc-p {
  font-size: 14px;
  line-height: 1.6;
  color: #2a4a38;
}

.nws .res-sec .rs-img-row {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
}

.nws .res-sec .rs-img-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.35s ease-out;
}

.nws .res-sec .rs-img-row:hover img {
  filter: saturate(0.2);
}

.nws .res-sec .rs-img-row .cap-txt {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(5, 81, 49, 0.88) 0%, rgba(5, 81, 49, 0) 100%);
  color: #FFFEEA;
  font-size: 14px;
  line-height: 1.4;
  padding: 28px 16px 16px;
  opacity: 0;
  transition: opacity 0.28s ease-out;
  border-radius: 0 0 12px 12px;
}

.nws .res-sec .rs-img-row:hover .cap-txt {
  opacity: 1;
}

@media (max-width: 1024px) {
  .nws .t-block {
    padding: 28px 28px 0;
  }

  .nws .t-block .t-bg-num {
    font-size: 140px;
    left: 28px;
  }

  .nws .t-block .t-text-zone {
    padding: 28px 0 28px;
  }

  .nws .t-block .t-h1 {
    font-size: 37px;
  }

  .nws .ed-sec {
    padding: 56px 28px;
  }

  .nws .ed-sec .ed-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nws .ed-sec .ed-sidebar {
    position: static;
  }

  .nws .met-sec {
    padding: 56px 28px;
  }

  .nws .met-sec .met-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nws .met-sec .met-bottom {
    grid-template-columns: 1fr;
  }

  .nws .prof-sec {
    padding: 56px 28px;
  }

  .nws .prof-sec .ps-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nws .prof-sec .ps-right {
    position: static;
  }

  .nws .prof-sec .ps-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .nws .res-sec {
    padding: 56px 28px;
  }

  .nws .res-sec .rs-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nws .t-block {
    padding: 16px 16px 0;
  }

  .nws .t-block .t-bg-num {
    font-size: 90px;
    left: 16px;
  }

  .nws .t-block .t-h1 {
    font-size: 27px;
  }

  .nws .t-block .t-sub {
    font-size: 16px;
  }

  .nws .t-block .t-img-wrap {
    max-height: 260px;
  }

  .nws .t-block .t-img-wrap img {
    height: 260px;
  }

  .nws .ed-sec {
    padding: 56px 16px;
  }

  .nws .ed-sec .ed-layout {
    gap: 16px;
  }

  .nws .met-sec {
    padding: 56px 16px;
  }

  .nws .met-sec .met-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .nws .met-sec .met-card .mc-num {
    font-size: 37px;
  }

  .nws .prof-sec {
    padding: 56px 16px;
  }

  .nws .prof-sec .ps-tools {
    grid-template-columns: 1fr;
  }

  .nws .res-sec {
    padding: 56px 16px;
  }

  .nws .res-sec .rs-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .nws .t-block .t-h1 {
    font-size: 20px;
  }

  .nws .met-sec .met-grid {
    grid-template-columns: 1fr;
  }

  .nws .t-block .t-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

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

.abt .sec-one {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  padding: 96px 56px;
  background: #fff;
  align-items: start;
  position: relative;
}

.abt .sec-one::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: none;
  overflow: hidden;
}

.abt .frm-img {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .img-dec {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.abt .img-dec svg {
  width: 100%;
  height: 100%;
}

.abt .img-dec-br {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 90px;
  height: 90px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.abt .img-dec-br svg {
  width: 100%;
  height: 100%;
}

.abt .img-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 12px 44px 0 rgba(242, 109, 172, 0.12);
}

.abt .img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.35) contrast(1.08) brightness(0.96) saturate(0.85);
  transition: filter 0.45s ease-out;
}

.abt .img-wrap:hover img {
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}

.abt .img-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #055131;
  color: #FFFEEA;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: 3px;
  align-self: flex-start;
  margin-top: 8px;
}

.abt .txt-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px;
}

.abt .lbl-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #F26DAC;
  border: 1px solid #F26DAC;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}

.abt .h-main {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.abt .arc-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abt .arc-p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a3a28;
  text-indent: 28px;
  margin: 0;
  color: #1b3628;
}

.abt .arc-p+.arc-p {
  margin-top: 0;
}

.abt .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.abt .stat-it {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(5, 81, 49, 0.15);
  border-radius: 3px;
  background: #FFFEEA;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
  animation: brd-glow 2.8s ease-out infinite;
}

@keyframes brd-glow {

  0%,
  100% {
    border-color: rgba(5, 81, 49, 0.15);
  }

  50% {
    border-color: rgba(242, 109, 172, 0.55);
  }
}

.abt .stat-num {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #055131;
}

.abt .stat-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #3a5a48;
  letter-spacing: 0.06em;
}

.abt .cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.abt .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: #055131;
  color: #FFFEEA;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease-out, box-shadow 0.2s ease-out;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
}

.abt .btn-prim .btn-ico {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease-out, transform 0.25s ease-out;
  display: flex;
  align-items: center;
}

.abt .btn-prim .btn-txt {
  transition: transform 0.25s ease-out;
}

.abt .btn-prim:hover {
  background: #033d25;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.abt .btn-prim:hover .btn-ico {
  opacity: 1;
  transform: translateX(0);
}

.abt .btn-prim:hover .btn-txt {
  transform: translateX(6px);
}

.abt .btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: #055131;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none !important;
  border: 2px solid #055131;
  cursor: pointer;
  transition: background 0.2s ease-out, color 0.2s ease-out;
}

.abt .btn-sec:hover {
  background: #055131;
  color: #FFFEEA;
}

.abt .geo-div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 0 56px;
  overflow: hidden;
}

.abt .geo-div .geo-shape {
  width: 8px;
  height: 8px;
  background: #F26DAC;
  border-radius: 0px;
  flex-shrink: 0;
  transform: rotate(45deg);
}

.abt .geo-div .geo-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #F26DAC, #055131);
}

.abt .geo-div .geo-shape-sec {
  width: 6px;
  height: 6px;
  background: #055131;
  border-radius: 0px;
  flex-shrink: 0;
}

.abt .sec-two {
  padding: 96px 56px;
  background: #055131;
  position: relative;
  overflow: hidden;
}

.abt .sec-two-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.abt .sec-two-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.3) brightness(0.35);
  mix-blend-mode: multiply;
}

.abt .s2-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.abt .s2-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.abt .s2-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .lbl-light {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #F26DAC;
  border: 1px solid rgba(242, 109, 172, 0.5);
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}

.abt .h-sec {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #FFFEEA;
  margin: 0;
  background: linear-gradient(to right, #FFFEEA, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt .s2-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.82);
  text-indent: 28px;
  margin: 0;
}

.abt .s2-desc+.s2-desc {
  margin-top: 0;
}

.abt .s2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt .cmp-tbl {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 254, 234, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.abt .cmp-row {
  display: grid;
  grid-template-columns: 1fr 56px 56px;
  gap: 0;
  border-bottom: 1px solid rgba(255, 254, 234, 0.1);
}

.abt .cmp-row:last-child {
  border-bottom: none;
}

.abt .cmp-row.hd-row {
  background: rgba(242, 109, 172, 0.18);
}

.abt .cmp-cell {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 254, 234, 0.85);
  display: flex;
  align-items: center;
}

.abt .cmp-cell.hd {
  font-weight: 700;
  color: #FFFEEA;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.abt .cmp-cell.ctr {
  justify-content: center;
}

.abt .chk-yes {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt .chk-yes svg,
.abt .chk-no svg {
  width: 16px;
  height: 16px;
}

.abt .chk-no {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt .s2-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.abt .prof-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 254, 234, 0.06);
  border: 1px solid rgba(255, 254, 234, 0.12);
  border-radius: 3px;
  padding: 28px;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10);
  transition: border-color 0.35s ease-out, box-shadow 0.35s ease-out;
}

.abt .prof-card:hover {
  border-color: rgba(242, 109, 172, 0.4);
  box-shadow: 0 12px 44px 0 rgba(242, 109, 172, 0.12);
}

.abt .prof-top {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.abt .prof-img {
  width: 72px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0px;
}

.abt .prof-img img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.2) contrast(1.05);
  transition: filter 0.4s ease-out;
}

.abt .prof-img:hover img {
  filter: grayscale(1) contrast(1.05);
}

.abt .prof-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.abt .prof-name {
  font-size: 16px;
  font-weight: 700;
  color: #FFFEEA;
  line-height: 1.4;
}

.abt .prof-role {
  font-size: 13px;
  color: #F26DAC;
  letter-spacing: 0.06em;
}

.abt .prof-txt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.78);
  margin: 0;
  text-indent: 16px;
}

.abt .no-port {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 254, 234, 0.06);
  border: 1px solid rgba(255, 254, 234, 0.12);
  border-radius: 3px;
  padding: 28px;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10);
  transition: border-color 0.35s ease-out, box-shadow 0.35s ease-out;
}

.abt .no-port:hover {
  border-color: rgba(242, 109, 172, 0.4);
  box-shadow: 0 12px 44px 0 rgba(242, 109, 172, 0.12);
}

.abt .no-port-ico {
  width: 56px;
  height: 56px;
  background: rgba(242, 109, 172, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt .no-port-name {
  font-size: 16px;
  font-weight: 700;
  color: #FFFEEA;
  line-height: 1.4;
}

.abt .no-port-role {
  font-size: 13px;
  color: #F26DAC;
  letter-spacing: 0.06em;
}

.abt .no-port-txt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.78);
  margin: 0;
  text-indent: 16px;
}

.abt .s2-img-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.abt .s2-img-it {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.abt .s2-img-it img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.88);
  transition: filter 0.4s ease-out, transform 0.35s ease-out;
}

.abt .s2-img-it:hover img {
  filter: grayscale(1) brightness(0.8);
  transform: scale(1.03);
}

.abt .s2-img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(5, 81, 49, 0.85), transparent);
  font-size: 13px;
  color: #FFFEEA;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .abt .sec-one {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 28px;
  }

  .abt .img-wrap img {
    height: 340px;
  }

  .abt .txt-col {
    padding-top: 0;
  }

  .abt .h-main {
    font-size: 37px;
  }

  .abt .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .abt .geo-div {
    padding: 0 28px;
  }

  .abt .sec-two {
    padding: 56px 28px;
  }

  .abt .s2-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .abt .s2-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .abt .s2-img-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .abt .sec-one {
    padding: 56px 16px;
    gap: 28px;
  }

  .abt .h-main {
    font-size: 27px;
  }

  .abt .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .abt .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt .geo-div {
    padding: 0 16px;
  }

  .abt .sec-two {
    padding: 56px 16px;
  }

  .abt .s2-bottom {
    grid-template-columns: 1fr;
  }

  .abt .s2-img-row {
    grid-template-columns: 1fr 1fr;
  }

  .abt .h-sec {
    font-size: 27px;
  }

  .abt .cmp-row {
    grid-template-columns: 1fr 44px 44px;
  }
}

@media (max-width: 360px) {
  .abt .sec-one {
    padding: 28px 8px;
  }

  .abt .h-main {
    font-size: 20px;
  }

  .abt .stat-row {
    grid-template-columns: 1fr;
  }

  .abt .sec-two {
    padding: 28px 8px;
  }

  .abt .s2-img-row {
    grid-template-columns: 1fr;
  }
}

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

.ct-us .reach {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 520px;
  position: relative;
}

.ct-us .reach-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #F26DAC;
}

.ct-us .reach-left {
  background: #055131;
  padding: 56px 28px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.ct-us .reach-left-deco {
  position: absolute;
  bottom: 28px;
  right: 16px;
  pointer-events: none;
}

.ct-us .reach-left-deco span {
  display: block;
  border: 1px solid rgba(242, 109, 172, 0.25);
  border-radius: 0px;
  position: absolute;
}

.ct-us .reach-left-deco span:nth-child(1) {
  width: 80px;
  height: 80px;
  bottom: 0;
  right: 0;
}

.ct-us .reach-left-deco span:nth-child(2) {
  width: 56px;
  height: 56px;
  bottom: 12px;
  right: 12px;
}

.ct-us .reach-left-deco span:nth-child(3) {
  width: 32px;
  height: 32px;
  bottom: 24px;
  right: 24px;
}

.ct-us .reach-tag {
  display: inline-block;
  border: 1px solid rgba(242, 109, 172, 0.6);
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #F26DAC;
  margin-bottom: 16px;
}

.ct-us .reach-hdg {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(to right, #F26DAC, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.ct-us .reach-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.82);
  margin-bottom: 28px;
}

.ct-us .reach-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .reach-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.35s ease-out forwards;
}

.ct-us .reach-item:nth-child(1) {
  animation-delay: 0.10s;
}

.ct-us .reach-item:nth-child(2) {
  animation-delay: 0.20s;
}

.ct-us .reach-item:nth-child(3) {
  animation-delay: 0.30s;
}

.ct-us .reach-item:nth-child(4) {
  animation-delay: 0.40s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.ct-us .reach-icon {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: rgba(242, 109, 172, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-us .reach-icon svg {
  width: 18px;
  height: 18px;
  fill: #F26DAC;
}

.ct-us .reach-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-us .reach-item-lbl {
  font-size: 13px;
  letter-spacing: 0.07em;
  color: rgba(255, 254, 234, 0.5);
  text-transform: uppercase;
}

.ct-us .reach-item-val {
  font-size: 14px;
  line-height: 1.4;
  color: #FFFEEA;
}

.ct-us .reach-item-val a {
  color: #FFFEEA;
  text-decoration: none;
  transition: color 0.25s ease-out;
}

.ct-us .reach-item-val a:hover {
  color: #F26DAC;
}

.ct-us .reach-right {
  background: #FFFEEA;
  padding: 56px 56px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-us .form-hdg {
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.ct-us .form-sub {
  font-size: 14px;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 28px;
}

.ct-us .cf {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-us .cf-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-us .cf-lbl {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #055131;
  font-weight: 600;
}

.ct-us .cf-inp {
  padding: 12px 16px;
  border: 1px solid rgba(5, 81, 49, 0.25) !important;
  border-radius: 3px;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  color: #1b1b1b;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px 0 rgba(5, 81, 49, 0.06);
  transition: border-color 0.20s ease-out, box-shadow 0.20s ease-out;
  text-overflow: ellipsis;
}

.ct-us .cf-inp:focus {
  outline: none;
  border-color: #F26DAC !important;
  box-shadow: inset 0 2px 4px 0 rgba(242, 109, 172, 0.08), 0 0 0 3px rgba(242, 109, 172, 0.12);
}

.ct-us .cf-inp::placeholder {
  color: rgba(5, 81, 49, 0.35);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ct-us .cf-sel {
  padding: 12px 16px;
  border: 1px solid rgba(5, 81, 49, 0.25) !important;
  border-radius: 3px;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  color: #1b1b1b;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px 0 rgba(5, 81, 49, 0.06);
  appearance: none;
  cursor: pointer;
  transition: border-color 0.22s ease-out;
}

.ct-us .cf-sel:focus {
  outline: none;
  border-color: #F26DAC !important;
  box-shadow: inset 0 2px 4px 0 rgba(242, 109, 172, 0.08);
}

.ct-us .cf-sel-wrap {
  position: relative;
}

.ct-us .cf-sel-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #055131;
  pointer-events: none;
}

.ct-us .cf-msg {
  padding: 12px 16px;
  border: 1px solid rgba(5, 81, 49, 0.25) !important;
  border-radius: 3px;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  color: #1b1b1b;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 96px;
  box-shadow: inset 0 2px 4px 0 rgba(5, 81, 49, 0.06);
  transition: border-color 0.20s ease-out, box-shadow 0.20s ease-out;
}

.ct-us .cf-msg:focus {
  outline: none;
  border-color: #F26DAC !important;
  box-shadow: inset 0 2px 4px 0 rgba(242, 109, 172, 0.08);
}

.ct-us .cf-check-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.ct-us .cf-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #055131;
  cursor: pointer;
}

.ct-us .cf-check-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #3a3a3a;
}

.ct-us .cf-check-txt a {
  color: #055131;
  text-decoration: underline;
  transition: color 0.18s ease-out;
}

.ct-us .cf-check-txt a:hover {
  color: #F26DAC;
}

.ct-us .cf-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 14px 28px;
  background: #055131;
  color: #FFFEEA;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  transition: background 0.22s ease-out, box-shadow 0.22s ease-out;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
}

.ct-us .cf-submit .btn-icon {
  width: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  transition: width 0.28s ease-out;
}

.ct-us .cf-submit .btn-icon svg {
  width: 16px;
  height: 16px;
  fill: #FFFEEA;
  flex-shrink: 0;
}

.ct-us .cf-submit .btn-txt {
  transition: transform 0.28s ease-out;
}

.ct-us .cf-submit:hover {
  background: #033d24;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.ct-us .cf-submit:hover .btn-icon {
  width: 22px;
}

.ct-us .cf-submit:hover .btn-txt {
  transform: translateX(4px);
}

.ct-us .cf-submit:focus {
  outline: 3px solid rgba(242, 109, 172, 0.5);
  outline-offset: 2px;
}

.ct-us .cf-submit:active {
  background: #022b19;
}

.ct-us .divider-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ct-us .divider-wave svg {
  display: block;
  width: 100%;
}

.ct-us .info-blk {
  background: #f0ede6;
  padding: 96px 56px;
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 56px;
  align-items: center;
}

.ct-us .info-blk-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: #055131;
}

.ct-us .info-deco {
  position: absolute;
  top: 28px;
  left: 28px;
  pointer-events: none;
}

.ct-us .info-deco span {
  display: block;
  border: 1px solid rgba(5, 81, 49, 0.18);
  border-radius: 0px;
  position: absolute;
}

.ct-us .info-deco span:nth-child(1) {
  width: 96px;
  height: 96px;
  top: 0;
  left: 0;
}

.ct-us .info-deco span:nth-child(2) {
  width: 68px;
  height: 68px;
  top: 14px;
  left: 14px;
}

.ct-us .info-deco span:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 28px;
  left: 28px;
}

.ct-us .info-deco span:nth-child(4) {
  width: 16px;
  height: 16px;
  top: 40px;
  left: 40px;
}

.ct-us .info-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-us .info-eyebrow {
  display: inline-block;
  border: 1px solid rgba(5, 81, 49, 0.4);
  border-radius: 3px;
  padding: 4px 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #055131;
  align-self: flex-start;
}

.ct-us .info-hdg {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-us .info-paras {
  display: flex;
  flex-direction: column;
}

.ct-us .info-para {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  text-indent: 28px;
  margin: 0;
}

.ct-us .info-quote-blk {
  border: 1px solid rgba(242, 109, 172, 0.35);
  border-radius: 3px;
  padding: 28px;
  background: rgba(242, 109, 172, 0.05);
  position: relative;
}

.ct-us .info-quote-mark {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(242, 109, 172, 0.3);
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.ct-us .info-quote-txt {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #055131;
  margin-bottom: 16px;
}

.ct-us .info-quote-attr {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #F26DAC;
  font-weight: 600;
}

.ct-us .info-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.ct-us .info-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
  position: relative;
}

.ct-us .info-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.38s ease-out;
}

.ct-us .info-img-wrap:hover img {
  filter: saturate(0);
}

.ct-us .info-img-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: 12px;
}

.ct-us .info-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.ct-us .info-metric {
  background: #ffffff;
  border-radius: 3px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
  opacity: 0;
  animation: fade-up 0.32s ease-out forwards;
}

.ct-us .info-metric:nth-child(1) {
  animation-delay: 0.15s;
}

.ct-us .info-metric:nth-child(2) {
  animation-delay: 0.25s;
}

.ct-us .info-metric:nth-child(3) {
  animation-delay: 0.38s;
}

.ct-us .info-metric-num {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.1;
  color: #055131;
}

.ct-us .info-metric-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  text-align: center;
}

.ct-us .info-metrics:hover .info-metric {
  filter: blur(1.5px);
  transition: filter 0.22s ease-out;
}

.ct-us .info-metrics:hover .info-metric:hover {
  filter: blur(0);
  transition: filter 0.18s ease-out;
}

@media (max-width: 1024px) {
  .ct-us .reach {
    grid-template-columns: 1fr;
  }

  .ct-us .reach-left {
    padding: 56px 28px;
  }

  .ct-us .reach-right {
    padding: 56px 28px;
  }

  .ct-us .info-blk {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px;
  }

  .ct-us .cf-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ct-us .reach-left {
    padding: 28px 16px;
  }

  .ct-us .reach-right {
    padding: 28px 16px;
  }

  .ct-us .reach-hdg {
    font-size: 27px;
  }

  .ct-us .info-blk {
    padding: 28px 16px;
  }

  .ct-us .info-hdg {
    font-size: 27px;
  }

  .ct-us .info-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ct-us .cf-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .ct-us .reach-hdg {
    font-size: 20px;
  }

  .ct-us .info-hdg {
    font-size: 20px;
  }

  .ct-us .info-metrics {
    grid-template-columns: 1fr;
  }
}

.philan {
  max-width: 1600px;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
}

.philan .ttl-blk {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 600px;
  padding-top: 96px;
  position: relative;
}

.philan .ttl-blk .img-col {
  position: relative;
  overflow: hidden;
}

.philan .ttl-blk .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1);
  transition: filter 0.35s ease-out;
}

.philan .ttl-blk .img-col img:hover {
  filter: saturate(0);
}

.philan .ttl-blk .img-col .img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 81, 49, 0.55) 0%, rgba(5, 81, 49, 0) 60%);
  pointer-events: none;
}

.philan .ttl-blk .txt-col {
  padding: 96px 56px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.philan .ttl-blk .txt-col::after {
  content: "";
  position: absolute;
  top: 56px;
  bottom: 56px;
  right: 0;
  width: 2px;
  background: linear-gradient(to bottom, #F26DAC, #FFFEEA);
}

.philan .ttl-blk .pg-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #055131;
  border: 1px solid #F26DAC;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 28px;
  text-transform: uppercase;
  align-self: flex-start;
}

.philan .ttl-blk .pg-h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.philan .body-sec {
  padding: 96px 56px;
  background: #FFFEEA;
  position: relative;
}

.philan .body-sec .vignette-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(5, 81, 49, 0.08) 100%);
  animation: vign-pulse 4s ease-out infinite alternate;
  pointer-events: none;
}

@keyframes vign-pulse {
  0% {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(5, 81, 49, 0.06) 100%);
  }

  100% {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(5, 81, 49, 0.14) 100%);
  }
}

.philan .body-sec .sec-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.philan .body-sec .sec-h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 28px 0;
  text-align: center;
}

.philan .body-sec .badge-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.philan .body-sec .badge-row .bdg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 16px;
  min-width: 140px;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10);
  position: relative;
  transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
}

.philan .body-sec .badge-row .bdg:hover {
  box-shadow: 0 12px 44px 0 rgba(242, 109, 172, 0.12);
  transform: translateY(-4px);
}

.philan .body-sec .badge-row .bdg .cnt {
  font-size: 37px;
  font-weight: 800;
  line-height: 1.1;
  color: #055131;
}

.philan .body-sec .badge-row .bdg .cnt-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #055131;
  text-align: center;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.philan .body-sec .badge-row .bdg .cnt-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #F26DAC;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  padding: 4px 8px;
  line-height: 1.1;
}

.philan .body-sec .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.philan .body-sec .split-grid .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
  transition: box-shadow 0.28s ease-out;
}

.philan .body-sec .split-grid .card:hover {
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.philan .body-sec .split-grid .card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philan .body-sec .split-grid .card .card-h {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
}

.philan .body-sec .split-grid .card .card-p {
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0;
  text-indent: 1.2em;
}

.philan .body-sec .split-grid .card .card-p+.card-p {
  text-indent: 1.2em;
}

.philan .body-sec .kw-box {
  border: 1px solid #055131;
  border-radius: 3px;
  padding: 16px 28px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  color: #055131;
  margin-bottom: 28px;
}

.philan .body-sec .prog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 56px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.philan .body-sec .prog-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
}

.philan .body-sec .prog-list li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 0px;
  background: #F26DAC;
  margin-top: 3px;
}

.philan .body-sec .prog-list li strong {
  color: #055131;
}

.philan .body-sec .closing-p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  text-align: center;
  margin: 0;
}

@media (max-width: 1024px) {
  .philan .ttl-blk {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .philan .ttl-blk .img-col {
    height: 320px;
  }

  .philan .ttl-blk .txt-col {
    padding: 28px 28px 56px 28px;
  }

  .philan .ttl-blk .txt-col::after {
    display: none;
  }

  .philan .ttl-blk .pg-h1 {
    font-size: 37px;
  }

  .philan .body-sec {
    padding: 56px 28px;
  }

  .philan .body-sec .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .philan .ttl-blk .pg-h1 {
    font-size: 27px;
  }

  .philan .ttl-blk .txt-col {
    padding: 16px 16px 28px 16px;
  }

  .philan .body-sec {
    padding: 56px 16px;
  }

  .philan .body-sec .sec-h2 {
    font-size: 27px;
  }

  .philan .body-sec .badge-row .bdg {
    min-width: 110px;
    padding: 16px 8px;
  }

  .philan .body-sec .badge-row .bdg .cnt {
    font-size: 27px;
  }
}

@media (max-width: 360px) {
  .philan .ttl-blk .pg-h1 {
    font-size: 20px;
  }

  .philan .body-sec .badge-row {
    flex-direction: column;
    align-items: center;
  }
}

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

.frst .div-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, #F26DAC, transparent);
  margin: 0;
}

.frst .s1 {
  padding: 56px 56px 56px 56px;
  background: #FFFEEA;
  position: relative;
}

.frst .s1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.frst .s1-text {
  padding: 28px 28px 28px 0;
}

.frst .s1-label {
  display: inline-block;
  border: 1px solid #F26DAC;
  color: #055131;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 28px;
  font-weight: 600;
}

.frst .s1-h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 28px;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.frst .s1-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #055131;
  margin-bottom: 28px;
}

.frst .s1-thesis {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 8px;
}

.frst .s1-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #055131;
  color: #FFFEEA;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.22s ease-out, gap 0.18s ease-out;
  position: relative;
  overflow: hidden;
}

.frst .s1-link:hover {
  background: #F26DAC;
  gap: 16px;
}

.frst .s1-link svg {
  flex-shrink: 0;
}

.frst .s1-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  position: relative;
}

.frst .s1-mosaic-decor {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid #F26DAC;
  border-radius: 12px;
  top: -16px;
  right: -16px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.frst .s1-img-wrap {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  animation: fadeImg 0.45s ease-out both;
}

.frst .s1-img-wrap.tall {
  grid-row: span 2;
  border-radius: 3px;
}

.frst .s1-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.35s ease-out;
}

.frst .s1-img-wrap:hover img {
  filter: saturate(1);
}

@keyframes fadeImg {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.frst .s1-img-wrap:nth-child(2) {
  animation-delay: 0.1s;
}

.frst .s1-img-wrap:nth-child(3) {
  animation-delay: 0.22s;
}

.frst .s1-img-wrap:nth-child(4) {
  animation-delay: 0.38s;
}

.frst .s2 {
  padding: 96px 56px;
  background: #fff;
}

.frst .s2-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: start;
}

.frst .s2-head h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.frst .s2-head .s2-img-wrap {
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10);
}

.frst .s2-head .s2-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.28s ease-out;
}

.frst .s2-head .s2-img-wrap:hover img {
  filter: saturate(1);
}

.frst .s2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.frst .s2-card {
  border: 1px solid rgba(5, 81, 49, 0.15);
  border-radius: 12px;
  padding: 28px;
  background: #FFFEEA;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
  animation: revealUp 0.35s ease-out both;
}

.frst .s2-card:nth-child(1) {
  animation-delay: 0.08s;
}

.frst .s2-card:nth-child(2) {
  animation-delay: 0.18s;
}

.frst .s2-card:nth-child(3) {
  animation-delay: 0.28s;
}

.frst .s2-card:nth-child(4) {
  animation-delay: 0.38s;
}

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

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

.frst .s2-card-icon {
  width: 40px;
  height: 40px;
  background: #055131;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.frst .s2-card-icon svg {
  width: 22px;
  height: 22px;
}

.frst .s2-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #055131;
  margin-bottom: 8px;
  line-height: 1.4;
}

.frst .s2-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.frst .s3 {
  padding: 96px 56px;
  background: #055131;
  position: relative;
  overflow: hidden;
}

.frst .s3-decor {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(255, 254, 234, 0.12);
  border-radius: 12px;
  top: -40px;
  left: -60px;
  pointer-events: none;
}

.frst .s3-decor2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(242, 109, 172, 0.2);
  border-radius: 12px;
  bottom: -30px;
  right: 80px;
  pointer-events: none;
}

.frst .s3-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.frst .s3-text h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #FFFEEA;
  margin-bottom: 28px;
}

.frst .s3-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.85);
  margin-bottom: 16px;
  text-indent: 1.5em;
}

.frst .s3-text p:first-of-type {
  text-indent: 0;
}

.frst .s3-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .s3-stat {
  background: rgba(255, 254, 234, 0.08);
  border: 1px solid rgba(242, 109, 172, 0.3);
  border-radius: 12px;
  padding: 28px;
  animation: revealUp 0.4s ease-out both;
}

.frst .s3-stat:nth-child(1) {
  animation-delay: 0.12s;
}

.frst .s3-stat:nth-child(2) {
  animation-delay: 0.25s;
}

.frst .s3-stat:nth-child(3) {
  animation-delay: 0.38s;
}

.frst .s3-stat-num {
  font-size: 37px;
  font-weight: 800;
  color: #F26DAC;
  line-height: 1.1;
}

.frst .s3-stat-label {
  font-size: 14px;
  color: rgba(255, 254, 234, 0.75);
  margin-top: 8px;
  line-height: 1.4;
}

.frst .s4 {
  padding: 96px 56px;
  background: #FFFEEA;
}

.frst .s4-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.frst .s4-head h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.frst .s4-head p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.frst .s4-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  align-items: start;
}

.frst .s4-col-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frst .s4-item {
  border: 1px solid rgba(5, 81, 49, 0.15);
  border-radius: 12px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
  animation: revealUp 0.35s ease-out both;
}

.frst .s4-item:nth-child(1) {
  animation-delay: 0.1s;
}

.frst .s4-item:nth-child(2) {
  animation-delay: 0.2s;
}

.frst .s4-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: #055131;
  margin-bottom: 8px;
  line-height: 1.4;
}

.frst .s4-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.frst .s4-center {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 44px 0 rgba(242, 109, 172, 0.12);
  position: relative;
}

.frst .s4-center img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.32s ease-out;
}

.frst .s4-center:hover img {
  filter: saturate(1);
}

.frst .s4-center-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(5, 81, 49, 0.92);
  border-radius: 3px;
  padding: 16px;
  color: #FFFEEA;
  font-size: 14px;
  line-height: 1.6;
}

.frst .s5 {
  padding: 96px 56px;
  background: #fff;
}

.frst .s5-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.frst .s5-img-wrap {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.frst .s5-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 0.38s ease-out;
}

.frst .s5-img-wrap:hover img {
  filter: saturate(1);
}

.frst .s5-text h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.frst .s5-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
  text-indent: 1.5em;
}

.frst .s5-text p:first-of-type {
  text-indent: 0;
}

.frst .s5-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.frst .s5-tag {
  border: 1px solid #055131;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #055131;
  letter-spacing: 0.05em;
}

.frst .s5-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F26DAC;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 28px;
  transition: gap 0.2s ease-out, color 0.18s ease-out;
}

.frst .s5-news-link:hover {
  gap: 16px;
  color: #055131;
}

.frst .s6 {
  padding: 96px 56px;
  background: #FFFEEA;
}

.frst .s6-head {
  margin-bottom: 56px;
}

.frst .s6-head h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.frst .s6-head p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.frst .s6-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.frst .s6-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 14px 0 rgba(242, 109, 172, 0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: revealUp 0.4s ease-out both;
}

.frst .s6-card:nth-child(1) {
  animation-delay: 0.08s;
}

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

.frst .s6-card:nth-child(3) {
  animation-delay: 0.34s;
}

.frst .s6-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.frst .s6-portrait {
  width: 64px;
  height: 86px;
  overflow: hidden;
  flex-shrink: 0;
}

.frst .s6-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75);
  transition: filter 0.28s ease-out;
}

.frst .s6-portrait:hover img {
  filter: saturate(1);
}

.frst .s6-person-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: #055131;
  margin-bottom: 4px;
  line-height: 1.4;
}

.frst .s6-person-info span {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.04em;
}

.frst .s6-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  border: 1px solid rgba(242, 109, 172, 0.35);
  border-radius: 3px;
  padding: 16px;
}

.frst .s6-result {
  font-size: 13px;
  font-weight: 600;
  color: #055131;
  background: rgba(5, 81, 49, 0.07);
  border-radius: 3px;
  padding: 8px 16px;
}

.frst .s7 {
  padding: 96px 56px;
  background: #055131;
  position: relative;
  overflow: hidden;
}

.frst .s7-decor {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(242, 109, 172, 0.15);
  border-radius: 12px;
  bottom: -80px;
  right: -60px;
  pointer-events: none;
}

.frst .s7-inner {
  position: relative;
  z-index: 1;
}

.frst .s7-head {
  margin-bottom: 56px;
}

.frst .s7-head h2 {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #FFFEEA;
  margin-bottom: 8px;
}

.frst .s7-head p {
  font-size: 16px;
  color: rgba(255, 254, 234, 0.75);
  line-height: 1.6;
}

.frst .s7-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.frst .s7-phase {
  background: rgba(255, 254, 234, 0.06);
  border: 1px solid rgba(242, 109, 172, 0.25);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: revealUp 0.38s ease-out both;
}

.frst .s7-phase:nth-child(1) {
  animation-delay: 0.06s;
}

.frst .s7-phase:nth-child(2) {
  animation-delay: 0.16s;
}

.frst .s7-phase:nth-child(3) {
  animation-delay: 0.28s;
}

.frst .s7-phase:nth-child(4) {
  animation-delay: 0.42s;
}

.frst .s7-phase-num {
  font-size: 52px;
  font-weight: 800;
  color: rgba(242, 109, 172, 0.25);
  line-height: 1.1;
}

.frst .s7-phase h4 {
  font-size: 16px;
  font-weight: 700;
  color: #FFFEEA;
  line-height: 1.4;
}

.frst .s7-phase p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.72);
}

.frst .s7-bottom {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.frst .s7-closing p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 254, 234, 0.85);
  text-indent: 1.5em;
}

.frst .s7-closing p:first-of-type {
  text-indent: 0;
}

.frst .s7-img-wrap {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 44px 0 rgba(242, 109, 172, 0.12);
}

.frst .s7-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(0.65);
  transition: filter 0.35s ease-out;
}

.frst .s7-img-wrap:hover img {
  filter: saturate(1);
}

@media (max-width: 1024px) {
  .frst .s1 {
    padding: 56px 28px;
  }

  .frst .s1-grid {
    grid-template-columns: 1fr;
  }

  .frst .s1-text {
    padding: 0;
  }

  .frst .s1-h1 {
    font-size: 37px;
  }

  .frst .s2 {
    padding: 56px 28px;
  }

  .frst .s2-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .frst .s3 {
    padding: 56px 28px;
  }

  .frst .s3-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .frst .s4 {
    padding: 56px 28px;
  }

  .frst .s4-grid {
    grid-template-columns: 1fr;
  }

  .frst .s4-col-side {
    flex-direction: row;
  }

  .frst .s5 {
    padding: 56px 28px;
  }

  .frst .s5-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .frst .s6 {
    padding: 56px 28px;
  }

  .frst .s6-grid {
    grid-template-columns: 1fr 1fr;
  }

  .frst .s7 {
    padding: 56px 28px;
  }

  .frst .s7-phases {
    grid-template-columns: 1fr 1fr;
  }

  .frst .s7-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .frst .s1 {
    padding: 28px 16px;
  }

  .frst .s1-h1 {
    font-size: 27px;
  }

  .frst .s1-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px;
  }

  .frst .s2 {
    padding: 56px 16px;
  }

  .frst .s2-cards {
    grid-template-columns: 1fr;
  }

  .frst .s3 {
    padding: 56px 16px;
  }

  .frst .s4 {
    padding: 56px 16px;
  }

  .frst .s4-col-side {
    flex-direction: column;
  }

  .frst .s5 {
    padding: 56px 16px;
  }

  .frst .s6 {
    padding: 56px 16px;
  }

  .frst .s6-grid {
    grid-template-columns: 1fr;
  }

  .frst .s7 {
    padding: 56px 16px;
  }

  .frst .s7-phases {
    grid-template-columns: 1fr;
  }

  .frst .s7-phase-num {
    font-size: 37px;
  }
}

@media (max-width: 360px) {
  .frst .s1-h1 {
    font-size: 20px;
  }

  .frst .s2-head h2 {
    font-size: 27px;
  }

  .frst .s3-text h2 {
    font-size: 27px;
  }

  .frst .s4-head h2 {
    font-size: 27px;
  }

  .frst .s5-text h2 {
    font-size: 27px;
  }

  .frst .s6-head h2 {
    font-size: 27px;
  }

  .frst .s7-head h2 {
    font-size: 27px;
  }
}

.suc_page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 28px;
  background-color: #fff;
}

.suc_page .suc_wrap {
  max-width: 640px;
  width: 100%;
  text-align: center;
  padding: 56px 56px;
  background-color: #FFFEEA;
  border-radius: 12px;
  box-shadow: 0 12px 44px 0 rgba(242, 109, 172, 0.12);
}

.suc_page .suc_icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
}

.suc_page .suc_icon svg {
  display: block;
}

.suc_page .suc_title {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  background: linear-gradient(to right, #055131, #F26DAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.suc_page .suc_msg {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 8px;
}

.suc_page .suc_sub {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 56px;
}

.suc_page .suc_divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, #F26DAC, #055131);
  border-radius: 3px;
  margin: 0 auto 28px;
}

.suc_page .suc_actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.suc_page .btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background-color: #055131;
  color: #FFFEEA;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease-out, box-shadow 0.2s ease-out;
  box-shadow: 0 3px 3px 0 rgba(5, 81, 49, 0.06);
  overflow: hidden;
  position: relative;
}

.suc_page .btn_primary:hover {
  background-color: #033d25;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
}

.suc_page .btn_primary:focus {
  outline: 2px solid #055131;
  outline-offset: 3px;
}

.suc_page .btn_primary .btn_icon {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-out;
}

.suc_page .btn_primary:hover .btn_icon {
  transform: translateX(4px);
}

.suc_page .btn_sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background-color: transparent;
  color: #055131;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border: 1.5px solid #055131;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.35s ease-out, color 0.35s ease-out;
}

.suc_page .btn_sec:hover {
  background-color: #055131;
  color: #FFFEEA;
}

.suc_page .btn_sec:focus {
  outline: 2px solid #F26DAC;
  outline-offset: 3px;
}

.suc_page .suc_note {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.6;
  color: #5a5a5a;
  letter-spacing: 0.03em;
}

.suc_page .suc_note a {
  color: #055131;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease-out;
}

.suc_page .suc_note a:hover {
  color: #F26DAC;
}

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

  .suc_page .suc_wrap {
    padding: 28px 16px;
  }

  .suc_page .suc_title {
    font-size: 27px;
  }

  .suc_page .suc_actions {
    flex-direction: column;
    align-items: stretch;
  }

  .suc_page .btn_primary,
  .suc_page .btn_sec {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .suc_page .suc_title {
    font-size: 20px;
  }

  .suc_page .suc_msg {
    font-size: 14px;
  }
}

.err_pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 28px;
  background-color: #fff;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
}

.err_pg .num_wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
}

.err_pg .num_wrap .big_num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  background: linear-gradient(to right, #F26DAC, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}

.err_pg .num_wrap .mid_dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #055131;
  margin: 0 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
}

.err_pg .divider_line {
  width: 64px;
  height: 3px;
  background: linear-gradient(to right, #F26DAC, #055131);
  border-radius: 3px;
  margin: 0 auto 28px;
}

.err_pg .err_title {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 800;
  color: #055131;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.err_pg .err_sub {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  max-width: 480px;
  margin: 0 auto 56px;
  text-indent: 1.5em;
}

.err_pg .hint_box {
  display: inline-block;
  border: 1px solid #F26DAC;
  border-radius: 3px;
  padding: 16px 28px;
  margin-bottom: 56px;
  max-width: 520px;
}

.err_pg .hint_box .hint_label {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #F26DAC;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.err_pg .hint_box .hint_text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.err_pg .nav_links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.err_pg .nav_links .btn_main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background-color: #055131;
  color: #FFFEEA;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid #055131;
  box-shadow: 0 4px 14px 0 rgba(5, 81, 49, 0.10);
  transition: background-color 0.25s ease-out, color 0.2s ease-out, box-shadow 0.35s ease-out;
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.err_pg .nav_links .btn_main .btn_icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
}

.err_pg .nav_links .btn_main:hover {
  background-color: #033d25;
  box-shadow: 0 12px 44px 0 rgba(5, 81, 49, 0.12);
}

.err_pg .nav_links .btn_main:hover .btn_icon {
  transform: translateX(-3px);
}

.err_pg .nav_links .btn_main:focus-visible {
  outline: 2px solid #F26DAC;
  outline-offset: 3px;
}

.err_pg .nav_links .btn_alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background-color: transparent;
  color: #055131;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid #055131;
  transition: background-color 0.35s ease-out, color 0.2s ease-out;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.err_pg .nav_links .btn_alt:hover {
  background-color: #FFFEEA;
}

.err_pg .nav_links .btn_alt:focus-visible {
  outline: 2px solid #F26DAC;
  outline-offset: 3px;
}

.err_pg .deco_strip {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 56px;
  align-items: center;
  justify-content: center;
}

.err_pg .deco_strip .strip_seg {
  height: 4px;
  border-radius: 3px;
}

.err_pg .deco_strip .strip_seg.s1 {
  width: 28px;
  background-color: #F26DAC;
}

.err_pg .deco_strip .strip_seg.s2 {
  width: 56px;
  background-color: #055131;
}

.err_pg .deco_strip .strip_seg.s3 {
  width: 16px;
  background-color: #F26DAC;
  opacity: 0.4;
}

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

  .err_pg .num_wrap .big_num {
    font-size: 37px;
  }

  .err_pg .num_wrap .mid_dot {
    width: 36px;
    height: 36px;
    margin: 0 8px;
  }

  .err_pg .err_title {
    font-size: 27px;
  }

  .err_pg .nav_links {
    flex-direction: column;
    width: 100%;
  }

  .err_pg .nav_links .btn_main,
  .err_pg .nav_links .btn_alt {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .err_pg .num_wrap .big_num {
    font-size: 27px;
    letter-spacing: -1px;
  }

  .err_pg .err_title {
    font-size: 20px;
  }

  .err_pg .err_sub {
    font-size: 14px;
  }
}