* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.pg-hdr {
  position: relative;
  background: #E7ECE5;
  font-family: 'Fira Code', monospace;
  overflow: hidden;
}

.pg-hdr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8763C 0%, #36C1A2 100%);
}

.hdr-band {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-hex {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #fff;
  box-shadow: -1px 3px 3px 1px rgba(200,118,60,0.06), -1px 7px 22px 1px rgba(200,118,60,0.09);
  text-decoration: none;
}

.logo-hex img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.hdr-div {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #C8763C 40%, #36C1A2 60%, transparent);
  flex-shrink: 0;
}

.pri-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pri-nav a {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #2a2a2a;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 7px;
  transition: background 0.15s ease-out, color 0.15s ease-out;
  white-space: nowrap;
}

.pri-nav a:hover {
  background: rgba(200,118,60,0.1);
  color: #C8763C;
}

.pri-nav a:focus {
  outline: 2px solid #C8763C;
  outline-offset: 2px;
  text-decoration: underline;
}

.pri-nav a[data-cur="true"] {
  background: #C8763C;
  color: #fff;
  font-weight: 600;
}

.hdr-act {
  flex-shrink: 0;
  margin-left: auto;
}

.hdr-act a {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  background: #36C1A2;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 7px;
  display: inline-block;
  border: 2px solid #36C1A2;
  box-shadow: -1px 3px 3px 1px rgba(54,193,162,0.06);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
  white-space: nowrap;
}

.hdr-act a:hover {
  transform: scale(1.04);
  box-shadow: -1px 7px 22px 1px rgba(54,193,162,0.09);
}

.hdr-act a:focus {
  outline: 2px solid #2a2a2a;
  outline-offset: 2px;
  text-decoration: underline;
}

.hdr-deco {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hdr-tag {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #C8763C;
  background: rgba(200,118,60,0.08);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(200,118,60,0.2);
}

.hdr-flag {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hdr-flag .fi {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  box-shadow: -1px 3px 3px 1px rgba(200,118,60,0.06);
}

.hdr-flag span {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 300;
  color: #4a4a4a;
  letter-spacing: 0.01em;
}

.pg-ftr {
  background: #2a2a2a;
  font-family: 'Fira Code', monospace;
  position: relative;
}

.pg-ftr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #36C1A2 0%, #C8763C 100%);
}

.ftr-body {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ftr-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.ftr-script {
  font-family: 'Fira Code', monospace;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, #C8763C 0%, #36C1A2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.ftr-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #b0b0b0;
  max-width: 480px;
  margin: 0;
}

.ftr-logo-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #3a3a3a;
  box-shadow: -1px 3px 3px 1px rgba(54,193,162,0.06), -1px 7px 22px 1px rgba(54,193,162,0.09);
}

.ftr-logo-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.ftr-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.ftr-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.ftr-nav-row a {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #b0b0b0;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s ease-out, background 0.15s ease-out;
}

.ftr-nav-row a:hover {
  color: #36C1A2;
  background: rgba(54,193,162,0.08);
}

.ftr-nav-row a:focus {
  outline: 2px solid #36C1A2;
  outline-offset: 2px;
  text-decoration: underline;
}

.ftr-sub-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
}

.ftr-sub-row a {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #787878;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s ease-out;
}

.ftr-sub-row a:hover {
  color: #C8763C;
}

.ftr-sub-row a:focus {
  outline: 2px solid #C8763C;
  outline-offset: 2px;
  text-decoration: underline;
}

.ftr-copy {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #555;
  text-align: center;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  width: 100%;
}

.ck-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #E7ECE5;
  box-shadow: -1px 10px 36px 1px rgba(200,118,60,0.12);
  z-index: 4000;
  font-family: 'Fira Code', monospace;
  transform: translateY(100%);
  transition: transform 0.26s ease-out;
}

.ck-bar.ck-vis {
  transform: translateY(0);
}

.ck-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ck-head {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #2a2a2a;
  margin: 0;
}

.ck-txt {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

.ck-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ck-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.01em;
  line-height: 1.5;
  cursor: pointer;
}

.ck-cat input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #36C1A2;
  cursor: pointer;
  box-shadow: inset -1px 3px 3px 1px rgba(200,118,60,0.06);
}

.ck-cat input[type="checkbox"]:focus {
  outline: 2px solid #36C1A2;
  outline-offset: 2px;
}

.ck-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ck-acc {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  background: #C8763C;
  border: 2px solid #C8763C;
  padding: 12px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: transform 0.12s ease-out;
}

.ck-acc:hover {
  transform: scale(1.04);
}

.ck-acc:focus {
  outline: 2px solid #2a2a2a;
  outline-offset: 2px;
}

.ck-rej {
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #C8763C;
  background: transparent;
  border: 2px solid #C8763C;
  padding: 12px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: transform 0.12s ease-out, background 0.15s ease-out;
}

.ck-rej:hover {
  transform: scale(1.04);
  background: rgba(200,118,60,0.06);
}

.ck-rej:focus {
  outline: 2px solid #2a2a2a;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .hdr-band {
    padding: 20px 20px;
    gap: 20px;
  }
  .hdr-deco {
    padding: 0 20px 20px;
  }
  .ftr-body {
    padding: 80px 20px 40px;
  }
  .ck-inner {
    padding: 20px 20px;
  }
}

@media (max-width: 768px) {
  .hdr-band {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hdr-act {
    margin-left: 0;
  }
  .pri-nav {
    order: 3;
    width: 100%;
  }
  .hdr-div {
    display: none;
  }
  .ftr-nav-row {
    flex-direction: column;
    align-items: center;
  }
  .ftr-sub-row {
    flex-direction: column;
    align-items: center;
  }
  .ck-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .ck-acc,
  .ck-rej {
    text-align: center;
  }
}

@media (max-width: 375px) {
  .hdr-band {
    padding: 12px;
  }
  .hdr-deco {
    padding: 0 12px 12px;
    flex-wrap: wrap;
  }
  .ftr-body {
    padding: 40px 12px 20px;
  }
  .ftr-script {
    font-size: 28px;
  }
  .ck-inner {
    padding: 12px;
  }
}.content-legal {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2d2d2d;
    background: #fff;
}

.content-legal h1 {
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
    margin-top: 0;
    color: #1b1b1b;
}

.content-legal h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-top: 80px;
    margin-bottom: 20px;
    color: #1b1b1b;
}

.content-legal h3 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

.content-legal h4 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-top: 40px;
    margin-bottom: 12px;
    color: #222;
}

.content-legal h5 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #333;
}

.content-legal h6 {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #444;
    text-transform: uppercase;
}

.content-legal p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.content-legal ul,
.content-legal ol {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 40px;
    color: #2d2d2d;
}

.content-legal ul {
    list-style: none;
    padding-left: 20px;
}

.content-legal ol {
    list-style: none;
    counter-reset: policy-ol;
    padding-left: 20px;
}

.content-legal ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.content-legal ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 36px;
    background: #C8763C;
}

.content-legal ul ul li::before {
    background: #36C1A2;
    width: 6px;
    height: 6px;
    top: 12px;
}

.content-legal ul ul ul li::before {
    background: #E7ECE5;
    border: 1px solid #36C1A2;
    width: 6px;
    height: 6px;
    top: 12px;
}

.content-legal ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    counter-increment: policy-ol;
}

.content-legal ol li::before {
    content: counter(policy-ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
    color: #C8763C;
    letter-spacing: 0.01em;
}

.content-legal ol ol {
    counter-reset: policy-ol-inner;
}

.content-legal ol ol li {
    counter-increment: policy-ol-inner;
}

.content-legal ol ol li::before {
    content: counter(policy-ol-inner, lower-alpha) ".";
    color: #36C1A2;
}

.content-legal em,
.content-legal i {
    font-style: italic;
    color: inherit;
}

.content-legal strong em,
.content-legal em strong {
    font-weight: 700;
    font-style: italic;
}

.content-legal table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.09);
    border-radius: 7px;
    overflow: hidden;
}

.content-legal thead {
    background: #C8763C;
}

.content-legal thead th {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.5;
    padding: 12px 20px;
    text-align: left;
    border: none;
}

.content-legal tbody tr {
    border-bottom: 1px solid #E7ECE5;
    transition: background 0.15s ease-out;
}

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

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

.content-legal tbody tr:hover {
    background: rgba(54, 193, 162, 0.07);
}

.content-legal td {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #2d2d2d;
    vertical-align: top;
    border: none;
}

.content-legal th {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .content-legal {
        padding: 40px 20px;
    }

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

    .content-legal h2 {
        font-size: 28px;
        margin-top: 40px;
    }

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

    .content-legal h4 {
        font-size: 18px;
    }

    .content-legal h5,
    .content-legal h6 {
        font-size: 16px;
    }

    .content-legal p,
    .content-legal ul,
    .content-legal ol {
        font-size: 16px;
    }

    .content-legal table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px;
    }
}

@media (max-width: 375px) {
    .content-legal {
        padding: 40px 12px;
    }

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

    .content-legal h2 {
        font-size: 22px;
    }

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

    .content-legal h4,
    .content-legal h5,
    .content-legal h6 {
        font-size: 16px;
    }
}
.certs-pg {
  max-width: 100%;
  overflow-x: hidden;
}

.certs-pg .inner-lim {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.certs-pg .hero-band {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.certs-pg .hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, #C8763C 0%, #36C1A2 55%, #E7ECE5 100%);
  background-size: 300% 300%;
  animation: gradshift 8s ease infinite;
  z-index: 0;
}

.certs-pg .hero-band::after {
  content: '';
  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='n'%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(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  z-index: 1;
  pointer-events: none;
}

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

.certs-pg .hero-rel {
  position: relative;
  z-index: 2;
}

.certs-pg .hero-deco {
  position: absolute;
  top: 20px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.certs-pg .hero-deco span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.45);
  border-radius: 4px;
}

.certs-pg .hero-deco span:nth-child(1) { width: 32px; }
.certs-pg .hero-deco span:nth-child(2) { width: 22px; }
.certs-pg .hero-deco span:nth-child(3) { width: 28px; }
.certs-pg .hero-deco span:nth-child(4) { width: 18px; }

.certs-pg .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.certs-pg .hero-txt h1 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
}

.certs-pg .hero-txt h1 em {
  font-style: italic;
  color: #E7ECE5;
}

.certs-pg .hero-txt p {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.certs-pg .hero-img-wrap {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  animation: elastic-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes elastic-in {
  0% { opacity: 0; transform: scale(0.88); filter: blur(6px); }
  60% { opacity: 1; filter: blur(0px); }
  75% { transform: scale(1.03); }
  100% { transform: scale(1); filter: blur(0px); opacity: 1; }
}

.certs-pg .hero-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: -1px 10px 36px 1px rgba(200,118,60,0.12);
  filter: blur(0px);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
  transition: transform 0.18s ease-out, filter 0.15s ease;
}

.certs-pg .hero-img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.certs-pg .cert-divider-1 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.certs-pg .cert-divider-1 svg {
  display: block;
  width: 100%;
}

.certs-pg .cert-list-sec {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
}

.certs-pg .cert-list-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 18px,
    rgba(200,118,60,0.025) 18px,
    rgba(200,118,60,0.025) 20px
  );
  pointer-events: none;
}

.certs-pg .sec-label {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #C8763C;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.certs-pg .sec-head {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 40px 0;
}

.certs-pg .sec-head em {
  font-style: italic;
  color: #C8763C;
}

.certs-pg .cert-three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.certs-pg .cert-col {
  border-radius: 13px;
  padding: 40px 20px;
  position: relative;
}

.certs-pg .cert-col.col-a {
  background: #fff8f3;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
}

.certs-pg .cert-col.col-b {
  background: #f0faf7;
  box-shadow: -1px 7px 22px 1px rgba(54,193,162,0.09);
}

.certs-pg .cert-col.col-c {
  background: #E7ECE5;
  box-shadow: -1px 3px 3px 1px rgba(200,118,60,0.06);
}

.certs-pg .cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  margin-bottom: 20px;
}

.certs-pg .cert-col.col-a .cert-badge { background: #C8763C; }
.certs-pg .cert-col.col-b .cert-badge { background: #36C1A2; }
.certs-pg .cert-col.col-c .cert-badge { background: #6b8a7a; }

.certs-pg .cert-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certs-pg .cert-col h4 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 12px 0;
}

.certs-pg .cert-col p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3d3d3d;
  margin: 0 0 20px 0;
}

.certs-pg .cert-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
}

.certs-pg .badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 36px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.certs-pg .cert-col.col-a .badge-pill { background: #C8763C; }
.certs-pg .cert-col.col-b .badge-pill { background: #36C1A2; }
.certs-pg .cert-col.col-c .badge-pill { background: #6b8a7a; }

.certs-pg .cert-divider-2 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.certs-pg .cert-divider-2 svg {
  display: block;
  width: 100%;
}

.certs-pg .social-sec {
  background: #fdf7f2;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.certs-pg .social-sec::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  display: flex;
  width: 3px;
  height: 80px;
  background: linear-gradient(323deg, #C8763C, transparent);
  border-radius: 4px;
}

.certs-pg .social-asymm {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}

.certs-pg .social-left h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #1b1b1b;
  margin: 0 0 20px 0;
}

.certs-pg .social-left h2 strong {
  font-weight: 800;
}

.certs-pg .social-left p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3d3d3d;
  margin: 0 0 20px 0;
}

.certs-pg .pull-quote {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-style: italic;
  color: #C8763C;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-left: 20px;
  border-top: 2px solid #C8763C;
  border-bottom: 2px solid rgba(200,118,60,0.25);
  padding-top: 12px;
  padding-bottom: 12px;
}

.certs-pg .social-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.certs-pg .review-card {
  background: #fff;
  border-radius: 13px;
  padding: 20px;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease-out, box-shadow 0.15s ease;
}

.certs-pg .review-card:hover {
  transform: translateY(-3px);
  box-shadow: -1px 10px 36px 1px rgba(200,118,60,0.12);
}

.certs-pg .rev-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.certs-pg .rev-portrait {
  width: 52px;
  height: 69px;
  flex-shrink: 0;
  overflow: hidden;
}

.certs-pg .rev-portrait img {
  width: 52px;
  height: 69px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.18s ease-out;
}

.certs-pg .review-card:hover .rev-portrait img {
  filter: brightness(1.07);
}

.certs-pg .rev-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.certs-pg .rev-name {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 0.01em;
}

.certs-pg .rev-role {
  font-size: 16px;
  color: #5a5a5a;
  letter-spacing: 0.01em;
}

.certs-pg .rev-stars {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}

.certs-pg .star {
  width: 14px;
  height: 14px;
}

.certs-pg .star polygon {
  fill: #C8763C;
}

.certs-pg .rev-text {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3d3d3d;
  margin: 0;
}

.certs-pg .rev-flag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #5a5a5a;
}

.certs-pg .cert-divider-3 {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.certs-pg .cert-divider-3 svg {
  display: block;
  width: 100%;
}

.certs-pg .experts-sec {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.certs-pg .experts-sec .inner-lim {
  text-align: center;
}

.certs-pg .experts-sec h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 12px 0;
}

.certs-pg .experts-sec h2 em {
  font-style: italic;
  color: #36C1A2;
}

.certs-pg .experts-sec .sub-p {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3d3d3d;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.certs-pg .experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.certs-pg .exp-card {
  border-radius: 13px;
  background: #fff;
  box-shadow: -1px 7px 22px 1px rgba(54,193,162,0.09);
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.18s ease;
}

.certs-pg .exp-card:hover {
  transform: scale(1.025);
  box-shadow: -1px 10px 36px 1px rgba(54,193,162,0.12);
}

.certs-pg .exp-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.certs-pg .exp-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.18s ease-out, filter 0.15s ease;
}

.certs-pg .exp-card:hover .exp-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.certs-pg .exp-body {
  padding: 20px;
  text-align: left;
}

.certs-pg .exp-body h5 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 6px 0;
}

.certs-pg .exp-body .exp-role {
  font-size: 16px;
  color: #36C1A2;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 12px 0;
}

.certs-pg .exp-body p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3d3d3d;
  margin: 0;
}

.certs-pg .exp-no-img {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.certs-pg .exp-no-img .exp-avatar {
  width: 100%;
  height: 180px;
  background: linear-gradient(323deg, #C8763C 0%, transparent 100%), #E7ECE5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certs-pg .exp-avatar-init {
  width: 64px;
  height: 64px;
  border-radius: 36px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #C8763C;
  letter-spacing: 0.02em;
}

.certs-pg .cta-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.certs-pg .btn-prim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background: #C8763C;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 7px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
  transition: transform 0.12s ease-out, box-shadow 0.15s ease;
}

.certs-pg .btn-prim:hover {
  transform: scale(1.04);
  box-shadow: -1px 10px 36px 1px rgba(200,118,60,0.12);
}

.certs-pg .btn-prim:focus {
  outline: 2px solid #C8763C;
  outline-offset: 3px;
}

.certs-pg .btn-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background: transparent;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 7px;
  text-decoration: none;
  border: 2px solid #1b1b1b;
  cursor: pointer;
  transition: transform 0.12s ease-out, border-color 0.15s ease, color 0.15s ease;
}

.certs-pg .btn-sec:hover {
  transform: scale(1.04);
  border-color: #C8763C;
  color: #C8763C;
}

.certs-pg .btn-sec:focus {
  outline: 2px solid #C8763C;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .certs-pg .hero-txt h1 { font-size: 40px; }
  .certs-pg .sec-head { font-size: 28px; }
  .certs-pg .social-asymm { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .certs-pg .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .certs-pg .hero-txt h1 { font-size: 40px; }
  .certs-pg .cert-three-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .certs-pg .social-asymm {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .certs-pg .experts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .certs-pg .social-left h2 { font-size: 28px; }
}

@media (max-width: 375px) {
  .certs-pg .hero-txt h1 { font-size: 28px; }
  .certs-pg .experts-grid { grid-template-columns: 1fr; }
  .certs-pg .cta-strip { flex-direction: column; }
}

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

.wcu .pg-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}


.wcu .tb {
  position: relative;
  padding: 80px 20px 60px;
  background-color: #2a2320;
  overflow: hidden;
}

.wcu .tb-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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.wcu .tb-shape-a {
  position: absolute;
  top: -40px;
  right: 80px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(200, 118, 60, 0.18);
  border-radius: 13px;
  transform: rotate(28deg);
  pointer-events: none;
}

.wcu .tb-shape-b {
  position: absolute;
  bottom: 20px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: rgba(54, 193, 162, 0.07);
  border-radius: 7px;
  transform: rotate(-15deg);
  pointer-events: none;
}

.wcu .tb-shape-c {
  position: absolute;
  top: 30px;
  left: 20%;
  width: 8px;
  height: 8px;
  background: rgba(200, 118, 60, 0.4);
  border-radius: 4px;
  pointer-events: none;
}

.wcu .tb-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.wcu .tb-text {
  flex: 1 1 0;
}

.wcu .tb-eyebrow {
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #C8763C;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.wcu .tb-h1 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #E7ECE5;
  font-weight: 800;
  margin: 0 0 20px;
}

.wcu .tb-h1 .kw {
  color: #C8763C;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: rgba(200, 118, 60, 0.45);
  text-underline-offset: 5px;
}

.wcu .tb-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(231, 236, 229, 0.72);
  letter-spacing: 0.01em;
  max-width: 460px;
}

.wcu .tb-img-col {
  flex: 0 0 320px;
}

.wcu .tb-img-wrap {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: -1px 10px 36px 1px rgba(200, 118, 60, 0.12);
  filter: saturate(0.38) brightness(0.82);
  transition: filter 0.18s ease-out;
}

.wcu .tb-img-wrap:hover {
  filter: saturate(0.6) brightness(0.9);
}

.wcu .tb-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}


.wcu .reasons {
  padding: 80px 20px;
  background-color: #fff;
  position: relative;
}

.wcu .reasons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(323deg, #C8763C, transparent);
}

.wcu .reasons-top {
  max-width: 1024px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.wcu .reasons-lbl {
  flex: 0 0 200px;
  padding-top: 6px;
}

.wcu .reasons-lbl-tag {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #36C1A2;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.wcu .reasons-lbl-line {
  width: 40px;
  height: 3px;
  background: #C8763C;
  border-radius: 4px;
}

.wcu .reasons-h2 {
  flex: 1 1 0;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1a17;
  font-weight: 300;
  margin: 0;
}

.wcu .reasons-h2 strong {
  font-weight: 800;
}

.wcu .r-grid {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wcu .r-card {
  background: #E7ECE5;
  border-radius: 13px;
  padding: 40px 20px 40px;
  position: relative;
  box-shadow: -1px 3px 3px 1px rgba(200, 118, 60, 0.06);
  transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.wcu .r-card:hover {
  box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.09);
  transform: translateY(-3px);
}

.wcu .r-card.feat {
  background: linear-gradient(323deg, #C8763C, rgba(200, 118, 60, 0.72));
  grid-column: span 1;
}

.wcu .r-card.feat .r-num,
.wcu .r-card.feat .r-title,
.wcu .r-card.feat .r-body {
  color: #fff;
}

.wcu .r-diamond {
  position: absolute;
  top: -10px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: #36C1A2;
  transform: rotate(45deg);
  border-radius: 4px;
}

.wcu .r-num {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #C8763C;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 12px;
}

.wcu .r-title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e1a17;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.wcu .r-body {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3530;
  letter-spacing: 0.01em;
}


.wcu .social-proof {
  padding: 80px 20px;
  background: linear-gradient(323deg, rgba(200, 118, 60, 0.06), rgba(54, 193, 162, 0.04));
  position: relative;
  animation: bg-osc 6s ease-in-out infinite;
}

@keyframes bg-osc {
  0%   { background-color: rgba(231, 236, 229, 0.55); }
  50%  { background-color: rgba(231, 236, 229, 0.82); }
  100% { background-color: rgba(231, 236, 229, 0.55); }
}

.wcu .social-proof::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(323deg, transparent, #36C1A2, transparent);
}

.wcu .sp-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.wcu .sp-head {
  text-align: center;
  margin-bottom: 60px;
}

.wcu .sp-h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #1e1a17;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}

.wcu .sp-h2 .ac {
  color: #36C1A2;
  font-style: italic;
}

.wcu .sp-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #3d3530;
  max-width: 560px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

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

.wcu .sp-testimonials {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wcu .t-card {
  background: #fff;
  border-radius: 13px;
  padding: 20px 20px;
  box-shadow: -1px 7px 22px 1px rgba(54, 193, 162, 0.09);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.12s ease;
}

.wcu .t-card:hover {
  box-shadow: -1px 10px 36px 1px rgba(54, 193, 162, 0.12);
}

.wcu .t-portrait {
  flex: 0 0 72px;
}

.wcu .t-portrait img {
  width: 72px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  border-radius: 13px;
  display: block;
}

.wcu .t-body {
  flex: 1 1 0;
}

.wcu .t-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #3d3530;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  font-style: italic;
}

.wcu .t-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e1a17;
  letter-spacing: 0.01em;
  display: block;
}

.wcu .t-role {
  font-size: 16px;
  color: #C8763C;
  letter-spacing: 0.01em;
  display: block;
}

.wcu .sp-aside {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wcu .sp-img-wrap {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: -1px 10px 36px 1px rgba(200, 118, 60, 0.12);
  transition: box-shadow 0.18s ease-out;
}

.wcu .sp-img-wrap:hover {
  box-shadow: -1px 14px 44px 4px rgba(200, 118, 60, 0.18);
}

.wcu .sp-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wcu .sp-pull {
  background: #1e1a17;
  border-radius: 13px;
  padding: 20px;
  box-shadow: -1px 3px 3px 1px rgba(200, 118, 60, 0.06);
}

.wcu .sp-pull-q {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  color: #E7ECE5;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}

.wcu .sp-pull-q .ac {
  color: #36C1A2;
  font-style: italic;
}

.wcu .sp-pull-attr {
  font-size: 16px;
  color: rgba(231, 236, 229, 0.6);
  letter-spacing: 0.01em;
}


@media (max-width: 1024px) {
  .wcu .tb-h1 {
    font-size: 40px;
  }
  .wcu .r-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcu .r-card.feat {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .wcu .tb-inner {
    flex-direction: column;
  }
  .wcu .tb-img-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .wcu .tb-h1 {
    font-size: 40px;
  }
  .wcu .reasons-top {
    flex-direction: column;
    gap: 20px;
  }
  .wcu .reasons-lbl {
    flex: 0 0 auto;
  }
  .wcu .r-grid {
    grid-template-columns: 1fr;
  }
  .wcu .r-card.feat {
    grid-column: span 1;
  }
  .wcu .sp-row {
    flex-direction: column;
  }
  .wcu .sp-aside {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 375px) {
  .wcu .tb {
    padding: 60px 12px 40px;
  }
  .wcu .tb-h1 {
    font-size: 28px;
  }
  .wcu .reasons {
    padding: 60px 12px;
  }
  .wcu .social-proof {
    padding: 60px 12px;
  }
  .wcu .sp-h2 {
    font-size: 28px;
  }
  .wcu .reasons-h2 {
    font-size: 28px;
  }
}

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

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

.frnt ::selection {
  background: #111;
  color: #fff;
}

.frnt a {
  color: #C8763C;
  text-decoration: none;
  transition: color 0.15s ease-out, text-shadow 0.15s ease-out;
}

.frnt a:hover {
  color: #C8763C;
  text-shadow: 0 0 12px rgba(200, 118, 60, 0.45);
}

.frnt .acc {
  color: #C8763C;
  font-style: italic;
}

.frnt .acc-teal {
  color: #36C1A2;
  font-style: italic;
}


.frnt .t-block {
  padding: 80px 0 40px;
  background: #fff;
  position: relative;
}

.frnt .t-block .pg-wrap {
  position: relative;
}

.frnt .bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.frnt .bento-img {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.09);
}

.frnt .bento-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .bento-img .img-grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg, rgba(200, 118, 60, 0.38) 0%, transparent 100%);
  pointer-events: none;
}

.frnt .bento-txt {
  grid-column: 1;
  grid-row: 1;
  padding: 40px 40px 20px 40px;
  position: relative;
  border-radius: 13px;
  background: #fff;
}

.frnt .dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(200, 118, 60, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 13px;
  pointer-events: none;
  z-index: 0;
}

.frnt .bento-txt .t-content {
  position: relative;
  z-index: 1;
}

.frnt .bento-txt h1 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0 0 20px 0;
}

.frnt .bento-pts {
  grid-column: 1;
  grid-row: 2;
  padding: 20px 40px 40px 40px;
  border-radius: 13px;
  background: #E7ECE5;
}

.frnt .bento-pts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frnt .bento-pts ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #2d2d2d;
}

.frnt .bento-pts ul li .pt-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #C8763C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.frnt .bento-pts ul li .pt-mark svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.frnt .inv-sec {
  padding: 80px 0;
  background: linear-gradient(323deg, rgba(200, 118, 60, 0.08) 0%, rgba(231, 236, 229, 0.4) 100%);
}

.frnt .inv-sec .inv-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.frnt .inv-sec .inv-label {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #36C1A2;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.frnt .inv-sec h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  margin: 0 0 20px 0;
}

.frnt .inv-sec .inv-body {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0 0 20px 0;
}

.frnt .inv-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frnt .inv-tier {
  background: #fff;
  border-radius: 7px;
  padding: 20px;
  box-shadow: -1px 3px 3px 1px rgba(200, 118, 60, 0.06);
  transition: box-shadow 0.18s ease-out;
}

.frnt .inv-tier:hover {
  box-shadow: -1px 10px 36px 1px rgba(200, 118, 60, 0.12);
}

.frnt .inv-tier .tier-name {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  margin: 0 0 6px 0;
}

.frnt .inv-tier .tier-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

.frnt .inv-tier .tier-range {
  font-size: 22px;
  font-weight: 700;
  color: #C8763C;
  margin: 6px 0 0 0;
  letter-spacing: 0.01em;
}


.frnt .val-sec {
  padding: 80px 0;
  background: #C8763C;
  position: relative;
  overflow: hidden;
}

.frnt .val-sec .val-bg-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.frnt .val-sec .val-bg-shape2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.frnt .val-sec h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.01em;
  margin: 0 0 40px 0;
  text-align: center;
}

.frnt .val-sec h2 strong {
  font-weight: 800;
}

.frnt .val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.frnt .val-card {
  background: rgba(255,255,255,0.12);
  border-radius: 13px;
  padding: 40px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background 0.18s ease-out, transform 0.15s ease-out;
  border: 1px solid rgba(255,255,255,0.18);
}

.frnt .val-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.frnt .val-card .vc-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frnt .val-card .vc-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frnt .val-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.frnt .val-card p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0;
}


.frnt .appr-sec {
  padding: 80px 0;
  background: #fff;
}

.frnt .appr-sec .appr-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.frnt .appr-sec .appr-img {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: -1px 10px 36px 1px rgba(54, 193, 162, 0.12);
}

.frnt .appr-sec .appr-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .appr-sec .appr-txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.frnt .appr-sec h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  margin: 0;
}

.frnt .appr-sec .appr-p {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0;
}

.frnt .appr-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frnt .appr-step {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.frnt .appr-step .step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #36C1A2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}

.frnt .appr-step .step-txt {
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  padding-top: 6px;
}

.frnt .appr-step .step-txt strong {
  color: #1b1b1b;
}


.frnt .pull-q {
  border-radius: 7px;
  padding: 20px;
  background: #E7ECE5;
  font-size: 18px;
  line-height: 1.5;
  color: #2d2d2d;
  font-style: italic;
  position: relative;
}

.frnt .pull-q::before {
  content: '';
  display: block;
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #36C1A2;
  border-radius: 4px 0 0 4px;
}


.frnt .hes-sec {
  padding: 80px 0;
  background: #E7ECE5;
}

.frnt .hes-sec .hes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.frnt .hes-sec h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  margin: 0 0 20px 0;
  text-align: center;
  grid-column: 1 / -1;
}

.frnt .hes-q-block {
  background: #fff;
  border-radius: 13px;
  padding: 40px;
  box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.09);
}

.frnt .hes-q-block h4 {
  font-size: 22px;
  font-weight: 700;
  color: #C8763C;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.frnt .hes-q-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0 0 12px 0;
}

.frnt .hes-q-block p:last-child {
  margin: 0;
}

.frnt .hes-a-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.frnt .hes-a-item {
  background: #fff;
  border-radius: 7px;
  padding: 20px;
  box-shadow: -1px 3px 3px 1px rgba(200, 118, 60, 0.06);
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  transition: box-shadow 0.12s ease-out;
}

.frnt .hes-a-item:hover {
  box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.09);
}

.frnt .hes-a-item .ai-label {
  font-size: 16px;
  font-weight: 700;
  color: #36C1A2;
  margin: 0 0 6px 0;
  letter-spacing: 0.01em;
}


.frnt .comm-sec {
  padding: 80px 0;
  background: #fff;
}

.frnt .comm-sec .comm-top {
  text-align: center;
  margin: 0 0 40px 0;
}

.frnt .comm-sec h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 300;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  margin: 0 0 12px 0;
}

.frnt .comm-sec h2 strong {
  font-weight: 800;
}

.frnt .comm-sec .comm-sub {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.frnt .comm-img-wrap {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: -1px 10px 36px 1px rgba(54, 193, 162, 0.12);
}

.frnt .comm-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .comm-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.frnt .test-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.frnt .t-card {
  background: #E7ECE5;
  border-radius: 13px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.15s ease-out;
}

.frnt .t-card:hover {
  box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.09);
}

.frnt .t-card .tc-port {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}

.frnt .t-card .tc-port img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.frnt .t-card .tc-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.frnt .t-card .tc-name {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
  letter-spacing: 0.01em;
}

.frnt .t-card .tc-role {
  font-size: 16px;
  color: #36C1A2;
  margin: 0;
}

.frnt .t-card .tc-quote {
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  margin: 0;
}

.frnt .comm-flags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.frnt .comm-flags .cf-label {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.frnt .comm-flags .fi {
  font-size: 22px;
  border-radius: 4px;
  box-shadow: -1px 3px 3px 1px rgba(200, 118, 60, 0.06);
}


.frnt .corner-deco {
  position: relative;
}

.frnt .corner-deco::before,
.frnt .corner-deco::after {
  content: '';
  position: absolute;
  pointer-events: none;
}


@keyframes grad-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.frnt .inv-sec {
  background-size: 200% 200%;
  animation: grad-shift 14s linear infinite;
}


.frnt .val-card h4 {
  transition: text-shadow 0.18s ease-out;
}

.frnt .val-card:hover h4 {
  text-shadow: 0 2px 14px rgba(255,255,255,0.7);
}


@media (max-width: 1024px) {
  .frnt .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .frnt .val-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .frnt .bento-grid {
    grid-template-columns: 1fr;
  }
  .frnt .bento-img {
    grid-column: 1;
    grid-row: 1;
  }
  .frnt .bento-img img {
    min-height: 240px;
  }
  .frnt .bento-txt {
    grid-column: 1;
    grid-row: 2;
    padding: 20px;
  }
  .frnt .bento-txt h1 {
    font-size: 40px;
  }
  .frnt .bento-pts {
    grid-column: 1;
    grid-row: 3;
    padding: 20px;
  }
  .frnt .inv-sec .inv-inner {
    grid-template-columns: 1fr;
  }
  .frnt .val-grid {
    grid-template-columns: 1fr;
  }
  .frnt .appr-sec .appr-inner {
    grid-template-columns: 1fr;
  }
  .frnt .appr-sec .appr-img img {
    height: 240px;
  }
  .frnt .hes-sec .hes-inner {
    grid-template-columns: 1fr;
  }
  .frnt .comm-layout {
    grid-template-columns: 1fr;
  }
  .frnt .comm-img-wrap img {
    height: 220px;
  }
  .frnt .inv-sec h2 {
    font-size: 28px;
  }
  .frnt .appr-sec h2,
  .frnt .hes-sec h2,
  .frnt .comm-sec h2,
  .frnt .val-sec h2 {
    font-size: 28px;
  }
}

@media (max-width: 375px) {
  .frnt .t-block {
    padding: 40px 0 20px;
  }
  .frnt .bento-txt h1 {
    font-size: 28px;
  }
  .frnt .bento-txt {
    padding: 12px;
  }
  .frnt .bento-pts {
    padding: 12px;
  }
  .frnt .hes-q-block {
    padding: 20px;
  }
  .frnt .val-sec,
  .frnt .appr-sec,
  .frnt .hes-sec,
  .frnt .comm-sec,
  .frnt .inv-sec {
    padding: 40px 0;
  }
}

.ab-us {
  overflow-x: clip;
}

.ab-us .pg-reveal {
  animation: blurIn 0.18s ease-out both;
}

.ab-us .pg-reveal:nth-child(1) { animation-delay: 0.05s; }
.ab-us .pg-reveal:nth-child(2) { animation-delay: 0.12s; }

@keyframes blurIn {
  from { filter: blur(8px); opacity: 0; }
  to { filter: blur(0); opacity: 1; }
}

.ab-us .scroll-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.18s ease-out, transform 0.15s ease-out;
}

.ab-us .scroll-up.vis {
  opacity: 1;
  transform: translateY(0);
}

.ab-us ::selection {
  background: #111;
  color: #fff;
}

.ab-us a:focus-visible,
.ab-us button:focus-visible {
  outline: 2px solid #C8763C;
  outline-offset: 3px;
}



.ab-us .tb {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 540px;
  background: #fff;
  overflow: hidden;
}

.ab-us .tb-img-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.ab-us .tb-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
}

.ab-us .tb-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(200,118,60,0.45) 0%, transparent 60%);
  pointer-events: none;
}

.ab-us .tb-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ab-us .tb-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(200,118,60,0.12);
}

.ab-us .tb-circles span:nth-child(1) {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -80px;
}

.ab-us .tb-circles span:nth-child(2) {
  width: 160px;
  height: 160px;
  top: 40px;
  left: 20px;
}

.ab-us .tb-circles span:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 60px;
  left: 30px;
  border-color: rgba(54,193,162,0.10);
}

.ab-us .tb-text-col {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 80px;
  position: relative;
  background: #fff;
}

.ab-us .tb-eyebrow {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #C8763C;
  font-style: italic;
  margin-bottom: 12px;
  font-weight: 600;
}

.ab-us .tb-h1 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0 0 20px 0;
}

.ab-us .tb-desc {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3a3a3a;
  max-width: 420px;
  margin: 0;
}

.ab-us .tb-curl {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  opacity: 0.07;
  pointer-events: none;
}



.ab-us .div-line {
  width: 100%;
  height: 1px;
  background: #d4d8d2;
}



.ab-us .detail {
  position: relative;
  background: #E7ECE5;
  padding: 80px 0;
  overflow: hidden;
}

.ab-us .detail-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 55%, rgba(180,188,175,0.45) 100%);
  pointer-events: none;
}

.ab-us .detail-wavy {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ab-us .detail-wavy svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.09;
}

.ab-us .detail-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.ab-us .detail-top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.ab-us .detail-top-left {
  flex: 0 0 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ab-us .detail-h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

.ab-us .detail-body {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #2e2e2e;
  margin: 0;
}

.ab-us .detail-body em {
  color: #C8763C;
  font-style: italic;
}

.ab-us .detail-top-right {
  flex: 0 0 calc(50% - 20px);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ab-us .pull-q {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #1b1b1b;
  border-top: 2px solid #36C1A2;
  padding-top: 20px;
  margin: 0;
}

.ab-us .detail-body-r {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #2e2e2e;
  margin: 0;
}

.ab-us .detail-img-wrap {
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: -1px 10px 36px 1px rgba(200,118,60,0.12);
}

.ab-us .detail-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}



.ab-us .skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.ab-us .skills-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ab-us .sk-h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 6px 0;
}

.ab-us .sk-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-us .sk-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.ab-us .sk-name {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #2e2e2e;
  font-weight: 600;
}

.ab-us .sk-pct {
  font-size: 16px;
  line-height: 1.5;
  color: #C8763C;
  font-weight: 700;
}

.ab-us .sk-bar-bg {
  height: 8px;
  background: rgba(200,118,60,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.ab-us .sk-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(323deg, #C8763C, rgba(54,193,162,0.7));
  transform-origin: left;
  animation: barGrow 0.2s ease-out both;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}



.ab-us .sub-grid-outer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

.ab-us .sub-card {
  background: #fff;
  border-radius: 13px;
  padding: 20px;
  box-shadow: -1px 3px 3px 1px rgba(200,118,60,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s ease-out, transform 0.12s ease-out;
}

.ab-us .sub-card:hover {
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
  transform: translateY(-3px);
}

.ab-us .sub-card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.ab-us .sub-card-h {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

.ab-us .sub-card-p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #2e2e2e;
  margin: 0;
}



.ab-us .sub-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.ab-us .sub-card.wide .sub-card-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-us .sub-card.wide .sub-card-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
}

.ab-us .sub-card-img {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: -1px 7px 22px 1px rgba(54,193,162,0.09);
}

.ab-us .sub-card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}



.ab-us .team-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  padding-top: 20px;
  border-top: 1px solid #d4d8d2;
}

.ab-us .team-portrait {
  flex: 0 0 160px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
}

.ab-us .team-portrait img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 4/5;
}

.ab-us .team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-us .team-name {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

.ab-us .team-role {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #36C1A2;
  font-weight: 600;
  margin: 0;
}

.ab-us .team-bio {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #2e2e2e;
  margin: 0;
}

.ab-us .team-meta {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 40px;
}

.ab-us .meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ab-us .meta-label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}

.ab-us .meta-val {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
}



@media (max-width: 1024px) {
  .ab-us .tb-text-col {
    padding: 80px 40px;
  }
  .ab-us .tb-h1 {
    font-size: 40px;
  }
  .ab-us .sub-grid-outer {
    grid-template-columns: 1fr 1fr;
  }
  .ab-us .sub-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ab-us .tb {
    flex-direction: column;
    min-height: unset;
  }
  .ab-us .tb-img-col {
    flex: none;
    height: 280px;
  }
  .ab-us .tb-text-col {
    flex: none;
    padding: 40px 20px;
  }
  .ab-us .tb-h1 {
    font-size: 40px;
  }
  .ab-us .detail-top {
    flex-direction: column;
    gap: 20px;
  }
  .ab-us .detail-top-left,
  .ab-us .detail-top-right {
    flex: none;
    width: 100%;
    padding-top: 0;
  }
  .ab-us .skills-grid {
    grid-template-columns: 1fr;
  }
  .ab-us .sub-grid-outer {
    grid-template-columns: 1fr;
  }
  .ab-us .sub-card.wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .ab-us .team-row {
    flex-direction: column;
    gap: 20px;
  }
  .ab-us .team-meta {
    padding-top: 0;
    flex: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .ab-us .detail-inner {
    padding: 0 20px;
  }
}

@media (max-width: 375px) {
  .ab-us .tb-h1 {
    font-size: 28px;
  }
  .ab-us .detail-h2 {
    font-size: 28px;
  }
  .ab-us .team-meta {
    flex-direction: column;
  }
}

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

.cu-pg .inner-cap {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.cu-pg .grain-top {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f2f0ec;
}

.cu-pg .grain-top::before {
  content: "";
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.cu-pg .grain-top .inner-cap {
  position: relative;
  z-index: 1;
}

.cu-pg .top-grid {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.cu-pg .top-left {
  flex: 1 1 0;
  min-width: 0;
}

.cu-pg .top-right {
  flex: 0 0 320px;
  min-width: 0;
}

.cu-pg .pg-label {
  display: inline-block;
  font-size: 16px;
  color: #C8763C;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-weight: 600;
}

.cu-pg .top-h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1b1b;
  margin: 0 0 20px 0;
}

.cu-pg .top-h1 em {
  color: #C8763C;
  font-style: italic;
}

.cu-pg .top-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #3d3d3d;
  letter-spacing: 0.01em;
  margin: 0 0 40px 0;
  max-width: 480px;
}

.cu-pg .deco-quote {
  font-size: 72px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #C8763C;
  line-height: 1;
  opacity: 0.18;
  display: block;
  margin-bottom: 12px;
  user-select: none;
  pointer-events: none;
}

.cu-pg .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cu-pg .c-card {
  background: #fff;
  border-radius: 13px;
  padding: 20px;
  box-shadow: -1px 3px 3px 1px rgba(200,118,60,0.06);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.15s ease-out;
}

.cu-pg .c-card:hover {
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
}

.cu-pg .c-icon {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 7px;
  background: linear-gradient(323deg, #C8763C, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-pg .c-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu-pg .c-info {
  flex: 1 1 0;
  min-width: 0;
}

.cu-pg .c-label {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 6px;
}

.cu-pg .c-val {
  font-size: 16px;
  line-height: 1.5;
  color: #3d3d3d;
  letter-spacing: 0.01em;
  word-break: break-word;
}

.cu-pg .c-val a {
  color: #C8763C;
  text-decoration: none;
  transition: color 0.12s ease-out;
}

.cu-pg .c-val a:hover {
  color: #36C1A2;
  text-shadow: 0 0 8px rgba(54,193,162,0.35);
}

.cu-pg .img-wrap {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 20px;
}

.cu-pg .img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 13px;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
  filter: blur(0px);
}

.cu-pg .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 13px;
  background: linear-gradient(323deg, rgba(200,118,60,0.18), transparent 60%);
  pointer-events: none;
}

.cu-pg .divider-tri {
  line-height: 0;
  overflow: hidden;
  background: #f2f0ec;
}

.cu-pg .divider-tri svg {
  display: block;
  width: 100%;
}

.cu-pg .form-sec {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cu-pg .form-grid {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.cu-pg .form-left {
  flex: 1 1 0;
  min-width: 0;
}

.cu-pg .form-right {
  flex: 0 0 420px;
  min-width: 0;
}

.cu-pg .form-eyebrow {
  font-size: 16px;
  color: #36C1A2;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 12px;
}

.cu-pg .form-h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1b1b;
  margin: 0 0 20px 0;
}

.cu-pg .form-h2 strong {
  font-weight: 300;
  color: #555;
}

.cu-pg .form-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #3d3d3d;
  letter-spacing: 0.01em;
  margin: 0 0 40px 0;
}

.cu-pg .pull-q {
  float: right;
  width: 42%;
  margin: 0 0 20px 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #C8763C;
  font-style: italic;
  letter-spacing: 0.01em;
  padding: 20px;
  border-top: 3px solid #C8763C;
  background: #f2f0ec;
  border-radius: 7px;
}

.cu-pg .form-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.cu-pg .f-link {
  font-size: 16px;
  color: #3d3d3d;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  transition: color 0.12s ease-out;
}

.cu-pg .f-link:hover {
  color: #C8763C;
  text-shadow: 0 0 8px rgba(200,118,60,0.3);
}

.cu-pg .f-link-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #36C1A2;
  flex-shrink: 0;
}

.cu-pg .cform {
  background: #f2f0ec;
  border-radius: 13px;
  padding: 40px;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.09);
}

.cu-pg .cform .f-row {
  margin-bottom: 20px;
}

.cu-pg .cform label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.cu-pg .cform input[type="text"],
.cu-pg .cform input[type="tel"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #1b1b1b;
  background: #fff;
  border: 1.5px solid #d5d0c8;
  border-radius: 7px;
  outline: none;
  box-sizing: border-box;
  letter-spacing: 0.01em;
  box-shadow: inset 0 2px 5px rgba(200,118,60,0.06);
  transition: border-color 0.15s ease-out;
}

.cu-pg .cform input[type="text"]::placeholder,
.cu-pg .cform input[type="tel"]::placeholder {
  color: #9a9488;
}

.cu-pg .cform input[type="text"]:focus,
.cu-pg .cform input[type="tel"]:focus {
  border-color: #C8763C;
}

.cu-pg .size-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.cu-pg .size-opts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cu-pg .size-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 7px;
  border: 1.5px solid #d5d0c8;
  cursor: pointer;
  transition: border-color 0.15s ease-out, background 0.12s ease-out;
}

.cu-pg .size-opt:hover {
  border-color: #C8763C;
  background: #fdf8f4;
}

.cu-pg .size-opt input[type="radio"] {
  accent-color: #C8763C;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.cu-pg .size-opt span {
  font-size: 16px;
  color: #3d3d3d;
  letter-spacing: 0.01em;
}

.cu-pg .priv-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: 20px;
}

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

.cu-pg .priv-row .priv-txt {
  font-size: 16px;
  line-height: 1.5;
  color: #3d3d3d;
  letter-spacing: 0.01em;
}

.cu-pg .priv-row .priv-txt a {
  color: #C8763C;
  text-decoration: underline;
  transition: color 0.12s ease-out;
}

.cu-pg .priv-row .priv-txt a:hover {
  color: #36C1A2;
}

.cu-pg .btn-send {
  display: inline-block;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(323deg, #C8763C, #e08d50);
  border: none;
  border-radius: 36px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: -1px 7px 22px 1px rgba(200,118,60,0.12);
  transition: transform 0.12s ease-out, box-shadow 0.15s ease-out;
  width: 100%;
}

.cu-pg .btn-send:hover {
  transform: scale(1.03);
  box-shadow: -1px 10px 36px 1px rgba(200,118,60,0.18);
}

.cu-pg .btn-send:active {
  transform: scale(0.98);
}

.cu-pg .btn-send:focus {
  outline: 3px solid #36C1A2;
  outline-offset: 3px;
}

.cu-pg .divider-plain {
  height: 3px;
  background: linear-gradient(323deg, #C8763C, #36C1A2);
  margin: 0;
}

.cu-pg .meta-sec {
  background: #E7ECE5;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cu-pg .meta-inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
}

.cu-pg .meta-img-col {
  flex: 0 0 380px;
  min-width: 0;
  position: relative;
  border-radius: 13px;
  overflow: hidden;
}

.cu-pg .meta-img-col img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 13px;
  box-shadow: -1px 10px 36px 1px rgba(54,193,162,0.12);
}

.cu-pg .meta-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 13px;
  background: linear-gradient(323deg, rgba(54,193,162,0.22), transparent 55%);
  pointer-events: none;
}

.cu-pg .meta-text-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cu-pg .meta-h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1b1b;
  margin: 0 0 20px 0;
}

.cu-pg .meta-h2 em {
  color: #36C1A2;
  font-style: italic;
}

.cu-pg .meta-body {
  font-size: 18px;
  line-height: 1.7;
  color: #3d3d3d;
  letter-spacing: 0.01em;
  margin: 0 0 40px 0;
}

.cu-pg .meta-pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.cu-pg .pill {
  padding: 6px 20px;
  border-radius: 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid #36C1A2;
  color: #1b1b1b;
  background: transparent;
  transition: background 0.15s ease-out, color 0.12s ease-out;
}

.cu-pg .pill:hover {
  background: #36C1A2;
  color: #fff;
}

.cu-pg .meta-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cu-pg .btn-prim {
  display: inline-block;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #36C1A2;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: -1px 7px 22px 1px rgba(54,193,162,0.12);
  transition: transform 0.12s ease-out, box-shadow 0.15s ease-out;
}

.cu-pg .btn-prim:hover {
  transform: scale(1.03);
  box-shadow: -1px 10px 36px 1px rgba(54,193,162,0.18);
  color: #fff;
}

.cu-pg .btn-out {
  display: inline-block;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #C8763C;
  background: transparent;
  border: 2px solid #C8763C;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease-out, background 0.15s ease-out, color 0.12s ease-out;
}

.cu-pg .btn-out:hover {
  transform: scale(1.03);
  background: #C8763C;
  color: #fff;
}

.cu-pg .reveal-1 {
  opacity: 0;
  transform: translateY(16px);
  animation: rv1 0.2s ease-out 0.08s forwards;
}
.cu-pg .reveal-2 {
  opacity: 0;
  transform: translateY(24px);
  animation: rv1 0.2s ease-out 0.14s forwards;
}
.cu-pg .reveal-3 {
  opacity: 0;
  transform: translateY(32px);
  animation: rv1 0.2s ease-out 0.2s forwards;
}
.cu-pg .reveal-4 {
  opacity: 0;
  transform: translateY(40px);
  animation: rv1 0.18s ease-out 0.26s forwards;
}

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

.cu-pg .read-tog {
  display: none;
}

.cu-pg .read-tog:checked ~ .read-more-body {
  display: block;
}

.cu-pg .read-tog:checked ~ .read-lbl {
  display: none;
}

.cu-pg .read-more-body {
  display: none;
}

.cu-pg .read-lbl {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #C8763C;
  cursor: pointer;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #C8763C;
  padding-bottom: 2px;
  transition: color 0.12s ease-out;
}

.cu-pg .read-lbl:hover {
  color: #36C1A2;
  border-color: #36C1A2;
}

@media (max-width: 1024px) {
  .cu-pg .top-grid {
    gap: 40px;
  }
  .cu-pg .form-grid {
    gap: 40px;
  }
  .cu-pg .top-right {
    flex: 0 0 260px;
  }
  .cu-pg .form-right {
    flex: 0 0 340px;
  }
  .cu-pg .meta-inner {
    gap: 40px;
  }
  .cu-pg .meta-img-col {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .cu-pg .top-grid {
    flex-direction: column;
    gap: 40px;
  }
  .cu-pg .top-right {
    flex: 1 1 auto;
    width: 100%;
  }
  .cu-pg .top-h1 {
    font-size: 40px;
  }
  .cu-pg .form-grid {
    flex-direction: column;
    gap: 40px;
  }
  .cu-pg .form-right {
    flex: 1 1 auto;
    width: 100%;
  }
  .cu-pg .pull-q {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .cu-pg .meta-inner {
    flex-direction: column;
    gap: 40px;
  }
  .cu-pg .meta-img-col {
    flex: 1 1 auto;
    width: 100%;
  }
  .cu-pg .meta-img-col img {
    min-height: 240px;
  }
  .cu-pg .cform {
    padding: 20px;
  }
  .cu-pg .meta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 375px) {
  .cu-pg .top-h1 {
    font-size: 28px;
  }
  .cu-pg .form-h2 {
    font-size: 28px;
  }
  .cu-pg .meta-h2 {
    font-size: 28px;
  }
  .cu-pg .grain-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cu-pg .form-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cu-pg .meta-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cu-pg .btn-send {
    font-size: 16px;
    padding: 12px 20px;
  }
}

.suc-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #E7ECE5;
}

.suc-pg .suc-wrap {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.suc-pg .suc-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.09);
  padding: 80px 40px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.suc-pg .suc-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.suc-pg .suc-icon circle {
  fill: none;
  stroke: #36C1A2;
  stroke-width: 3;
}

.suc-pg .suc-icon polyline {
  fill: none;
  stroke: #36C1A2;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.suc-pg .suc-title {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b2a22;
  margin: 0;
}

.suc-pg .suc-sub {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #3a4a40;
  margin: 0;
  max-width: 460px;
}

.suc-pg .suc-accent {
  color: #C8763C;
  font-style: italic;
}

.suc-pg .suc-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(323deg, #C8763C, transparent);
  border-radius: 4px;
}

.suc-pg .suc-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.suc-pg .btn-prim {
  display: inline-block;
  padding: 12px 40px;
  background: #C8763C;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  border: 2px solid #C8763C;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  box-shadow: -1px 3px 3px 1px rgba(200, 118, 60, 0.06);
  cursor: pointer;
}

.suc-pg .btn-prim:hover {
  transform: scale(1.04);
  box-shadow: -1px 7px 22px 1px rgba(200, 118, 60, 0.12);
}

.suc-pg .btn-prim:focus {
  outline: 3px solid #36C1A2;
  outline-offset: 3px;
}

.suc-pg .btn-sec {
  display: inline-block;
  padding: 12px 40px;
  background: transparent;
  color: #C8763C;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  border: 2px solid #C8763C;
  transition: transform 0.12s ease, background 0.12s ease;
  cursor: pointer;
}

.suc-pg .btn-sec:hover {
  transform: scale(1.04);
  background: rgba(200, 118, 60, 0.06);
}

.suc-pg .btn-sec:focus {
  outline: 3px solid #36C1A2;
  outline-offset: 3px;
}

.suc-pg .suc-note {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #5a6a60;
  margin: 0;
  text-align: center;
}

.suc-pg .suc-note a {
  color: #C8763C;
  text-decoration: underline;
  transition: color 0.1s ease-out, text-shadow 0.1s ease-out;
}

.suc-pg .suc-note a:hover {
  color: #a05a28;
  text-shadow: 0 0 8px rgba(200, 118, 60, 0.25);
}

@media (max-width: 768px) {
  .suc-pg {
    padding: 40px 20px;
  }

  .suc-pg .suc-card {
    padding: 40px 20px;
  }

  .suc-pg .suc-title {
    font-size: 28px;
  }

  .suc-pg .suc-sub {
    font-size: 16px;
  }

  .suc-pg .suc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .suc-pg .btn-prim,
  .suc-pg .btn-sec {
    text-align: center;
  }
}

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

  .suc-pg .suc-icon {
    width: 56px;
    height: 56px;
  }
}
