:root {
  --blue:#1670ff;
  --blue2:#36a7ff;
  --dark:#07152d;
  --text:#17223a;
  --muted:#748095;
  --line:#e3eaf5;
  --soft:#f7faff;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif;

  color:var(--text);

  background:white;
}

a {
  text-decoration:none;
  color:inherit;
}

button {
  font:inherit;
}

.wrap {
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}


/* HEADER */

.header {
  height:74px;

  position:sticky;
  top:0;
  z-index:100;

  border-bottom:1px solid #e9eef6;

  background:rgba(255,255,255,.94);

  backdrop-filter:blur(18px);
}

.header-inner {
  height:100%;

  display:flex;
  align-items:center;
}

.brand img {
  width:145px;
  max-height:60px;

  object-fit:contain;
}

.nav {
  margin-left:auto;

  display:flex;
  gap:34px;

  font-size:14px;
  font-weight:700;

  color:#42516b;
}

.nav a:hover {
  color:var(--blue);
}

.nav-contact {
  margin-left:30px;

  padding:13px 22px;

  border-radius:11px;

  color:white;

  font-size:13px;
  font-weight:800;

  background:
    linear-gradient(
      135deg,
      #2c7dff,
      #1555dc
    );
}


/* HERO */

.hero {
  overflow:hidden;

  background:
    radial-gradient(
      circle at 85% 30%,
      #e7f3ff,
      transparent 37%
    ),
    linear-gradient(
      180deg,
      #fff,
      #f8fbff
    );
}

.hero-grid {
  min-height:640px;

  display:grid;

  grid-template-columns:
    1fr 1fr;

  align-items:center;

  gap:50px;
}

.hero-kicker {
  margin-bottom:20px;

  color:var(--blue);

  font-size:13px;
  font-weight:800;
}

.hero h1 {
  margin:0;

  color:var(--dark);

  font-size:
    clamp(43px,4.3vw,61px);

  font-weight:900;

  line-height:1.13;

  letter-spacing:-3px;
}

.hero-desc {
  max-width:610px;

  margin:25px 0 0;

  color:#64738b;

  font-size:16px;

  line-height:1.8;
}

.hero-buttons {
  display:flex;
  gap:12px;

  margin-top:28px;
}

.btn {
  min-height:50px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  gap:18px;

  padding:0 23px;

  border-radius:9px;

  font-size:14px;
  font-weight:800;
}

.btn-blue {
  color:white;

  background:
    linear-gradient(
      135deg,
      #2383ff,
      #1355dc
    );
}

.btn-outline {
  border:1px solid #b8cff5;

  color:#1668e9;

  background:white;
}

.hero-features {
  display:flex;
  gap:42px;

  margin-top:46px;
}

.hero-features > div {
  position:relative;

  padding-left:25px;
}

.hero-features > div::before {
  content:"✣";

  position:absolute;

  left:0;
  top:0;

  color:var(--blue);
}

.hero-features strong {
  display:block;

  color:#1261dd;

  font-size:12px;
}

.hero-features span {
  display:block;

  margin-top:4px;

  color:#778298;

  font-size:11px;
}


/* HERO NETWORK */

.hero-right {
  display:grid;
  place-items:center;
}

.network {
  width:500px;
  height:500px;

  position:relative;
}

.network-ring {
  position:absolute;

  border-radius:50%;

  border:1px solid #d6e7ff;
}

.ring1 {
  inset:70px;
}

.ring2 {
  inset:130px;
}

.center-cube {
  width:145px;
  height:145px;

  position:absolute;

  inset:0;
  margin:auto;

  display:grid;
  place-items:center;

  border-radius:27px;

  color:white;

  background:
    linear-gradient(
      145deg,
      #48c7ff,
      #2174ff 55%,
      #1941b5
    );

  box-shadow:
    0 30px 60px
    rgba(32,99,218,.25);
}

.cube-chain {
  font-size:55px;
}

.node {
  width:105px;
  height:92px;

  position:absolute;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:9px;

  border:1px solid #e1ebf8;

  border-radius:23px;

  color:#244a81;

  background:rgba(255,255,255,.9);

  box-shadow:
    0 15px 40px
    rgba(45,89,160,.08);
}

.node b {
  color:var(--blue);

  font-size:24px;
}

.node span {
  font-size:11px;
  font-weight:800;
}

.node-token {
  left:120px;
  top:35px;
}

.node-dev {
  right:70px;
  top:42px;
}

.node-marketing {
  right:15px;
  top:205px;
}

.node-listing {
  right:90px;
  bottom:40px;
}

.node-ecosystem {
  left:50px;
  top:190px;
}

.node-consulting {
  left:115px;
  bottom:35px;
}


/* QUICK */

.quick-section {
  padding:20px 0 32px;

  background:white;
}

.quick-grid {
  display:grid;

  grid-template-columns:
    repeat(4,1fr);

  gap:12px;
}

.quick-grid article {
  min-height:78px;

  display:flex;
  align-items:center;

  gap:14px;

  padding:16px 20px;

  border:1px solid #e8eef7;

  border-radius:12px;

  background:#fff;
}

.quick-grid b {
  width:38px;
  height:38px;

  display:grid;
  place-items:center;

  border-radius:10px;

  color:var(--blue);

  background:#edf5ff;
}

.quick-grid strong {
  display:block;

  color:#1763d8;

  font-size:12px;
}

.quick-grid span {
  display:block;

  margin-top:5px;

  color:#8b95a6;

  font-size:10px;
}


/* SECTION */

.section {
  padding:80px 0;
}

.center-title {
  text-align:center;

  margin-bottom:38px;
}

.center-title span,
.section-tag {
  color:var(--blue);

  font-size:11px;
  font-weight:900;

  letter-spacing:1px;
}

.center-title h2,
.section h2 {
  margin:12px 0 0;

  color:var(--dark);

  font-size:
    clamp(30px,3.4vw,44px);

  line-height:1.2;

  letter-spacing:-2px;
}

.center-title p {
  color:#8590a2;

  font-size:12px;
}


/* SERVICES */

.services {
  background:
    linear-gradient(
      180deg,
      #fafdff,
      #fff
    );
}

.service-grid {
  display:grid;

  grid-template-columns:
    repeat(4,1fr);

  gap:15px;
}

.service-card {
  min-height:270px;

  padding:24px;

  border:1px solid #dfe8f4;

  border-radius:12px;

  background:white;
}

.service-card i {
  width:42px;
  height:42px;

  display:grid;
  place-items:center;

  margin-bottom:23px;

  border-radius:11px;

  color:var(--blue);

  background:#edf5ff;

  font-style:normal;

  font-size:20px;
}

.service-card h3 {
  margin:0 0 12px;

  color:#182d53;

  font-size:18px;
}

.service-card h3 small {
  font-size:12px;
}

.service-card p {
  margin:0;

  color:#748096;

  font-size:13px;

  line-height:1.65;
}

.service-blue {
  display:block;

  margin:-5px 0 9px;

  color:#146eff;

  font-size:12px;
}


/* PROCESS */

.process {
  background:#fff;
}

.process-grid {
  display:grid;

  grid-template-columns:
    repeat(5,1fr);

  gap:22px;

  margin-top:38px;
}

.process-grid article {
  text-align:center;
}

.process-grid article > span {
  width:46px;
  height:46px;

  display:grid;
  place-items:center;

  margin:0 auto 12px;

  border-radius:50%;

  color:#1371ff;

  font-weight:900;

  background:#eaf4ff;
}

.process-grid i {
  display:block;

  color:var(--blue);

  font-size:25px;

  font-style:normal;
}

.process-grid h3 {
  margin:9px 0;

  color:#1d3154;

  font-size:14px;
}

.process-grid p {
  color:#8791a3;

  font-size:11px;

  line-height:1.6;
}


/* SPLIT */

.split-title {
  display:flex;

  justify-content:space-between;

  align-items:flex-end;

  gap:40px;

  margin-top:10px;
}

.split-title p {
  max-width:250px;

  margin:0;

  color:#8490a3;

  font-size:12px;

  line-height:1.6;
}


/* ECOSYSTEM */

.ecosystem {
  background:#fafcff;
}

.ecosystem-grid {
  display:grid;

  grid-template-columns:
    repeat(8,1fr);

  gap:10px;

  margin-top:30px;
}

.ecosystem-grid > div {
  min-height:105px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:12px;

  border:1px solid #e6edf6;

  border-radius:12px;

  background:#fff;
}

.ecosystem-grid b {
  font-size:31px;
}

.ecosystem-grid span {
  font-size:11px;
  font-weight:700;
}

.eth {
  color:#333;
}

.bnb {
  color:#f3b900;
}

.polygon {
  color:#7a3cff;
}

.solana {
  color:#20d3b7;
}

.avax {
  color:#ee3e4d;
}

.base {
  color:#2868dc;
}

.chainlink {
  color:#2765d4;
}

.arb {
  color:#225b9f;
}


/* PROJECTS */

.projects {
  background:#fff;
}

.project-grid {
  display:grid;

  grid-template-columns:
    repeat(4,1fr);

  gap:14px;

  margin-top:30px;
}

.project-card {
  overflow:hidden;

  border:1px solid #e3eaf4;

  border-radius:10px;

  background:white;
}

.project-thumb {
  height:130px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:white;

  font-size:17px;
  font-weight:800;

  letter-spacing:1px;
}

.thumb-one {
  background:
    radial-gradient(circle at 80%,#1765f8,transparent 28%),
    linear-gradient(135deg,#031330,#113b8a);
}

.thumb-two {
  background:
    radial-gradient(circle at 75%,#7d44ff,transparent 28%),
    linear-gradient(135deg,#14103b,#432173);
}

.thumb-three {
  background:
    radial-gradient(circle at 85%,#1d78ff,transparent 28%),
    linear-gradient(135deg,#07142c,#153e72);
}

.thumb-four {
  background:
    linear-gradient(
      135deg,
      #12492a,
      #4b8c38
    );
}

.project-card h3 {
  margin:13px 14px 5px;

  color:#172a4c;

  font-size:13px;
}

.project-card p {
  min-height:48px;

  margin:0 14px;

  color:#788397;

  font-size:11px;

  line-height:1.55;
}

.tags {
  display:flex;
  gap:4px;

  padding:12px 14px 15px;

  flex-wrap:wrap;
}

.tags span {
  padding:4px 7px;

  border-radius:4px;

  color:#2574de;

  font-size:9px;

  background:#edf5ff;
}


/* FAQ */

.faq {
  padding-top:30px;
}

.faq-grid {
  display:grid;

  grid-template-columns:
    1fr 1fr;

  gap:14px;

  margin-top:25px;
}

.faq-item {
  width:100%;

  display:flex;

  justify-content:space-between;

  align-items:center;

  margin-bottom:10px;

  padding:15px 17px;

  border:1px solid #e1e9f4;

  border-radius:8px;

  color:#253956;

  text-align:left;

  background:white;

  cursor:pointer;
}

.faq-item span {
  color:var(--blue);

  font-size:19px;
}


/* CTA */

.cta {
  padding:28px 0 55px;
}

.cta-inner {
  min-height:250px;

  position:relative;

  display:grid;

  grid-template-columns:
    1.3fr .7fr;

  align-items:center;

  overflow:hidden;

  padding:38px 45px;

  border-radius:12px;

  color:white;

  background:
    linear-gradient(
      135deg,
      #0d62dc,
      #0268f7
    );
}

.cta span {
  color:#bcdcff;

  font-size:11px;
}

.cta h2 {
  margin:10px 0;

  font-size:33px;

  letter-spacing:-1.5px;
}

.cta p {
  color:#c8e0ff;

  font-size:12px;
}

.cta-buttons {
  display:flex;

  align-items:center;

  gap:10px;

  margin-top:22px;
}

.cta-buttons a {
  padding:12px 20px;

  border-radius:8px;

  color:#0d64dc;

  font-size:12px;
  font-weight:800;

  background:white;
}

.cta-buttons a:nth-child(2) {
  border:1px solid #81b9ff;

  color:white;

  background:transparent;
}

.cta-buttons small {
  color:#d8e9ff;

  font-size:10px;
}

.globe {
  width:330px;
  height:330px;

  position:absolute;

  right:-25px;
  bottom:-120px;

  border-radius:50%;

  border:1px solid #6eb4ff;

  background:
    radial-gradient(
      circle at 30% 30%,
      #43aaff,
      #043c9e
    );
}

.globe::before,
.globe::after {
  content:"";

  position:absolute;

  border-radius:50%;

  border:1px solid rgba(255,255,255,.25);
}

.globe::before {
  inset:20px 75px;
}

.globe::after {
  inset:75px 20px;
}

.globe strong {
  position:absolute;

  right:55px;
  top:75px;

  font-size:13px;
  font-style:italic;

  transform:rotate(-10deg);
}


/* FOOTER */

.footer {
  padding:35px 0 22px;

  border-top:1px solid #edf1f6;
}

.footer-top {
  display:grid;

  grid-template-columns:
    .7fr 1fr 1.5fr;

  align-items:start;

  gap:35px;
}

.footer-brand img {
  width:145px;
}

.footer nav {
  display:flex;

  gap:20px;

  font-size:11px;

  color:#536078;
}

.footer-company {
  font-size:10px;

  color:#778294;
}

.footer-company p {
  margin:0 0 5px;
}

.footer-company b {
  color:#3e4b61;

  margin-right:7px;
}

.copyright {
  margin-top:25px;

  padding-top:16px;

  border-top:1px solid #edf1f6;

  color:#9ba4b3;

  font-size:10px;
}


/* MOBILE */

@media(max-width:900px) {

  .nav {
    display:none;
  }

  .nav-contact {
    margin-left:auto;
  }

  .hero-grid {
    grid-template-columns:1fr;

    padding:65px 0;
  }

  .hero-right {
    order:-1;

    display:none;
  }

  .hero h1 {
    font-size:46px;
  }

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

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

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

  .ecosystem-grid {
    grid-template-columns:
      repeat(4,1fr);
  }

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

}


@media(max-width:600px) {

  .wrap {
    width:calc(100% - 28px);
  }

  .header {
    height:66px;
  }

  .brand img {
    width:112px;
  }

  .nav-contact {
    padding:10px 14px;
  }

  .hero-grid {
    padding:50px 0;
  }

  .hero h1 {
    font-size:38px;

    letter-spacing:-2px;
  }

  .hero-features {
    display:grid;

    grid-template-columns:1fr;

    gap:14px;
  }

  .quick-grid,
  .service-grid,
  .process-grid,
  .project-grid,
  .faq-grid {
    grid-template-columns:1fr;
  }

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

  .split-title {
    display:block;
  }

  .split-title p {
    margin-top:13px;
  }

  .cta-inner {
    grid-template-columns:1fr;

    padding:32px 24px;
  }

  .cta h2 {
    font-size:27px;
  }

  .globe {
    display:none;
  }

  .cta-buttons {
    flex-wrap:wrap;
  }

  .footer-top {
    grid-template-columns:1fr;
  }

  .footer nav {
    flex-wrap:wrap;
  }

}

/* =========================================================
   CHAINLAB Ecosystem official logo images
   ========================================================= */

.ecosystem-item {
  min-height: 112px !important;
  padding: 16px 10px !important;
}

.ecosystem-item img {
  width: 46px;
  height: 46px;

  display: block;

  object-fit: contain;

  margin: 0 auto 10px;

  border-radius: 50%;
}

.ecosystem-item span {
  display: block;

  color: #23344f;

  font-size: 11px;
  font-weight: 700;

  text-align: center;
}

@media (max-width: 600px) {

  .ecosystem-item img {
    width: 42px;
    height: 42px;
  }

}


/* =========================================================
   CHAINLAB SERVICE CLICK / PRICE MODAL
   ========================================================= */

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

button.service-card {
  width: 100%;

  text-align: left;

  font-family: inherit;

  cursor: pointer;
}

.service-open {
  position: relative;

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.service-open:hover {
  transform: translateY(-5px);

  border-color: #a8c9ff;

  box-shadow:
    0 22px 45px
    rgba(31,92,190,.11);
}

.service-more {
  display: inline-block;

  margin-top: 22px;

  color: #1670ff;

  font-size: 12px;
  font-weight: 800;
}


/* MODAL */

.service-modal {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 25px;
}

.service-modal.is-open {
  display: flex;
}

.service-modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(5,18,44,.62);

  backdrop-filter:
    blur(7px);
}

.service-modal-panel {
  width: min(720px,100%);

  max-height: calc(100vh - 50px);

  position: relative;

  z-index: 2;

  overflow-y: auto;

  padding: 42px;

  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 35px 90px
    rgba(0,20,65,.28);
}

.service-modal-close {
  width: 40px;
  height: 40px;

  position: absolute;

  top: 18px;
  right: 18px;

  border: 0;
  border-radius: 50%;

  color: #183259;

  background: #f1f5fb;

  font-size: 27px;
  line-height: 1;

  cursor: pointer;
}

.modal-label {
  color: #1670ff;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.5px;
}

.modal-title {
  margin: 9px 0 28px;

  color: #07152d;

  font-size: 32px;
  font-weight: 900;

  letter-spacing: -1.5px;
}

.modal-service-list {
  display: grid;

  gap: 12px;
}

.modal-service-item {
  padding: 22px;

  border:
    1px solid #e3ebf6;

  border-radius: 15px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f9fbff
    );
}

.modal-service-top {
  display: flex;

  justify-content:
    space-between;

  align-items: flex-start;

  gap: 20px;
}

.modal-service-name {
  color: #153365;

  font-size: 17px;
  font-weight: 800;
}

.modal-price {
  flex-shrink: 0;

  padding: 7px 11px;

  border-radius: 8px;

  color: #1167ed;

  font-size: 13px;
  font-weight: 900;

  background: #ebf4ff;
}

.modal-service-desc {
  margin: 10px 0 0;

  color: #728097;

  font-size: 13px;

  line-height: 1.7;
}

.modal-note {
  margin-top: 22px;

  padding: 15px 18px;

  border-radius: 12px;

  color: #68768c;

  font-size: 11px;

  line-height: 1.65;

  background: #f6f8fc;
}

body.modal-lock {
  overflow: hidden;
}


@media(max-width:900px) {

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

}


@media(max-width:600px) {

  .service-click-grid {
    grid-template-columns:1fr;
  }

  .service-modal {
    padding: 12px;
  }

  .service-modal-panel {
    padding:
      35px 20px 25px;
  }

  .modal-title {
    font-size: 26px;
  }

  .modal-service-top {
    display: block;
  }

  .modal-price {
    display: inline-block;

    margin-top: 10px;
  }

}

/* =========================================================
   CHAINLAB service svg icon style
   ========================================================= */

.service-svg {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 14px;

  background: #eef5ff;
}

.service-svg svg {
  width: 27px;
  height: 27px;

  fill: none;

  stroke: #1768ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-svg {
  background: #e4efff;
}

.service-card:hover .service-svg svg {
  stroke: #0f56dd;
}

/* =========================================================
   CHAINLAB strength section
   ========================================================= */

.strength-section {
  padding: 34px 0 42px;

  border-top: 1px solid #edf2f8;
  border-bottom: 1px solid #edf2f8;

  background: #fff;
}

.strength-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 0;
}

.strength-item {
  position: relative;

  padding: 10px 34px;

  text-align: left;
}

.strength-item + .strength-item {
  border-left:
    1px solid #e7edf6;
}

.strength-item strong {
  display: block;

  margin-bottom: 8px;

  color: #145fd4;

  font-size: 15px;
  font-weight: 800;

  letter-spacing: -0.02em;
}

.strength-item span {
  display: block;

  color: #7f8a9d;

  font-size: 12px;

  line-height: 1.5;
}

@media (max-width: 700px) {

  .strength-grid {
    grid-template-columns: 1fr;
  }

  .strength-item {
    padding: 18px 4px;
  }

  .strength-item + .strength-item {
    border-left: 0;
    border-top:
      1px solid #e7edf6;
  }

}

/* =========================================================
   CHAINLAB HERO layout recovery
   ========================================================= */

.hero {
  min-height: auto !important;
}

.hero-grid {
  min-height: 650px !important;

  display: grid !important;

  grid-template-columns:
    1.03fr .97fr !important;

  align-items: center !important;

  gap: 55px !important;

  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.hero-left {
  align-self: center;
}

.hero h1 {
  max-width: 720px !important;

  margin: 0 !important;

  color: #07152d !important;

  font-size:
    clamp(50px,4.7vw,70px) !important;

  font-weight: 900 !important;

  line-height: 1.08 !important;

  letter-spacing: -3.5px !important;

  word-break: keep-all !important;
}

.hero-accent {
  color: #176fff !important;
}

.hero-desc {
  max-width: 650px !important;

  margin-top: 26px !important;

  color: #66758b !important;

  font-size: 17px !important;

  line-height: 1.8 !important;
}

.hero-buttons {
  margin-top: 30px !important;
}

.hero-right {
  display: grid !important;
  place-items: center !important;
}

.strength-section {
  margin-top: 0 !important;
}

@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-right {
    display: none !important;
  }

}

@media (max-width: 600px) {

  .hero-grid {
    min-height: auto !important;

    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .hero h1 {
    font-size: 38px !important;

    line-height: 1.12 !important;

    letter-spacing: -2px !important;
  }

}

/* =========================================================
   CHAINLAB network icon refinement
   ========================================================= */

.center-cube {
  width: 150px !important;
  height: 150px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 30px !important;

  background:
    linear-gradient(
      145deg,
      #4fc5ff,
      #2677ff 58%,
      #1c49c4
    ) !important;

  box-shadow:
    0 30px 60px rgba(31,101,221,.23) !important;
}

.center-logo {
  width: 84px;
  max-width: 72%;
  height: auto;

  display: block;

  filter:
    brightness(0) invert(1)
    drop-shadow(0 2px 8px rgba(255,255,255,.18));
}

.node {
  width: 128px !important;
  height: 108px !important;

  gap: 10px !important;

  border-radius: 22px !important;

  background: rgba(255,255,255,.95) !important;

  box-shadow:
    0 18px 40px rgba(46,90,158,.08) !important;
}

.node-icon {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #eef5ff;
}

.node-icon svg {
  width: 24px;
  height: 24px;

  fill: none;

  stroke: #1768ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.node span {
  color: #17345b !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-align: center;
  word-break: keep-all;
}

.node-token {
  left: 110px !important;
  top: 26px !important;
}

.node-dev {
  right: 62px !important;
  top: 30px !important;
}

.node-marketing {
  right: 2px !important;
  top: 205px !important;
}

.node-listing {
  right: 86px !important;
  bottom: 34px !important;
}

.node-ecosystem {
  left: 28px !important;
  top: 192px !important;
}

.node-consulting {
  left: 98px !important;
  bottom: 32px !important;
}

@media (max-width: 1200px) {
  .network {
    transform: scale(.95);
    transform-origin: center;
  }
}

@media (max-width: 1000px) {
  .network {
    transform: scale(.88);
  }
}

/* =========================================================
   CHAINLAB strength icons refinement
   ========================================================= */

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 14px 28px !important;
  min-height: 110px;
}

.strength-item + .strength-item {
  border-left: 1px solid #e7edf6;
}

.strength-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 14px;
  background: #eef5ff;
}

.strength-icon svg {
  width: 24px;
  height: 24px;

  fill: none;
  stroke: #1768ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strength-text {
  display: flex;
  flex-direction: column;
}

.strength-item strong {
  margin: 0 0 7px !important;
  color: #145fd4;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.strength-item span {
  color: #7f8a9d;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .strength-item + .strength-item {
    border-left: 0;
    border-top: 1px solid #e7edf6;
  }
}

@media (max-width: 600px) {
  .strength-item {
    padding: 16px 4px !important;
    gap: 14px;
    min-height: auto;
  }

  .strength-icon {
    width: 42px;
    height: 42px;
  }

  .strength-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* =========================================================
   CHAINLAB process strong icons
   ========================================================= */

.process-grid article > span {
  width: 42px !important;
  height: 42px !important;

  margin: 0 auto 14px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 50% !important;

  color: #1768ff !important;

  font-size: 12px !important;
  font-weight: 900 !important;

  background: #e8f2ff !important;
}

.process-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin: 0 auto 15px;

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      #2582ff,
      #1257e5
    );

  box-shadow:
    0 10px 24px
    rgba(23,104,255,.20);
}

.process-icon svg {
  width: 31px;
  height: 31px;

  fill: none;

  stroke: #ffffff;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid h3 {
  margin-top: 4px !important;

  color: #122f63 !important;

  font-size: 16px !important;
  font-weight: 800 !important;
}

.process-grid p {
  max-width: 180px;

  margin-left: auto !important;
  margin-right: auto !important;

  color: #7b8799 !important;

  font-size: 12px !important;

  line-height: 1.65 !important;
}

@media(max-width:600px) {

  .process-icon {
    width: 54px;
    height: 54px;
  }

  .process-icon svg {
    width: 28px;
    height: 28px;
  }

}

/* =========================================================
   CHAINLAB strong blue icon system
   Service cards + Hero network
   ========================================================= */


/* ================================
   1. 체인랩 서비스 아이콘
   ================================ */

.service-svg {
  width: 56px !important;
  height: 56px !important;

  display: grid !important;
  place-items: center !important;

  margin-bottom: 24px !important;

  border-radius: 16px !important;

  background:
    linear-gradient(
      145deg,
      #3097ff 0%,
      #1768ff 55%,
      #0d4fd4 100%
    ) !important;

  box-shadow:
    0 10px 25px
    rgba(23,104,255,.24) !important;
}


.service-svg svg {
  width: 30px !important;
  height: 30px !important;

  fill: none !important;

  stroke: #ffffff !important;
  stroke-width: 2.35 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}


/* 서비스 카드 hover */

.service-open:hover .service-svg {
  transform: translateY(-2px);

  background:
    linear-gradient(
      145deg,
      #167bff,
      #0d50dc
    ) !important;

  box-shadow:
    0 14px 30px
    rgba(23,104,255,.32) !important;
}


.service-svg {
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


/* 서비스 제목도 조금 선명하게 */

.service-card h3 {
  color: #102f65 !important;

  font-weight: 850 !important;
}


/* ================================
   2. 맨 위 네트워크 아이콘
   토큰발행 / 거래소개발 등
   ================================ */

.node-icon {
  width: 46px !important;
  height: 46px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 14px !important;

  background:
    linear-gradient(
      145deg,
      #349cff 0%,
      #1768ff 55%,
      #0d4fd4 100%
    ) !important;

  box-shadow:
    0 9px 22px
    rgba(23,104,255,.24) !important;
}


.node-icon svg {
  width: 27px !important;
  height: 27px !important;

  fill: none !important;

  stroke: #ffffff !important;
  stroke-width: 2.4 !important;

  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}


/* 네트워크 박스도 조금 더 또렷하게 */

.node {
  border:
    1px solid
    rgba(23,104,255,.17) !important;

  background:
    rgba(255,255,255,.97) !important;

  box-shadow:
    0 16px 35px
    rgba(35,78,150,.12) !important;
}


.node span {
  color: #143668 !important;

  font-size: 13px !important;
  font-weight: 850 !important;
}


/* hover 효과 */

.node {
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.node:hover {
  transform: translateY(-4px);

  box-shadow:
    0 22px 42px
    rgba(23,84,180,.16) !important;
}


/* ================================
   3. 모바일
   ================================ */

@media(max-width:600px) {

  .service-svg {
    width: 52px !important;
    height: 52px !important;
  }

  .service-svg svg {
    width: 27px !important;
    height: 27px !important;
  }

  .node-icon {
    width: 43px !important;
    height: 43px !important;
  }

  .node-icon svg {
    width: 25px !important;
    height: 25px !important;
  }

}


/* =========================================================
   CHAINLAB hero line balance
   ========================================================= */

.hero-left {
  max-width: 760px;
}

.hero h1 {
  max-width: 760px !important;

  line-height: 1.08 !important;

  word-break: keep-all !important;

  letter-spacing: -3.4px !important;
}

.hero-desc {
  max-width: 650px !important;

  line-height: 1.8 !important;

  word-break: keep-all !important;
}

@media (max-width: 600px) {

  .hero h1 {
    font-size: 38px !important;
    line-height: 1.12 !important;
    letter-spacing: -2px !important;
  }

  .hero-desc br {
    display: none;
  }

}

/* =========================================================
   CHAINLAB ecosystem text balance
   ========================================================= */

.ecosystem .split-title h2 {
  max-width: 700px;

  line-height: 1.18 !important;

  word-break: keep-all;
}

.ecosystem .split-title p {
  min-width: 280px;
  max-width: 320px;

  line-height: 1.75 !important;

  word-break: keep-all;
}

@media (max-width: 600px) {

  .ecosystem .split-title h2 br,
  .ecosystem .split-title p br {
    display: none;
  }

  .ecosystem .split-title p {
    min-width: 0;
    max-width: none;
  }

}

/* =========================================================
   CHAINLAB hero title fit fix
   ========================================================= */

.hero-grid {
  grid-template-columns: 1.12fr .88fr !important;
  gap: 42px !important;
}

.hero-left {
  max-width: 760px !important;
  min-width: 0 !important;
}

.hero h1 {
  width: 100% !important;
  max-width: 760px !important;

  margin: 0 !important;

  font-size: clamp(46px, 4.35vw, 62px) !important;
  line-height: 1.08 !important;
  letter-spacing: -3.2px !important;

  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.hero-accent {
  white-space: nowrap !important;
  color: #176fff !important;
}

@media (max-width: 1100px) {

  .hero h1 {
    font-size: 50px !important;
    letter-spacing: -2.7px !important;
  }

}

@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero h1 {
    font-size: 46px !important;
  }

}

@media (max-width: 600px) {

  .hero h1 {
    font-size: 36px !important;
    line-height: 1.12 !important;
    letter-spacing: -1.8px !important;
  }

  .hero h1 br {
    display: none;
  }

}

/* =========================================================
   ECOSYSTEM title single-line desktop
   ========================================================= */

.ecosystem .split-title h2 {
  max-width: none !important;
  white-space: nowrap !important;

  font-size: 36px !important;
  line-height: 1.2 !important;
  letter-spacing: -2px !important;
}

@media (max-width: 1100px) {
  .ecosystem .split-title h2 {
    font-size: 31px !important;
  }
}

@media (max-width: 900px) {
  .ecosystem .split-title h2 {
    white-space: normal !important;
    font-size: 30px !important;
  }
}

@media (max-width: 600px) {
  .ecosystem .split-title h2 {
    font-size: 27px !important;
    line-height: 1.25 !important;
  }
}

/* =========================================================
   ECOSYSTEM subtitle single-line desktop
   ========================================================= */

.ecosystem .split-title p {
  max-width: none !important;
  min-width: 0 !important;

  white-space: nowrap !important;

  font-size: 13px !important;
  line-height: 1.5 !important;
}

@media (max-width: 900px) {
  .ecosystem .split-title p {
    white-space: normal !important;
  }
}

/* =========================================================
   ECOSYSTEM final single-line desktop
   ========================================================= */

.ecosystem .split-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.ecosystem .split-title h2 {
  flex: 1 1 auto !important;

  width: auto !important;
  max-width: none !important;

  margin: 0 !important;

  white-space: nowrap !important;

  font-size: 31px !important;
  line-height: 1.2 !important;
  letter-spacing: -1.7px !important;
}

.ecosystem .split-title p {
  flex: 0 0 auto !important;

  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;

  margin: 0 !important;

  white-space: nowrap !important;

  font-size: 12px !important;
  line-height: 1.5 !important;
}

@media (max-width: 900px) {

  .ecosystem .split-title {
    display: block !important;
  }

  .ecosystem .split-title h2,
  .ecosystem .split-title p {
    white-space: normal !important;
  }

  .ecosystem .split-title h2 {
    font-size: 30px !important;
  }

  .ecosystem .split-title p {
    margin-top: 14px !important;
  }

}

/* =========================================================
   CHAINLAB Exchange Listing
   ========================================================= */

.exchange-listing {
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f8fbff
    );
}

.exchange-title {
  margin-bottom: 30px;
}

.exchange-grid {
  display: grid;

  grid-template-columns:
    repeat(8,1fr);

  gap: 10px;
}

.exchange-card {
  min-height: 112px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 11px;

  padding: 14px 8px;

  border:
    1px solid #e4ebf5;

  border-radius: 13px;

  background: white;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.exchange-card:hover {
  transform:
    translateY(-4px);

  border-color:
    #b9d3fa;

  box-shadow:
    0 16px 32px
    rgba(30,83,164,.09);
}

.exchange-card span {
  color: #273851;

  font-size: 11px;
  font-weight: 750;

  text-align: center;
}

.exchange-placeholder {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #1268ec;

  font-size: 13px;
  font-weight: 900;

  background:
    #eef5ff;
}

.binance-logo {
  color: #111;

  background:
    #f8c824;
}

.mexc-logo {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #37c7ff,
      #1671ff
    );
}

.exchange-card-logo img {
  width: 78px;
  height: 46px;

  display: block;

  object-fit: contain;
}

.exchange-disclaimer {
  margin:
    20px 0 0;

  color: #8a95a7;

  font-size: 10px;

  line-height: 1.7;
}

@media(max-width:1000px) {

  .exchange-grid {
    grid-template-columns:
      repeat(4,1fr);
  }

}

@media(max-width:600px) {

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

  .exchange-card {
    min-height: 105px;
  }

}

/* Exchange listing disclaimer */
.exchange-disclaimer {
  margin-top: 18px !important;

  color: #aeb7c5 !important;

  font-size: 9.5px !important;
  font-weight: 400 !important;

  line-height: 1.7 !important;

  letter-spacing: -0.01em !important;
}

/* =========================================================
   CHAINLAB actual exchange logos + links
   ========================================================= */

.exchange-link {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

.exchange-card img {
  width: 48px;
  height: 48px;

  display: block;

  object-fit: contain;

  border-radius: 50%;
}

.exchange-card span {
  color: #273851 !important;

  font-size: 12px !important;
  font-weight: 750 !important;
}

.ulanbit-exchange-logo {
  width: 92px !important;
  height: 48px !important;

  border-radius: 0 !important;

  object-fit: contain !important;
}

.exchange-link:hover {
  transform: translateY(-5px) !important;

  border-color: #a9caff !important;

  box-shadow:
    0 18px 38px
    rgba(27,79,160,.12) !important;
}

.exchange-link:hover span {
  color: #1768ff !important;
}

/* Exchange listing subtitle single line */
.exchange-title p {
  max-width: none !important;
  min-width: 0 !important;

  white-space: nowrap !important;

  font-size: 13px !important;
  line-height: 1.5 !important;
}

@media (max-width: 900px) {
  .exchange-title p {
    white-space: normal !important;
  }
}

/* =========================================================
   CHAINLAB Ecosystem clickable cards
   ========================================================= */

.ecosystem-link {
  text-decoration: none !important;
  color: inherit !important;

  cursor: pointer;

  position: relative;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}


/* 카드 기본 */

.ecosystem-item {
  min-height: 122px !important;

  padding: 16px 10px 13px !important;

  border:
    1px solid #e3ebf6 !important;

  border-radius: 14px !important;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfdff 100%
    ) !important;

  box-shadow:
    0 5px 18px
    rgba(36,76,145,.035);
}


/* 로고 */

.ecosystem-item img {
  width: 46px !important;
  height: 46px !important;

  display: block;

  object-fit: contain !important;

  margin:
    0 auto 10px !important;

  border-radius: 50%;
}


/* 체인 이름 */

.ecosystem-item > span {
  display: block;

  color: #233b61 !important;

  font-size: 12px !important;
  font-weight: 800 !important;

  line-height: 1.35;

  text-align: center;
}


/* Explorer 문구 */

.ecosystem-item small {
  display: block;

  margin-top: 4px;

  color: #a0adbf;

  font-size: 8.5px;
  font-weight: 600;

  text-align: center;

  opacity: .75;

  transition:
    color .22s ease,
    opacity .22s ease;
}


/* 마우스 올릴 때 */

.ecosystem-link:hover {
  transform:
    translateY(-7px);

  border-color:
    #a9caff !important;

  background:
    #ffffff !important;

  box-shadow:
    0 20px 42px
    rgba(25,83,177,.13) !important;
}


.ecosystem-link:hover > span {
  color:
    #1768ff !important;
}


.ecosystem-link:hover small {
  color:
    #1768ff;

  opacity: 1;
}


/* 로고도 살짝 확대 */

.ecosystem-link img {
  transition:
    transform .22s ease;
}

.ecosystem-link:hover img {
  transform:
    scale(1.08);
}


/* 클릭 시 */

.ecosystem-link:active {
  transform:
    translateY(-3px)
    scale(.99);
}


@media(max-width:600px) {

  .ecosystem-item {
    min-height: 115px !important;
  }

  .ecosystem-item img {
    width: 43px !important;
    height: 43px !important;
  }

  .ecosystem-link:hover {
    transform:
      translateY(-3px);
  }

}

/* =========================================================
   CHAINLAB FAQ accordion
   ========================================================= */

.faq-title {
  margin-bottom: 28px !important;
}

.faq-title p {
  max-width: none !important;

  white-space: nowrap;

  font-size: 13px !important;
}

.faq-list {
  border-top: 1px solid #dfe7f2;
}

.faq-row {
  border-bottom: 1px solid #e4ebf5;
}

.faq-question {
  width: 100%;

  min-height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding: 0 20px;

  border: 0;

  color: #1b3156;

  text-align: left;

  background: transparent;

  cursor: pointer;
}

.faq-question > span {
  font-size: 15px;
  font-weight: 750;

  letter-spacing: -0.02em;
}

.faq-question > b {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #1768ff;

  font-size: 21px;
  font-weight: 400;

  background: #eef5ff;

  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.faq-row.is-open .faq-question > b {
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #2f95ff,
      #1768ff
    );

  transform: rotate(180deg);
}


/* answer */

.faq-answer {
  max-height: 0;

  overflow: hidden;

  padding: 0 20px;

  opacity: 0;

  transition:
    max-height .32s ease,
    opacity .25s ease,
    padding .32s ease;
}

.faq-row.is-open .faq-answer {
  max-height: 600px;

  padding:
    0 20px 25px;

  opacity: 1;
}

.faq-answer > p {
  max-width: 900px;

  margin: 0;

  color: #6f7c91;

  font-size: 13px;

  line-height: 1.8;
}


/* project duration list */

.faq-time-list {
  max-width: 860px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.faq-time-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding: 13px 16px;

  border-bottom:
    1px solid #edf1f7;
}

.faq-time-list li:last-child {
  border-bottom: 0;
}

.faq-time-list strong {
  color: #29446e;

  font-size: 13px;
  font-weight: 750;
}

.faq-time-list span {
  color: #1768ff;

  font-size: 12px;
  font-weight: 800;

  text-align: right;
}

.faq-note {
  margin-top: 14px !important;

  color: #a1abba !important;

  font-size: 10px !important;
}


/* hover */

.faq-question:hover > span {
  color: #1768ff;
}


/* mobile */

@media(max-width:600px) {

  .faq-title p {
    white-space: normal;
  }

  .faq-question {
    min-height: 62px;

    padding:
      0 5px;
  }

  .faq-question > span {
    font-size: 13px;
  }

  .faq-answer {
    padding:
      0 5px;
  }

  .faq-row.is-open .faq-answer {
    padding:
      0 5px 22px;
  }

  .faq-time-list li {
    display: block;

    padding:
      12px 8px;
  }

  .faq-time-list span {
    display: block;

    margin-top: 5px;

    text-align: left;
  }

}

/* =========================================================
   CHAINLAB footer company info beside logo
   ========================================================= */

.footer-new-layout {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;

  gap: 50px !important;
}

.footer-left-group {
  display: flex;
  align-items: center;

  gap: 34px;

  min-width: 0;
}

.footer-brand {
  flex-shrink: 0;
}

.footer-brand img {
  width: 150px !important;
  height: auto !important;

  display: block;
  object-fit: contain;
}

.footer-company {
  min-width: 0;

  color: #758196 !important;

  font-size: 11px !important;
  line-height: 1.6 !important;
}

.footer-company p {
  margin: 0 0 5px !important;
}

.footer-company b {
  min-width: 48px;

  display: inline-block;

  margin-right: 8px !important;

  color: #37465f !important;

  font-weight: 800 !important;
}

.footer-company a {
  color: #758196;
}

.footer-company a:hover {
  color: #1768ff;
}

.footer-nav {
  display: flex !important;
  align-items: center;

  gap: 22px !important;

  flex-shrink: 0;
}

.footer-nav a {
  color: #5d6b80;

  font-size: 11px;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #1768ff;
}

@media (max-width: 900px) {

  .footer-new-layout {
    display: block !important;
  }

  .footer-left-group {
    align-items: flex-start;

    margin-bottom: 28px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

}

@media (max-width: 600px) {

  .footer-left-group {
    display: block;
  }

  .footer-company {
    margin-top: 20px;
  }

  .footer-brand img {
    width: 130px !important;
  }

}


/* CHAINLAB FLOATING CONTACT START */

.floating-contact {
  position: fixed;

  right: 26px;
  bottom: 28px;

  z-index: 9998;

  display: flex;
  flex-direction: column;

  gap: 12px;
}


/* 버튼 공통 */

.floating-contact-btn {
  width: 58px;
  height: 58px;

  position: relative;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  cursor: pointer;

  text-decoration: none;

  transition:
    transform .22s ease,
    box-shadow .22s ease;
}


.floating-contact-btn:hover {
  transform:
    translateY(-4px)
    scale(1.04);
}


/* 전화 */

.floating-phone {
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #349cff 0%,
      #1768ff 55%,
      #0d4fd4 100%
    );

  box-shadow:
    0 10px 28px
    rgba(23,104,255,.30);
}


.floating-phone:hover {
  box-shadow:
    0 15px 34px
    rgba(23,104,255,.38);
}


.floating-phone svg {
  width: 27px;
  height: 27px;

  fill: #ffffff;
}


/* 카카오 */

.floating-kakao {
  color: #191919;

  background: #FEE500;

  box-shadow:
    0 10px 28px
    rgba(120,105,0,.20);
}


.floating-kakao:hover {
  box-shadow:
    0 15px 34px
    rgba(120,105,0,.27);
}


.floating-kakao svg {
  width: 33px;
  height: 33px;

  fill: #191919;
}


.floating-kakao-text {
  position: absolute;

  top: 19px;
  left: 0;
  right: 0;

  color: #FEE500;

  font-size: 12px;
  font-weight: 900;

  text-align: center;

  pointer-events: none;
}


/* 마우스 올렸을 때 왼쪽 안내 */

.floating-tooltip {
  position: absolute;

  top: 50%;
  right: calc(100% + 12px);

  transform:
    translateY(-50%)
    translateX(8px);

  min-width: max-content;

  padding:
    8px 11px;

  border-radius: 8px;

  color: #fff;

  font-size: 11px;
  font-weight: 700;

  background:
    rgba(8,25,56,.92);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
}


.floating-contact-btn:hover
.floating-tooltip {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(-50%)
    translateX(0);
}


/* 모바일 */

@media (max-width: 600px) {

  .floating-contact {
    right: 16px;
    bottom: 18px;

    gap: 10px;
  }

  .floating-contact-btn {
    width: 52px;
    height: 52px;
  }

  .floating-phone svg {
    width: 24px;
    height: 24px;
  }

  .floating-kakao svg {
    width: 30px;
    height: 30px;
  }

  .floating-kakao-text {
    top: 17px;

    font-size: 11px;
  }

  .floating-tooltip {
    display: none;
  }

}

/* CHAINLAB FLOATING CONTACT END */

/* =========================================================
   CHAINLAB TOKEN ALL-IN-ONE PACKAGE
   ========================================================= */

.modal-package {
  margin-top: 18px;

  padding: 24px;

  border-radius: 16px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #0e53d7 0%,
      #1768ff 52%,
      #37a8ff 100%
    );

  box-shadow:
    0 18px 38px
    rgba(23,104,255,.22);
}


.modal-package-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;
}


.modal-package-head > div {
  display: flex;
  flex-direction: column;
}


.modal-package-head small {
  margin-bottom: 5px;

  color:
    rgba(255,255,255,.72);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.4px;
}


.modal-package-head strong {
  color: #ffffff;

  font-size: 21px;
  font-weight: 900;
}


.modal-package-head b {
  flex-shrink: 0;

  color: #ffffff;

  font-size: 23px;
  font-weight: 900;

  letter-spacing: -.5px;
}


.modal-package-items {
  display: flex;

  gap: 9px;

  flex-wrap: wrap;

  margin-top: 18px;
}


.modal-package-items span {
  padding: 7px 10px;

  border:
    1px solid
    rgba(255,255,255,.22);

  border-radius: 8px;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  background:
    rgba(255,255,255,.10);
}


@media(max-width:600px) {

  .modal-package {
    padding: 20px;
  }

  .modal-package-head {
    display: block;
  }

  .modal-package-head b {
    display: block;

    margin-top: 10px;

    font-size: 21px;
  }

}

/* =========================================================
   CHAINLAB TOKEN ALL-IN-ONE PACKAGE
   ========================================================= */

.modal-package {
  margin-top: 18px;

  padding: 24px;

  border-radius: 16px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #0e53d7 0%,
      #1768ff 52%,
      #37a8ff 100%
    );

  box-shadow:
    0 18px 38px
    rgba(23,104,255,.22);
}


.modal-package-head {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;
}


.modal-package-head > div {
  display: flex;
  flex-direction: column;
}


.modal-package-head small {
  margin-bottom: 5px;

  color:
    rgba(255,255,255,.72);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.4px;
}


.modal-package-head strong {
  color: #ffffff;

  font-size: 21px;
  font-weight: 900;
}


.modal-package-head b {
  flex-shrink: 0;

  color: #ffffff;

  font-size: 23px;
  font-weight: 900;

  letter-spacing: -.5px;
}


.modal-package-items {
  display: flex;

  gap: 9px;

  flex-wrap: wrap;

  margin-top: 18px;
}


.modal-package-items span {
  padding: 7px 10px;

  border:
    1px solid
    rgba(255,255,255,.22);

  border-radius: 8px;

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  background:
    rgba(255,255,255,.10);
}


@media(max-width:600px) {

  .modal-package {
    padding: 20px;
  }

  .modal-package-head {
    display: block;
  }

  .modal-package-head b {
    display: block;

    margin-top: 10px;

    font-size: 21px;
  }

}

/* =========================================================
   CHAINLAB other service modal blue style
   ========================================================= */

.modal-service-item.modal-service-blue {
  padding: 26px !important;

  border: 0 !important;

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      #0e53d7 0%,
      #1768ff 52%,
      #37a8ff 100%
    ) !important;

  box-shadow:
    0 18px 38px
    rgba(23,104,255,.22) !important;
}


/* 서비스명 */

.modal-service-blue .modal-service-name {
  color: #ffffff !important;

  font-size: 19px !important;
  font-weight: 900 !important;
}


/* 가격 */

.modal-service-blue .modal-price {
  padding: 8px 13px !important;

  border:
    1px solid
    rgba(255,255,255,.25) !important;

  color: #ffffff !important;

  font-size: 15px !important;
  font-weight: 900 !important;

  background:
    rgba(255,255,255,.14) !important;
}


/* 설명 */

.modal-service-blue .modal-service-desc {
  margin-top: 14px !important;

  color:
    rgba(255,255,255,.88) !important;

  font-size: 13px !important;

  line-height: 1.75 !important;
}


/* hover 약간 강조 */

.modal-service-blue {
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.modal-service-blue:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 22px 45px
    rgba(23,104,255,.28) !important;
}


@media(max-width:600px) {

  .modal-service-item.modal-service-blue {
    padding: 22px !important;
  }

  .modal-service-blue .modal-service-name {
    font-size: 17px !important;
  }

  .modal-service-blue .modal-price {
    font-size: 14px !important;
  }

}

/* =========================================================
   CHAINLAB PROCESS HOVER EFFECT
   ========================================================= */

.process-grid article {
  position: relative;

  padding: 22px 16px;

  border-radius: 18px;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}


/* 마우스 올렸을 때 */

.process-grid article:hover {
  transform: translateY(-7px);

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );

  box-shadow:
    0 20px 42px
    rgba(23,82,170,.12);
}


/* 아이콘도 같이 움직임 */

.process-icon {
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.process-grid article:hover .process-icon {
  transform:
    translateY(-2px)
    scale(1.06);

  box-shadow:
    0 15px 32px
    rgba(23,104,255,.32) !important;
}


/* 번호 원도 살짝 강조 */

.process-grid article > span {
  transition:
    color .22s ease,
    background .22s ease,
    transform .22s ease;
}

.process-grid article:hover > span {
  color: #ffffff !important;

  background:
    linear-gradient(
      145deg,
      #3097ff,
      #1768ff
    ) !important;

  transform: scale(1.05);
}


/* 제목 색상 */

.process-grid article:hover h3 {
  color: #1768ff !important;
}


/* 모바일은 움직임 약하게 */

@media(max-width:600px) {

  .process-grid article:hover {
    transform: translateY(-3px);
  }

  .process-grid article:hover .process-icon {
    transform: scale(1.03);
  }

}

/* =========================================================
   CHAINLAB PROJECT SECTION UPGRADE
   ========================================================= */

.project-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 28px !important;
}

.project-card {
  overflow: hidden !important;

  border: 1px solid #e4ebf5 !important;
  border-radius: 24px !important;

  background: #ffffff !important;

  box-shadow:
    0 8px 24px rgba(29, 74, 145, .05) !important;

  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease !important;
}

.project-hover:hover {
  transform: translateY(-8px) !important;

  border-color: #b8d1f8 !important;

  box-shadow:
    0 22px 48px rgba(25, 83, 177, .14) !important;
}


/* 상단 비주얼 공통 */
.project-visual {
  position: relative;

  height: 220px;

  padding: 20px;

  overflow: hidden;

  border-bottom: 1px solid #edf2f8;

  background:
    linear-gradient(135deg, #edf6ff 0%, #f8fbff 100%);
}


/* 하단 본문 */
.project-body {
  padding: 22px 22px 24px !important;
}

.project-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  margin-bottom: 14px;

  border-radius: 50%;

  color: #1768ff;
  font-size: 12px;
  font-weight: 900;

  background: #eef5ff;
}

.project-body h3 {
  margin: 0 0 10px !important;

  color: #16345f !important;
  font-size: 22px !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}

.project-body p {
  margin: 0 !important;

  color: #66768d !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 18px;
}

.project-tags span {
  padding: 7px 10px;

  border-radius: 999px;

  color: #3c567a;
  font-size: 11px;
  font-weight: 700;

  background: #f3f7fd;
}


/* =========================================================
   1. TOKEN VISUAL
   ========================================================= */

.visual-token {
  background:
    radial-gradient(circle at 20% 20%, rgba(55, 168, 255, .25), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(23, 104, 255, .18), transparent 35%),
    linear-gradient(135deg, #f2f9ff 0%, #f9fbff 100%);
}

.visual-chip {
  position: absolute;
  top: 18px;

  padding: 8px 12px;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 800;
}

.chip-blue {
  left: 18px;

  color: #1768ff;
  background: rgba(23, 104, 255, .10);
}

.chip-dark {
  right: 18px;

  color: #ffffff;
  background: linear-gradient(145deg, #1f2a44, #31476c);
}

.token-core {
  position: absolute;
  left: 50%;
  top: 54%;

  width: 124px;
  height: 124px;

  transform: translate(-50%, -50%);
}

.token-ring {
  position: absolute;
  inset: 0;

  border: 2px solid rgba(23, 104, 255, .18);
  border-radius: 50%;
}

.token-ring.ring-small {
  inset: 16px;
  border-color: rgba(55, 168, 255, .28);
}

.token-logo {
  position: absolute;
  inset: 32px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;
  font-size: 30px;
  font-weight: 900;

  background:
    linear-gradient(145deg, #3097ff 0%, #1768ff 55%, #0d4fd4 100%);

  box-shadow:
    0 14px 30px rgba(23, 104, 255, .28);
}

.token-stats {
  position: absolute;
  left: 50%;
  bottom: 18px;

  display: flex;
  gap: 8px;

  transform: translateX(-50%);
}

.token-stats span {
  padding: 6px 10px;

  border-radius: 999px;

  color: #58739a;
  font-size: 10px;
  font-weight: 700;

  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
}


/* =========================================================
   2. WALLET VISUAL
   ========================================================= */

.visual-wallet {
  background:
    radial-gradient(circle at 75% 20%, rgba(55, 168, 255, .18), transparent 30%),
    linear-gradient(135deg, #eff7ff 0%, #f8fbff 100%);
}

.wallet-window {
  width: 76%;
  height: 150px;

  padding: 14px;

  border: 1px solid rgba(23, 104, 255, .08);
  border-radius: 18px;

  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);

  box-shadow:
    0 16px 35px rgba(22, 71, 143, .08);
}

.wallet-top {
  display: flex;
  gap: 6px;
}

.wallet-top span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #d1def0;
}

.wallet-balance {
  margin-top: 22px;
}

.wallet-balance small {
  display: block;

  color: #8ca0bc;
  font-size: 11px;
  font-weight: 700;
}

.wallet-balance strong {
  display: block;

  margin-top: 8px;

  color: #173761;
  font-size: 24px;
  font-weight: 900;
}

.wallet-actions {
  display: flex;
  gap: 8px;

  margin-top: 18px;
}

.wallet-actions span {
  padding: 7px 11px;

  border-radius: 10px;

  color: #1768ff;
  font-size: 11px;
  font-weight: 800;

  background: #eef5ff;
}

.wallet-side-card {
  position: absolute;
  right: 20px;
  bottom: 28px;

  padding: 14px 16px;

  border-radius: 16px;

  color: #ffffff;
  font-size: 13px;
  font-weight: 900;

  background:
    linear-gradient(145deg, #3097ff 0%, #1768ff 55%, #0d4fd4 100%);

  box-shadow:
    0 14px 30px rgba(23, 104, 255, .26);
}


/* =========================================================
   3. LISTING VISUAL
   ========================================================= */

.visual-listing {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 208, 73, .18), transparent 24%),
    radial-gradient(circle at 85% 70%, rgba(23, 104, 255, .16), transparent 30%),
    linear-gradient(135deg, #f3f8ff 0%, #fafdff 100%);
}

.listing-board {
  width: 100%;
  height: 160px;

  padding: 16px 16px 14px;

  border-radius: 20px;

  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);

  box-shadow:
    0 14px 35px rgba(22, 71, 143, .08);
}

.listing-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing-line b {
  color: #173761;
  font-size: 18px;
  font-weight: 900;
}

.listing-line span {
  color: #8aa0bf;
  font-size: 11px;
  font-weight: 700;
}

.listing-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;

  margin-top: 16px;
}

.listing-icons span {
  min-width: 42px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 10px;

  border-radius: 10px;

  color: #355273;
  font-size: 11px;
  font-weight: 800;

  background: #f3f7fd;
}

.listing-graph {
  display: flex;
  align-items: end;
  gap: 7px;

  height: 58px;

  margin-top: 20px;
}

.listing-graph i {
  display: block;

  width: 18%;
  border-radius: 8px 8px 0 0;

  background:
    linear-gradient(180deg, #40b3ff 0%, #1768ff 100%);
}

.listing-graph i:nth-child(1) { height: 28px; }
.listing-graph i:nth-child(2) { height: 40px; }
.listing-graph i:nth-child(3) { height: 52px; }
.listing-graph i:nth-child(4) { height: 34px; }
.listing-graph i:nth-child(5) { height: 46px; }

.listing-badge {
  position: absolute;
  right: 18px;
  top: 18px;

  padding: 8px 12px;

  border-radius: 999px;

  color: #ffffff;
  font-size: 10px;
  font-weight: 900;

  background:
    linear-gradient(145deg, #1e2c49, #2f4772);
}


/* hover 때 비주얼도 살짝 반응 */
.project-card .project-visual,
.project-card .token-logo,
.project-card .wallet-side-card,
.project-card .listing-board {
  transition:
    transform .24s ease,
    box-shadow .24s ease;
}

.project-card:hover .project-visual {
  transform: scale(1.01);
}

.project-card:hover .token-logo,
.project-card:hover .wallet-side-card {
  transform: translateY(-3px);
}

.project-card:hover .listing-board {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(22, 71, 143, .12);
}


/* 반응형 */
@media (max-width: 1100px) {
  .project-grid {
    grid-template-columns: 1fr !important;
  }

  .project-visual {
    height: 210px;
  }
}

@media (max-width: 600px) {
  .project-body h3 {
    font-size: 19px !important;
  }

  .project-visual {
    height: 190px;
    padding: 16px;
  }

  .wallet-window {
    width: 100%;
    height: 142px;
  }

  .wallet-side-card {
    right: 16px;
    bottom: 16px;
    font-size: 12px;
  }

  .listing-line b {
    font-size: 16px;
  }
}

/* =========================================================
   PROJECT intro text fit fix
   ========================================================= */

.projects .split-title {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;

  gap: 40px !important;
}

.projects .split-title h2 {
  flex: 1 1 auto !important;

  max-width: 560px !important;

  margin: 0 !important;
}

.projects .project-intro-text {
  flex: 0 0 auto !important;

  width: auto !important;
  min-width: 470px !important;
  max-width: none !important;

  margin: 0 0 4px !important;

  color: #8490a3 !important;

  font-size: 12px !important;
  line-height: 1.5 !important;

  white-space: nowrap !important;

  word-break: keep-all !important;
  overflow: visible !important;
}


/* 태블릿 이하에서는 자연스럽게 줄바꿈 */

@media (max-width: 1050px) {

  .projects .split-title {
    display: block !important;
  }

  .projects .project-intro-text {
    min-width: 0 !important;

    margin-top: 14px !important;

    white-space: normal !important;
  }

}

/* =========================================================
   PROJECT 02 - EXCHANGE DEVELOPMENT VISUAL
   ========================================================= */

.visual-exchange-dev {
  background:
    radial-gradient(circle at 18% 20%, rgba(55,168,255,.16), transparent 28%),
    radial-gradient(circle at 85% 72%, rgba(23,104,255,.16), transparent 34%),
    linear-gradient(135deg, #eef7ff 0%, #f9fbff 100%);
}

.exchange-topbar {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #8ca1bf;
  font-size: 11px;
  font-weight: 700;
}

.exchange-topbar b {
  margin-left: 6px;

  color: #29476f;
  font-size: 12px;
  font-weight: 800;
}

.ex-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #d4deed;
}

.exchange-chart-card {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 54px;

  padding: 16px 16px 14px;

  border-radius: 20px;

  background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);

  box-shadow:
    0 16px 34px rgba(22,71,143,.08);
}

.exchange-pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exchange-pair strong {
  color: #173761;
  font-size: 18px;
  font-weight: 900;
}

.exchange-pair span {
  color: #1768ff;
  font-size: 12px;
  font-weight: 900;
}

.exchange-chart {
  position: relative;

  height: 66px;

  display: flex;
  align-items: end;
  gap: 8px;

  margin-top: 18px;
}

.exchange-chart .bar {
  display: block;

  width: 12%;
  border-radius: 8px 8px 0 0;

  background:
    linear-gradient(180deg, #40b3ff 0%, #1768ff 100%);
}

.exchange-chart .b1 { height: 22px; }
.exchange-chart .b2 { height: 36px; }
.exchange-chart .b3 { height: 48px; }
.exchange-chart .b4 { height: 30px; }
.exchange-chart .b5 { height: 56px; }
.exchange-chart .b6 { height: 42px; }

.exchange-chart .line {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 12px;
  bottom: 8px;

  border-bottom: 3px solid rgba(255,189,59,.95);
  border-right: 3px solid transparent;

  clip-path: polygon(
    0 72%, 14% 64%, 28% 70%, 42% 44%, 56% 54%, 70% 28%, 84% 36%, 100% 8%,
    100% 100%, 0 100%
  );

  background: rgba(255,189,59,.18);
}

.exchange-orderbook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;

  margin-top: 16px;
}

.exchange-orderbook div {
  padding: 9px 10px;

  border-radius: 12px;

  background: #f4f8fd;
}

.exchange-orderbook small {
  display: block;

  color: #8ea1bc;
  font-size: 10px;
  font-weight: 700;
}

.exchange-orderbook span {
  display: block;

  margin-top: 4px;

  color: #234062;
  font-size: 12px;
  font-weight: 900;
}

.exchange-side-badge {
  position: absolute;
  right: 20px;
  bottom: 18px;

  padding: 11px 14px;

  border-radius: 14px;

  color: #ffffff;
  font-size: 11px;
  font-weight: 900;

  background:
    linear-gradient(145deg, #3097ff 0%, #1768ff 55%, #0d4fd4 100%);

  box-shadow:
    0 14px 30px rgba(23,104,255,.26);
}

.project-card .exchange-chart-card,
.project-card .exchange-side-badge {
  transition:
    transform .24s ease,
    box-shadow .24s ease;
}

.project-card:hover .exchange-chart-card {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(22,71,143,.12);
}

.project-card:hover .exchange-side-badge {
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .exchange-chart-card {
    left: 16px;
    right: 16px;
    top: 48px;

    padding: 14px 14px 12px;
  }

  .exchange-pair strong {
    font-size: 16px;
  }

  .exchange-side-badge {
    right: 16px;
    bottom: 16px;

    font-size: 10px;
  }
}

/* =========================================================
   CHAINLAB TOP STRENGTH CARDS - STRONG + FLOAT
   ========================================================= */

.strength-item {
  position: relative;

  cursor: pointer;

  border-radius: 18px;

  transition:
    transform .23s ease,
    box-shadow .23s ease,
    background .23s ease;
}


/* 마우스 올리거나 클릭했을 때 위로 */

.strength-item:hover,
.strength-item.is-active {
  transform: translateY(-8px);

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7faff 100%
    );

  box-shadow:
    0 20px 42px
    rgba(20,72,155,.14);
}


/* 아이콘 더 진하게 */

.strength-icon {
  width: 60px !important;
  height: 60px !important;

  flex-shrink: 0 !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 18px !important;

  background:
    linear-gradient(
      145deg,
      #1d7fff 0%,
      #125de8 48%,
      #083aa8 100%
    ) !important;

  box-shadow:
    0 12px 28px
    rgba(10,74,190,.32) !important;

  transition:
    transform .23s ease,
    box-shadow .23s ease,
    background .23s ease;
}


/* 흰색 SVG 선 더 굵게 */

.strength-icon svg {
  width: 31px !important;
  height: 31px !important;

  fill: none !important;

  stroke: #ffffff !important;

  stroke-width: 2.7 !important;

  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}


/* hover / click 시 아이콘 강조 */

.strength-item:hover .strength-icon,
.strength-item.is-active .strength-icon {
  transform:
    translateY(-3px)
    scale(1.07);

  background:
    linear-gradient(
      145deg,
      #1484ff,
      #0b55d8,
      #052f91
    ) !important;

  box-shadow:
    0 16px 34px
    rgba(10,73,190,.40) !important;
}


/* 제목도 조금 더 선명하게 */

.strength-item strong {
  color: #0c4aa4 !important;

  font-size: 16px !important;

  font-weight: 900 !important;
}


.strength-item span {
  color: #6d7d95 !important;

  font-size: 12px !important;

  font-weight: 550 !important;
}


@media(max-width:600px) {

  .strength-item:hover,
  .strength-item.is-active {
    transform: translateY(-4px);
  }

  .strength-icon {
    width: 54px !important;
    height: 54px !important;
  }

  .strength-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

}

/* =========================================================
   PROJECT 02 - LISTING SUPPORT VISUAL
   ========================================================= */

.visual-listing-support {
  background:
    radial-gradient(circle at 18% 18%, rgba(55,168,255,.18), transparent 28%),
    radial-gradient(circle at 85% 78%, rgba(23,104,255,.14), transparent 32%),
    linear-gradient(135deg, #eff7ff 0%, #fbfdff 100%);
}

.listing-support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;
}

.support-pill,
.support-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;

  border-radius: 999px;

  font-size: 10px;
  font-weight: 800;
}

.support-pill {
  color: #1768ff;
  background: rgba(23,104,255,.10);
}

.support-status {
  color: #ffffff;
  background: linear-gradient(145deg, #1e2c49, #314a76);
}

.listing-support-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 16px;

  margin-top: 18px;
}

.listing-doc-card {
  flex: 1 1 auto;

  padding: 15px 15px 14px;

  border-radius: 18px;

  background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);

  box-shadow:
    0 14px 34px rgba(22,71,143,.08);
}

.doc-top {
  display: flex;
  gap: 6px;
}

.doc-top span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #d1def0;
}

.doc-title {
  margin-top: 14px;

  color: #16365f;
  font-size: 17px;
  font-weight: 900;
}

.doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 10px;
  padding: 10px 11px;

  border-radius: 12px;

  background: #f4f8fd;
}

.doc-row b {
  color: #355273;
  font-size: 11px;
  font-weight: 800;
}

.check-on {
  width: 18px;
  height: 18px;

  display: inline-block;

  border-radius: 50%;

  background:
    linear-gradient(145deg, #3097ff 0%, #1768ff 55%, #0d4fd4 100%);

  position: relative;
}

.check-on::after {
  content: '';

  position: absolute;
  left: 5px;
  top: 3px;

  width: 5px;
  height: 8px;

  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: rotate(45deg);
}

.listing-exchange-stack {
  width: 112px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exchange-badge {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 10px;

  border-radius: 14px;

  color: #264364;
  font-size: 10px;
  font-weight: 900;

  background: rgba(255,255,255,.92);

  box-shadow:
    0 10px 22px rgba(22,71,143,.06);
}

.listing-support-bottom {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10px;

  margin-top: 14px;
}

.support-mini-card {
  padding: 12px 13px;

  border-radius: 14px;

  background: rgba(255,255,255,.82);

  box-shadow:
    0 10px 22px rgba(22,71,143,.05);
}

.support-mini-card small {
  display: block;

  color: #8ea1bc;
  font-size: 9px;
  font-weight: 800;
}

.support-mini-card strong {
  display: block;

  margin-top: 5px;

  color: #234062;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
}

.support-highlight {
  background:
    linear-gradient(145deg, #3097ff 0%, #1768ff 55%, #0d4fd4 100%);
}

.support-highlight small,
.support-highlight strong {
  color: #ffffff;
}

.project-card .listing-doc-card,
.project-card .exchange-badge,
.project-card .support-mini-card {
  transition:
    transform .24s ease,
    box-shadow .24s ease;
}

.project-card:hover .listing-doc-card {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(22,71,143,.12);
}

.project-card:hover .exchange-badge {
  transform: translateY(-3px);
}

.project-card:hover .support-mini-card {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .listing-support-main {
    gap: 10px;
  }

  .listing-exchange-stack {
    width: 88px;
    gap: 8px;
  }

  .exchange-badge {
    min-height: 34px;
    font-size: 9px;
  }

  .listing-support-bottom {
    grid-template-columns: 1fr;
  }

  .doc-title {
    font-size: 15px;
  }

  .doc-row b {
    font-size: 10px;
  }
}

/* =========================================================
   HERO CENTER LOGO SIZE UP
   ========================================================= */

/* 가운데 메인 박스 안 로고 크게 */
.network-center img,
.hero-network-center img,
.hero-core img,
.center-logo img,
.orbit-center img,
.hero-orbit-center img {
  width: 120px !important;
  max-width: 70% !important;
  height: auto !important;

  transform: scale(1.25) !important;
  transform-origin: center center !important;
}


/* 혹시 텍스트 로고 구조일 경우 */
.network-center .logo-text,
.hero-network-center .logo-text,
.hero-core .logo-text,
.center-logo .logo-text,
.orbit-center .logo-text,
.hero-orbit-center .logo-text {
  font-size: 24px !important;
  font-weight: 900 !important;
  letter-spacing: .4px !important;
}


/* 모바일에서는 너무 커지지 않게 살짝만 축소 */
@media (max-width: 768px) {
  .network-center img,
  .hero-network-center img,
  .hero-core img,
  .center-logo img,
  .orbit-center img,
  .hero-orbit-center img {
    width: 96px !important;
    max-width: 68% !important;

    transform: scale(1.15) !important;
  }
}

/* =========================================================
   CHAINLAB COMPANY INTRO
   ========================================================= */

.company-intro {
  padding:
    90px 0 95px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );
}


.company-intro-head {
  margin-bottom: 38px;
}


.company-intro-head .section-tag {
  display: block;

  margin-bottom: 13px;

  color: #1768ff;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1px;
}


.company-intro-head h2 {
  margin: 0;

  color: #07152d;

  font-size:
    clamp(34px,3.7vw,48px);

  font-weight: 900;

  line-height: 1.18;

  letter-spacing: -2.3px;
}


/* 2개 카드 */

.company-stats {
  display: grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 20px;
}


.company-stat-card {
  min-height: 225px;

  display: grid;

  grid-template-columns:
    160px 1fr;

  align-items: center;

  gap: 28px;

  padding:
    34px 36px;

  border:
    1px solid #e2eaf5;

  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 8px 25px
    rgba(26,73,145,.045);

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}


.company-stat-card:hover {
  transform:
    translateY(-7px);

  border-color:
    #b8d1f8;

  box-shadow:
    0 22px 45px
    rgba(23,83,177,.12);
}


/* 숫자 */

.company-stat-number {
  min-height: 120px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 20px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #329cff 0%,
      #1768ff 55%,
      #0d4fd4 100%
    );

  box-shadow:
    0 14px 30px
    rgba(23,104,255,.24);
}


.company-stat-number small {
  margin-bottom: 3px;

  color:
    rgba(255,255,255,.78);

  font-size: 12px;

  font-weight: 700;
}


.company-stat-number strong {
  color: #ffffff;

  font-size: 35px;

  font-weight: 900;

  letter-spacing: -1.3px;
}


/* 내용 */

.company-stat-content h3 {
  margin:
    0 0 13px;

  color: #153566;

  font-size: 21px;

  font-weight: 850;

  letter-spacing: -.5px;
}


.company-stat-content p {
  margin: 0;

  color: #748096;

  font-size: 13px;

  line-height: 1.8;

  word-break: keep-all;
}


/* 모바일 */

@media(max-width:900px) {

  .company-stats {
    grid-template-columns: 1fr;
  }

}


@media(max-width:600px) {

  .company-intro {
    padding:
      70px 0;
  }

  .company-intro-head h2 {
    font-size: 31px;

    letter-spacing: -1.7px;
  }

  .company-stat-card {
    grid-template-columns: 1fr;

    padding:
      24px;

    gap: 20px;
  }

  .company-stat-number {
    min-height: 100px;
  }

}

/* =========================================================
   COMPANY INTRO + STRENGTH unified section
   ========================================================= */

/* 회사소개 아래 여백 축소 */
.company-intro {
  padding-bottom: 32px !important;
}


/* 강점 영역을 회사소개 쪽으로 올림 */
.strength-section {
  margin-top: 0 !important;

  padding-top: 6px !important;
  padding-bottom: 45px !important;

  border-top: 0 !important;

  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    ) !important;
}


/* 3개 강점 영역을 살짝 위로 */
.strength-grid {
  position: relative;

  top: -8px;
}


/* 회사소개 카드와 강점 영역 연결감 */
.company-intro + .strength-section {
  margin-top: -1px !important;
}


/* 모바일에서는 너무 붙지 않게 */
@media (max-width: 600px) {

  .company-intro {
    padding-bottom: 24px !important;
  }

  .strength-section {
    padding-top: 10px !important;
  }

  .strength-grid {
    top: 0;
  }

}

/* =========================================================
   SERVICES TITLE ALIGNMENT
   ========================================================= */

.services .center-title {
  text-align: left !important;

  margin-bottom: 38px !important;
}

.services .center-title h2 {
  text-align: left !important;
}

.services .center-title p {
  max-width: 720px !important;

  margin-left: 0 !important;
  margin-right: 0 !important;

  text-align: left !important;
}

.services .center-title span {
  text-align: left !important;
}

/* =========================================================
   CHAINLAB SECTION TITLE CENTER ALIGN
   ========================================================= */

/* 일반 섹션 제목 */
.center-title,
.company-intro-head,
.process > .wrap > .section-tag,
.process > .wrap > h2 {
  text-align: center !important;
}

/* split-title 구조 */
.split-title {
  display: block !important;
  text-align: center !important;
}

.split-title h2 {
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.split-title p {
  max-width: 850px !important;
  min-width: 0 !important;

  margin:
    14px auto 0 !important;

  text-align: center !important;

  white-space: normal !important;
}


/* 서비스 */
.services .center-title {
  text-align: center !important;
}

.services .center-title h2,
.services .center-title p,
.services .center-title span {
  text-align: center !important;
}

.services .center-title p {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* 회사소개 */
.company-intro-head {
  text-align: center !important;
}


/* 프로세스 */
.process > .wrap > .section-tag {
  display: block;
  text-align: center !important;
}

.process > .wrap > h2 {
  text-align: center !important;
}


/* 생태계 */
.ecosystem .split-title h2,
.ecosystem .split-title p {
  white-space: normal !important;
  text-align: center !important;
}


/* 거래소 상장 */
.exchange-title h2,
.exchange-title p {
  text-align: center !important;
}


/* 프로젝트 */
.projects .split-title h2,
.projects .project-intro-text {
  max-width: 900px !important;
  min-width: 0 !important;

  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center !important;

  white-space: normal !important;
}


/* FAQ */
.faq-title h2,
.faq-title p {
  text-align: center !important;
}


/* =========================================================
   ECOSYSTEM TITLE CENTER ALIGN
   ========================================================= */

.ecosystem-title-wrap {
  margin-bottom: 30px;

  text-align: center;
}

.ecosystem-title-wrap h2 {
  margin: 0;

  color: #07152d;

  font-size: 32px;
  font-weight: 900;

  line-height: 1.2;

  letter-spacing: -1.8px;

  word-break: keep-all;
}

.ecosystem-title-wrap p {
  margin: 12px 0 0;

  color: #8490a3;

  font-size: 13px;

  line-height: 1.6;

  text-align: center;

  word-break: keep-all;
}

@media (max-width: 900px) {

  .ecosystem-title-wrap h2 {
    font-size: 29px;
  }

}

@media (max-width: 600px) {

  .ecosystem-title-wrap {
    margin-bottom: 24px;
  }

  .ecosystem-title-wrap h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .ecosystem-title-wrap p {
    font-size: 12px;
  }

}

/* =========================================================
   CHAINLAB SECTION LABEL CENTER ALIGN
   ECOSYSTEM / EXCHANGE LISTING / CONTENTS
   ========================================================= */


/* ECOSYSTEM 상단 라벨 */
.ecosystem > .wrap > .section-tag {
  display: block !important;

  width: 100% !important;

  margin-bottom: 12px !important;

  text-align: center !important;
}


/* EXCHANGE LISTING 상단 라벨 */
.exchange-listing > .wrap > .section-tag {
  display: block !important;

  width: 100% !important;

  margin-bottom: 12px !important;

  text-align: center !important;
}


/* PROJECTS / CONTENTS 상단 라벨 */
.projects > .wrap > .section-tag {
  display: block !important;

  width: 100% !important;

  margin-bottom: 12px !important;

  text-align: center !important;
}


/* 프로젝트 제목 영역 전체 중앙 */
.projects .split-title {
  display: block !important;

  text-align: center !important;
}


.projects .split-title h2 {
  width: 100% !important;

  max-width: none !important;

  margin:
    0 auto !important;

  text-align: center !important;
}


.projects .project-intro-text {
  width: 100% !important;

  min-width: 0 !important;
  max-width: 950px !important;

  margin:
    13px auto 0 !important;

  text-align: center !important;

  white-space: normal !important;
}


/* 거래소 제목 영역도 확실하게 중앙 */
.exchange-listing .exchange-title {
  display: block !important;

  text-align: center !important;
}


.exchange-listing .exchange-title h2 {
  width: 100% !important;

  margin:
    0 auto !important;

  text-align: center !important;
}


.exchange-listing .exchange-title p {
  width: 100% !important;

  max-width: 850px !important;

  margin:
    12px auto 0 !important;

  text-align: center !important;

  white-space: normal !important;
}


/* ECOSYSTEM 제목/설명 중앙 */
.ecosystem-title-wrap {
  text-align: center !important;
}


.ecosystem-title-wrap h2,
.ecosystem-title-wrap p {
  width: 100% !important;

  margin-left: auto !important;
  margin-right: auto !important;

  text-align: center !important;
}


/* =========================================================
   CHAINLAB section subtitles
   ========================================================= */

.company-intro-sub {
  margin: 14px 0 0;

  color: #6f7d92;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.6;

  text-align: center;
}

.process-subtitle {
  max-width: 760px;

  margin: 14px auto 0;

  color: #7b8799;

  font-size: 14px;
  font-weight: 500;

  line-height: 1.7;

  text-align: center;
}

@media (max-width: 600px) {

  .company-intro-sub,
  .process-subtitle {
    font-size: 13px;
  }

}

/* =========================================================
   CHAINLAB ALL SECTION SUBTITLE UNIFIED STYLE
   ========================================================= */

.company-intro-sub,
.process-subtitle,
.services .center-title p,
.ecosystem-title-wrap p,
.exchange-title p,
.projects .project-intro-text,
.faq-title p,
.split-title p {
  color: #7b8799 !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 14px !important;
  font-weight: 500 !important;

  line-height: 1.7 !important;

  letter-spacing: -0.02em !important;

  text-align: center !important;
}


/* 부제목 위 간격도 통일 */

.company-intro-sub,
.process-subtitle,
.services .center-title p,
.ecosystem-title-wrap p,
.exchange-title p,
.projects .project-intro-text,
.faq-title p {
  margin-top: 13px !important;
}


/* PC에서는 적당한 최대 폭 */

.company-intro-sub,
.process-subtitle,
.services .center-title p,
.ecosystem-title-wrap p,
.exchange-title p,
.projects .project-intro-text,
.faq-title p {
  max-width: 900px !important;

  margin-left: auto !important;
  margin-right: auto !important;

  word-break: keep-all !important;
}


/* 모바일 */

@media (max-width: 600px) {

  .company-intro-sub,
  .process-subtitle,
  .services .center-title p,
  .ecosystem-title-wrap p,
  .exchange-title p,
  .projects .project-intro-text,
  .faq-title p,
  .split-title p {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

}

/* =========================================================
   CHAINLAB NAV FINAL ALIGNMENT
   ========================================================= */

.nav {
  margin-left: auto !important;

  display: flex !important;
  align-items: center !important;

  gap: 32px !important;
}

.nav a {
  color: #42516b;

  font-size: 14px !important;
  font-weight: 700 !important;

  white-space: nowrap;

  transition: color .2s ease;
}

.nav a:hover {
  color: #1768ff;
}


/* 마지막 문의하기만 버튼 느낌 */

.nav a:last-child {
  padding: 12px 20px;

  border-radius: 10px;

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      #2c7dff,
      #1555dc
    );
}


/* footer */

.footer-nav {
  display: flex !important;
  align-items: center !important;

  gap: 20px !important;

  flex-wrap: wrap;
}

.footer-nav a {
  color: #5d6b80;

  font-size: 11px;
  font-weight: 650;

  transition: color .2s ease;
}

.footer-nav a:hover {
  color: #1768ff;
}


/* 모바일 */

@media(max-width:900px) {

  .nav {
    display: none !important;
  }

}

/* =========================================================
   CHAINLAB HERO NETWORK FINAL ORDER
   Clockwise:
   컨설팅 → 토큰 발행 → 생태계 구축
   → 거래소 상장 → 마케팅 → 거래소 개발
   ========================================================= */

/* 1. 좌측 상단 - 컨설팅 */
.node-consulting {
  left: 110px !important;
  right: auto !important;

  top: 26px !important;
  bottom: auto !important;
}


/* 2. 우측 상단 - 토큰 발행 */
.node-token {
  left: auto !important;
  right: 62px !important;

  top: 30px !important;
  bottom: auto !important;
}


/* 3. 우측 중앙 - 생태계 구축 */
.node-ecosystem {
  left: auto !important;
  right: 2px !important;

  top: 205px !important;
  bottom: auto !important;
}


/* 4. 우측 하단 - 거래소 상장 */
.node-listing {
  left: auto !important;
  right: 86px !important;

  top: auto !important;
  bottom: 34px !important;
}


/* 5. 좌측 하단 - 마케팅 */
.node-marketing {
  left: 98px !important;
  right: auto !important;

  top: auto !important;
  bottom: 32px !important;
}


/* 6. 좌측 중앙 - 거래소 개발 */
.node-dev {
  left: 28px !important;
  right: auto !important;

  top: 192px !important;
  bottom: auto !important;
}


/* =========================================================
   CHAINLAB PROJECT STORY - BLUE / WHITE
   ========================================================= */

.story-section {
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    );
}


.story-heading {
  text-align: center;

  margin-bottom: 38px;
}


.story-heading .section-tag {
  display: block;

  margin-bottom: 12px;

  color: #1768ff;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.3px;
}


.story-heading h2 {
  margin: 0;

  color: #07152d;

  font-size:
    clamp(34px,3.8vw,48px);

  font-weight: 900;

  line-height: 1.2;

  letter-spacing: -2px;
}


.story-heading p {
  max-width: 800px;

  margin:
    13px auto 0;

  color: #7b8799;

  font-size: 14px;
  font-weight: 500;

  line-height: 1.7;
}


/* slider */

.story-slider-wrap {
  position: relative;

  padding:
    0 48px;
}


.story-track {
  display: flex;

  gap: 20px;

  overflow-x: auto;

  padding:
    10px 3px 30px;

  scroll-snap-type:
    x mandatory;

  scroll-behavior: smooth;

  scrollbar-width: none;
}


.story-track::-webkit-scrollbar {
  display: none;
}


/* card */

.story-card {
  min-width:
    calc((100% - 40px) / 3);

  scroll-snap-align: start;

  overflow: hidden;

  border:
    1px solid #e3eaf5;

  border-radius: 22px;

  background:
    #ffffff;

  box-shadow:
    0 8px 24px
    rgba(28,74,150,.05);

  transition:
    transform .23s ease,
    box-shadow .23s ease,
    border-color .23s ease;
}


.story-card:hover {
  transform:
    translateY(-7px);

  border-color:
    #b4cff8;

  box-shadow:
    0 22px 46px
    rgba(23,83,177,.13);
}


/* visual */

.story-visual {
  height: 150px;

  position: relative;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 10px;

  overflow: hidden;

  color: #ffffff;
}


.story-visual::before,
.story-visual::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  border:
    1px solid
    rgba(255,255,255,.18);
}


.story-visual::before {
  width: 150px;
  height: 150px;
}


.story-visual::after {
  width: 105px;
  height: 105px;
}


.story-visual-icon {
  position: relative;

  z-index: 2;

  font-size: 35px;
  font-weight: 900;

  transition:
    transform .23s ease;
}


.story-card:hover
.story-visual-icon {
  transform:
    scale(1.12);
}


.story-visual small {
  position: relative;

  z-index: 2;

  color:
    rgba(255,255,255,.75);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


/* 같은 체인랩 블루 계열 안에서 조금씩 변화 */

.visual-blue-1 {
  background:
    linear-gradient(
      145deg,
      #58caff,
      #1768ff 60%,
      #1044bd
    );
}

.visual-blue-2 {
  background:
    linear-gradient(
      145deg,
      #349eff,
      #1359e4 58%,
      #102f88
    );
}

.visual-blue-3 {
  background:
    linear-gradient(
      145deg,
      #59d0ff,
      #1583ef 52%,
      #1250b3
    );
}

.visual-blue-4 {
  background:
    linear-gradient(
      145deg,
      #2e86ff,
      #1253d5 55%,
      #0a2d82
    );
}

.visual-blue-5 {
  background:
    linear-gradient(
      145deg,
      #67ceff,
      #2b79ef 50%,
      #1346aa
    );
}

.visual-blue-6 {
  background:
    linear-gradient(
      145deg,
      #44a9ff,
      #1768ff 55%,
      #153995
    );
}

.visual-blue-7 {
  background:
    linear-gradient(
      145deg,
      #3fc7ee,
      #1676e9 55%,
      #164092
    );
}

.visual-blue-8 {
  background:
    linear-gradient(
      145deg,
      #58b6ff,
      #1c63dc 55%,
      #153a91
    );
}

.visual-blue-9 {
  background:
    linear-gradient(
      145deg,
      #4ac4ff,
      #1675ed 58%,
      #114195
    );
}

.visual-blue-10 {
  background:
    linear-gradient(
      145deg,
      #3ba2ff,
      #155ada 55%,
      #0b2d80
    );
}


/* body */

.story-card-body {
  min-height: 275px;

  padding:
    22px 22px 24px;
}


.story-category {
  display:
    inline-flex;

  align-items: center;

  padding:
    6px 9px;

  border-radius: 7px;

  color: #1768ff;

  font-size: 10px;
  font-weight: 900;

  background: #edf5ff;
}


.story-card h3 {
  margin:
    17px 0 12px;

  color: #17345e;

  font-size: 20px;

  font-weight: 850;

  line-height: 1.45;

  letter-spacing: -.5px;
}


.story-card p {
  margin: 0;

  color: #6f7d92;

  font-size: 13px;

  line-height: 1.8;
}


.story-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;

  margin-top: 20px;
}


.story-tags span {
  padding:
    6px 9px;

  border-radius: 999px;

  color: #617895;

  font-size: 9.5px;
  font-weight: 700;

  background: #f3f7fc;
}


/* arrows */

.story-arrow {
  width: 42px;
  height: 42px;

  position: absolute;

  top: 50%;

  z-index: 4;

  display: grid;

  place-items: center;

  transform:
    translateY(-50%);

  border: 0;

  border-radius: 50%;

  color: #1768ff;

  font-size: 27px;

  cursor: pointer;

  background: #ffffff;

  box-shadow:
    0 10px 26px
    rgba(23,72,151,.13);

  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}


.story-arrow:hover {
  color: #ffffff;

  background: #1768ff;

  transform:
    translateY(-50%)
    scale(1.07);
}


.story-prev {
  left: 0;
}


.story-next {
  right: 0;
}


/* bottom */

.story-bottom {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  margin-top: 4px;
}


.story-bottom > span {
  color: #8b98aa;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.2px;
}


.story-progress {
  width: 110px;
  height: 4px;

  overflow: hidden;

  border-radius: 999px;

  background: #e4edf9;
}


.story-progress i {
  width: 30%;

  height: 100%;

  display: block;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #45b9ff,
      #1768ff
    );

  transition:
    width .2s ease,
    transform .2s ease;
}


/* responsive */

@media(max-width:1000px) {

  .story-card {
    min-width:
      calc((100% - 20px) / 2);
  }

}


@media(max-width:650px) {

  .story-slider-wrap {
    padding:
      0 34px;
  }

  .story-card {
    min-width: 100%;
  }

  .story-arrow {
    width: 36px;
    height: 36px;

    font-size: 23px;
  }

  .story-card-body {
    min-height: auto;
  }

}

/* =========================================================
   FLOATING KAKAO BUTTON IMAGE STYLE
   ========================================================= */

.floating-kakao {
  background: #fee500 !important;
  border: 1px solid rgba(0,0,0,.05) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.14) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.floating-kakao-logo {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  display: block !important;
}

.floating-kakao > svg,
.floating-kakao .floating-kakao-text,
.floating-kakao .kakao-talk-icon {
  display: none !important;
}

@media (max-width: 600px) {
  .floating-kakao-logo {
    width: 30px !important;
    height: 30px !important;
  }
}

/* =========================================================
   CHAINLAB FINAL SECTION TITLE SYSTEM
   ========================================================= */

/*
   메인 Hero H1은 제외
   아래 모든 섹션 메인 제목 통일
*/

.company-intro-head h2,
.services .center-title h2,
.process > .wrap > h2,
.ecosystem-title-wrap h2,
.exchange-listing .exchange-title h2,
.story-heading h2,
.projects .split-title h2,
.faq-title h2 {
  margin: 0 !important;

  color: #07152d !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 40px !important;
  font-weight: 900 !important;

  line-height: 1.2 !important;

  letter-spacing: -2px !important;

  text-align: center !important;

  word-break: keep-all !important;
}


/* =========================================================
   영문/한글 작은 섹션 라벨도 통일
   ========================================================= */

.section-tag,
.services .center-title > span,
.story-heading .section-tag,
.company-intro-head .section-tag {
  display: block !important;

  margin-bottom: 12px !important;

  color: #1768ff !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 11px !important;
  font-weight: 900 !important;

  line-height: 1.4 !important;

  letter-spacing: 1.3px !important;

  text-align: center !important;
}


/* 태블릿 */

@media (max-width: 900px) {

  .company-intro-head h2,
  .services .center-title h2,
  .process > .wrap > h2,
  .ecosystem-title-wrap h2,
  .exchange-listing .exchange-title h2,
  .story-heading h2,
  .projects .split-title h2,
  .faq-title h2 {
    font-size: 34px !important;

    letter-spacing: -1.7px !important;
  }

}


/* 모바일 */

@media (max-width: 600px) {

  .company-intro-head h2,
  .services .center-title h2,
  .process > .wrap > h2,
  .ecosystem-title-wrap h2,
  .exchange-listing .exchange-title h2,
  .story-heading h2,
  .projects .split-title h2,
  .faq-title h2 {
    font-size: 30px !important;

    line-height: 1.25 !important;

    letter-spacing: -1.4px !important;
  }

}

/* =========================================================
   CHAINLAB 12 ECOSYSTEM FINAL GRID
   ========================================================= */

.ecosystem-grid {
  display: grid !important;

  grid-template-columns:
    repeat(6, minmax(0,1fr)) !important;

  gap: 12px !important;

  margin-top: 30px !important;
}


/* 로고 규격 통일 */

.ecosystem-item img {
  width: 48px !important;
  height: 48px !important;

  object-fit: contain !important;
}


/* Base는 네모 로고라 원형 강제 제거 */

.ecosystem-item img[alt="Base"] {
  border-radius: 10px !important;
}


/* 1200 이하 */

@media(max-width:1100px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(4, minmax(0,1fr)) !important;
  }

}


/* 모바일 */

@media(max-width:600px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr)) !important;

    gap: 10px !important;
  }

}

/* =========================================================
   CHAINLAB 12 ECOSYSTEM FINAL GRID
   ========================================================= */

.ecosystem-grid {
  display: grid !important;

  grid-template-columns:
    repeat(6, minmax(0,1fr)) !important;

  gap: 12px !important;

  margin-top: 30px !important;
}


/* 로고 규격 통일 */

.ecosystem-item img {
  width: 48px !important;
  height: 48px !important;

  object-fit: contain !important;
}


/* Base는 네모 로고라 원형 강제 제거 */

.ecosystem-item img[alt="Base"] {
  border-radius: 10px !important;
}


/* 1200 이하 */

@media(max-width:1100px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(4, minmax(0,1fr)) !important;
  }

}


/* 모바일 */

@media(max-width:600px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr)) !important;

    gap: 10px !important;
  }

}

/* =========================================================
   CHAINLAB 16 EXCHANGE GRID
   8 x 2 desktop
   ========================================================= */

.exchange-grid {
  display: grid !important;

  grid-template-columns:
    repeat(8, minmax(0,1fr)) !important;

  gap: 11px !important;
}


/* 로고 크기 통일 */

.exchange-card img {
  width: 48px !important;
  height: 48px !important;

  object-fit: contain !important;
}


/* ULANBIT은 가로형 로고 유지 */

.exchange-card
.ulanbit-exchange-logo {
  width: 92px !important;
  height: 48px !important;

  object-fit: contain !important;

  border-radius: 0 !important;
}


/* 두 번째 줄도 같은 hover */

.exchange-card {
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease !important;
}


.exchange-card:hover {
  transform:
    translateY(-6px) !important;

  border-color:
    #a9caff !important;

  box-shadow:
    0 18px 38px
    rgba(27,79,160,.13) !important;
}


/* 태블릿 */

@media(max-width:1100px) {

  .exchange-grid {
    grid-template-columns:
      repeat(4,minmax(0,1fr)) !important;
  }

}


/* 모바일 */

@media(max-width:600px) {

  .exchange-grid {
    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;

    gap: 10px !important;
  }

}


/* =========================================================
   CHAINLAB SECTION BACKGROUND SYSTEM
   White + Soft Blue Alternating Sections
   ========================================================= */


/* 기본 섹션 전환 */

section {
  position: relative;
}


/* ---------------------------------------------------------
   COMPANY
   회사소개 + 강점 영역
   --------------------------------------------------------- */

#company,
.company-intro {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #f5f9ff 100%
    ) !important;
}


/* 회사소개 아래 강점 영역도 자연스럽게 연결 */

.strength-section,
.strengths,
.company-strength,
.company-features {
  background:
    linear-gradient(
      180deg,
      #f5f9ff 0%,
      #f8fbff 100%
    ) !important;
}


/* ---------------------------------------------------------
   SERVICES
   --------------------------------------------------------- */

#services,
.services {
  background:
    #ffffff !important;
}


/* ---------------------------------------------------------
   PROCESS
   --------------------------------------------------------- */

.process {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #f4f8ff 100%
    ) !important;
}


/* ---------------------------------------------------------
   ECOSYSTEM
   --------------------------------------------------------- */

.ecosystem {
  background:
    #ffffff !important;
}


/* ---------------------------------------------------------
   EXCHANGE LISTING
   --------------------------------------------------------- */

#listing,
.exchange-listing {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #f5f9ff 100%
    ) !important;
}


/* ---------------------------------------------------------
   PROJECT STORY
   --------------------------------------------------------- */

#projects,
.projects,
.project-story,
.story-section {
  background:
    #ffffff !important;
}


/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.faq,
.faq-section {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #f5f9ff 100%
    ) !important;
}


/* ---------------------------------------------------------
   섹션 사이 아주 연한 경계선
   --------------------------------------------------------- */

#company,
#services,
.process,
.ecosystem,
#listing,
#projects,
.faq {
  border-top:
    1px solid
    rgba(27, 104, 255, .055) !important;
}


/* ---------------------------------------------------------
   배경이 연한 블루일 때 카드가 더 또렷하게
   --------------------------------------------------------- */

.process .process-card,
.process .process-item,
.exchange-listing .exchange-card,
.faq .faq-item {
  background:
    rgba(255,255,255,.92) !important;
}


/* ---------------------------------------------------------
   모바일에서도 동일한 분위기 유지
   --------------------------------------------------------- */

@media(max-width:600px) {

  #company,
  .company-intro,
  .process,
  #listing,
  .exchange-listing,
  .faq,
  .faq-section {
    background:
      #f7faff !important;
  }

}




/* =========================================================
   CHAINLAB HERO / COMPANY BACKGROUND FINAL FIX
   ========================================================= */


/* 1. 맨 위 HERO = 완전한 흰색 */

.hero,
.hero-section,
#home {
  background: #ffffff !important;
}


/* Hero 내부에 예전 gradient가 있더라도 제거 */

.hero::before,
.hero::after,
.hero-section::before,
.hero-section::after {
  background-color: transparent;
}


/* 2. 회사소개 = 확실한 연한 블루 */

#company,
.company-intro {
  background:
    linear-gradient(
      180deg,
      #f4f8ff 0%,
      #f7faff 100%
    ) !important;
}


/* 3. 회사소개 바로 아래 강점 3개도 같은 계열로 연결 */

.strength-section,
.strengths,
.company-strength,
.company-features {
  background:
    #f7faff !important;
}


/* 4. HERO → 회사소개 경계 아주 미세하게 */

#company,
.company-intro {
  border-top:
    1px solid rgba(25, 103, 255, .07) !important;
}


/* 모바일도 동일 */

@media(max-width:600px) {

  .hero,
  .hero-section,
  #home {
    background: #ffffff !important;
  }

  #company,
  .company-intro,
  .strength-section,
  .strengths,
  .company-strength,
  .company-features {
    background: #f5f9ff !important;
  }

}



/* =========================================================
   CHAINLAB FOOTER FINAL COLOR
   ========================================================= */

/* 맨 하단 Footer */

.site-footer,
.footer,
footer {
  background:
    linear-gradient(
      135deg,
      #071426 0%,
      #0b1d36 55%,
      #0c2344 100%
    ) !important;

  color: #ffffff !important;

  border-top:
    1px solid rgba(255,255,255,.08) !important;
}


/* Footer 회사 정보 */

.site-footer p,
.site-footer span,
.site-footer address,
.footer p,
.footer span,
.footer address,
footer p,
footer span,
footer address {
  color:
    rgba(255,255,255,.65) !important;
}


/* Footer 메뉴 */

.site-footer a,
.footer a,
footer a {
  color:
    rgba(255,255,255,.78) !important;

  transition:
    color .2s ease,
    opacity .2s ease !important;
}


.site-footer a:hover,
.footer a:hover,
footer a:hover {
  color:
    #ffffff !important;
}


/* Footer 제목 / 회사명 */

.site-footer strong,
.site-footer h3,
.site-footer h4,
.footer strong,
.footer h3,
.footer h4,
footer strong,
footer h3,
footer h4 {
  color: #ffffff !important;
}


/* Footer 내부 구분선 */

.site-footer hr,
.footer hr,
footer hr {
  border-color:
    rgba(255,255,255,.09) !important;
}


/* 저작권 */

.footer-copy,
.footer-copyright,
.copyright {
  color:
    rgba(255,255,255,.42) !important;
}


/* 모바일 */

@media(max-width:600px) {

  .site-footer,
  .footer,
  footer {
    background:
      #08182d !important;
  }

}


/* =========================================================
   CHAINLAB LIGHT FOOTER FINAL
   ========================================================= */

.site-footer,
.footer,
footer {
  background:
    linear-gradient(
      180deg,
      #f3f7fc 0%,
      #edf3fa 100%
    ) !important;

  color: #17263d !important;

  border-top:
    1px solid #dfe8f3 !important;
}


/* 회사정보 */

.site-footer p,
.site-footer span,
.site-footer address,
.footer p,
.footer span,
.footer address,
footer p,
footer span,
footer address {
  color: #6f7d90 !important;
}


/* 메뉴 */

.site-footer a,
.footer a,
footer a {
  color: #52647a !important;

  transition:
    color .2s ease !important;
}

.site-footer a:hover,
.footer a:hover,
footer a:hover {
  color: #1768ff !important;
}


/* 회사명 / 제목 */

.site-footer strong,
.site-footer h3,
.site-footer h4,
.footer strong,
.footer h3,
.footer h4,
footer strong,
footer h3,
footer h4 {
  color: #102039 !important;
}


/* 구분선 */

.site-footer hr,
.footer hr,
footer hr {
  border-color:
    #dce6f1 !important;
}


/* Copyright */

.footer-copy,
.footer-copyright,
.copyright {
  color: #97a3b2 !important;
}


/* 로고는 원본 색상 그대로 */

.site-footer img,
.footer img,
footer img {
  filter: none !important;
  opacity: 1 !important;
}


/* 모바일 */

@media(max-width:600px) {

  .site-footer,
  .footer,
  footer {
    background: #f1f6fc !important;
  }

}


/* =========================================================
   CHAINLAB FOOTER COMPANY INFO EMPHASIS
   ========================================================= */

/* 회사 정보 영역 전체 가독성 */

footer .footer-company,
footer .company-info,
footer .footer-info,
.site-footer .footer-company,
.site-footer .company-info,
.site-footer .footer-info {
  color: #263a55 !important;
}


/* 회사정보 각 줄 */

footer .footer-company p,
footer .company-info p,
footer .footer-info p,
.site-footer .footer-company p,
.site-footer .company-info p,
.site-footer .footer-info p {
  margin: 6px 0 !important;

  color: #354a65 !important;

  font-size: 14px !important;
  font-weight: 600 !important;

  line-height: 1.7 !important;
  letter-spacing: -0.2px !important;
}


/* 회사명은 한 단계 더 강조 */

footer .footer-company strong,
footer .company-info strong,
footer .footer-info strong,
.site-footer .footer-company strong,
.site-footer .company-info strong,
.site-footer .footer-info strong {
  color: #10233f !important;

  font-size: 15px !important;
  font-weight: 800 !important;
}


/* 주소 */

footer address,
.site-footer address {
  color: #354a65 !important;

  font-size: 14px !important;
  font-weight: 600 !important;

  font-style: normal !important;
  line-height: 1.7 !important;
}


/* 이메일은 체인랩 블루로 강조 */

footer a[href^="mailto:"],
.site-footer a[href^="mailto:"] {
  color: #1768ff !important;

  font-weight: 750 !important;

  text-decoration: none !important;
}

footer a[href^="mailto:"]:hover,
.site-footer a[href^="mailto:"]:hover {
  color: #0b4edb !important;

  text-decoration: underline !important;
}


/* 모바일 */

@media(max-width:600px) {

  footer .footer-company p,
  footer .company-info p,
  footer .footer-info p,
  footer address,
  .site-footer .footer-company p,
  .site-footer .company-info p,
  .site-footer .footer-info p,
  .site-footer address {
    font-size: 13px !important;
  }

}


/* =========================================================
   CHAINLAB FOOTER TEXT SOFT FINAL
   ========================================================= */

/* 회사정보 - 너무 진하지 않게 */

footer .footer-company p,
footer .company-info p,
footer .footer-info p,
.site-footer .footer-company p,
.site-footer .company-info p,
.site-footer .footer-info p,
footer address,
.site-footer address {
  color: #66768a !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 13.5px !important;
  font-weight: 500 !important;

  line-height: 1.75 !important;
  letter-spacing: -0.15px !important;
}


/* 회사명 / 대표 등 강조도 한 단계 낮춤 */

footer .footer-company strong,
footer .company-info strong,
footer .footer-info strong,
.site-footer .footer-company strong,
.site-footer .company-info strong,
.site-footer .footer-info strong {
  color: #3d5068 !important;

  font-size: inherit !important;
  font-weight: 600 !important;
}


/* 이메일도 너무 튀지 않는 부드러운 블루 */

footer a[href^="mailto:"],
.site-footer a[href^="mailto:"] {
  color: #4b72b2 !important;
  font-weight: 550 !important;
}


/* Footer 메뉴도 살짝 부드럽게 */

footer nav a,
.site-footer nav a,
.footer-nav a {
  color: #718094 !important;
  font-weight: 500 !important;
}


/* copyright는 더 연하게 */

.footer-copy,
.footer-copyright,
.copyright {
  color: #a2adba !important;
  font-weight: 400 !important;
}


/* =========================================================
   CHAINLAB 16 ECOSYSTEM FINAL GRID
   ========================================================= */

.ecosystem-grid {
  display: grid !important;
  grid-template-columns:
    repeat(8, minmax(0,1fr)) !important;

  gap: 11px !important;
}


/* 로고 */

.ecosystem-item img,
.ecosystem-text-logo {
  width: 48px !important;
  height: 48px !important;
}


/* 임시 Robinhood Chain 텍스트 아이콘
   공식 로고 확보 후 교체 예정 */

.robinhood-text-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 12px !important;

  background: #000 !important;
  color: #ccff00 !important;

  font-family:
    "Pretendard",
    sans-serif !important;

  font-size: 15px !important;
  font-weight: 800 !important;

  letter-spacing: -.5px !important;
}


/* 긴 이름 대응 */

.ecosystem-item span {
  text-align: center !important;
  word-break: keep-all !important;
}

.ecosystem-item span {
  font-size: 13px !important;
}

.ecosystem-item:last-child span {
  font-size: 11.5px !important;
}


/* 면책 */

.ecosystem-disclaimer {
  margin: 22px auto 0 !important;

  max-width: 900px !important;

  color: #a2adba !important;

  font-size: 9.5px !important;
  font-weight: 400 !important;

  line-height: 1.6 !important;

  text-align: center !important;

  word-break: keep-all !important;
}


/* 태블릿 */

@media(max-width:1100px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(4,minmax(0,1fr)) !important;
  }

}


/* 모바일 */

@media(max-width:600px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(2,minmax(0,1fr)) !important;

    gap: 10px !important;
  }

  .ecosystem-disclaimer {
    font-size: 9px !important;
  }

}


/* =========================================================
   CHAINLAB ECOSYSTEM 16 CARD LAYOUT FIX
   ========================================================= */

.ecosystem-grid {
  width: 100% !important;
  display: grid !important;

  grid-template-columns:
    repeat(8, minmax(0, 1fr)) !important;

  grid-auto-flow: row !important;

  gap: 12px !important;

  margin: 32px auto 0 !important;
  padding: 0 !important;
}


/* 16개 카드 모두 동일 규격 */

.ecosystem-grid .ecosystem-item {
  position: relative !important;

  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  float: none !important;

  width: 100% !important;
  min-width: 0 !important;
  min-height: 122px !important;

  margin: 0 !important;
  padding: 16px 8px !important;

  box-sizing: border-box !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;

  border: 1px solid #dce7f5 !important;
  border-radius: 14px !important;

  background: #ffffff !important;

  box-shadow: none !important;

  text-decoration: none !important;

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease !important;
}


.ecosystem-grid .ecosystem-item:hover {
  transform: translateY(-5px) !important;

  border-color: #aacbff !important;

  box-shadow:
    0 14px 30px rgba(39,91,170,.10) !important;
}


/* 로고 */

.ecosystem-grid .ecosystem-item img,
.ecosystem-grid .ecosystem-text-logo {
  width: 48px !important;
  height: 48px !important;

  max-width: 48px !important;
  max-height: 48px !important;

  object-fit: contain !important;

  margin: 0 0 9px !important;

  flex: 0 0 auto !important;
}


/* 이름 */

.ecosystem-grid .ecosystem-item span {
  display: block !important;

  margin: 0 !important;

  color: #19355c !important;

  font-size: 13px !important;
  font-weight: 700 !important;

  line-height: 1.25 !important;

  text-align: center !important;

  word-break: keep-all !important;
}


/* Explorer */

.ecosystem-grid .ecosystem-item small {
  display: block !important;

  margin-top: 7px !important;

  color: #a5b5ca !important;

  font-size: 8px !important;
  font-weight: 500 !important;
}


/* Robinhood 임시 아이콘 */

.ecosystem-grid .robinhood-text-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #050505 !important;
  color: #caff00 !important;

  border-radius: 11px !important;

  font-size: 15px !important;
  font-weight: 800 !important;
}


/* 긴 Hyperliquid 이름 */

.ecosystem-grid
.ecosystem-item:last-child span {
  font-size: 11px !important;
}


/* 태블릿 */

@media(max-width:1100px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(4, minmax(0,1fr)) !important;
  }

}


/* 모바일 */

@media(max-width:600px) {

  .ecosystem-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr)) !important;

    gap: 10px !important;
  }

  .ecosystem-grid .ecosystem-item {
    min-height: 120px !important;
  }

}


/* =========================================================
   CHAINLAB HEADER BRAND LOCKUP
   ========================================================= */

.header-brand-lockup {
  display: inline-flex !important;
  align-items: center !important;

  gap: 14px !important;

  white-space: nowrap !important;
}


/* 기존 로고 크기 유지 */

.header-brand-lockup > img {
  display: block !important;

  width: auto !important;
  max-height: 42px !important;

  object-fit: contain !important;

  flex: 0 0 auto !important;
}


/* 로고와 설명 사이 얇은 구분선 */

.header-brand-divider {
  display: block !important;

  width: 1px !important;
  height: 25px !important;

  background:
    #dce4ee !important;

  flex: 0 0 auto !important;
}


/* 작은 영문 회사 설명 */

.header-brand-tagline {
  display: block !important;

  color: #8a97a8 !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 9.5px !important;
  font-weight: 600 !important;

  line-height: 1.4 !important;

  letter-spacing: 1.15px !important;

  text-transform: uppercase !important;
}


/* hover 시 문구가 너무 튀지 않게 */

a:hover .header-brand-tagline {
  color: #718199 !important;
}


/* 태블릿에서는 조금 작게 */

@media(max-width:1100px) {

  .header-brand-lockup {
    gap: 10px !important;
  }

  .header-brand-tagline {
    font-size: 8.5px !important;
    letter-spacing: .8px !important;
  }

}


/* 모바일은 기존 로고만 깔끔하게 */

@media(max-width:760px) {

  .header-brand-divider,
  .header-brand-tagline {
    display: none !important;
  }

  .header-brand-lockup {
    gap: 0 !important;
  }

}


/* =========================================================
   CHAINLAB CONSULTATION FORM
   ========================================================= */

.consultation-section {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7faff 100%
    ) !important;
}

.consultation-heading {
  text-align: center;
  margin-bottom: 34px;
}

.consultation-heading h2 {
  margin: 0;

  color: #07152d;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif;

  font-size: 40px;
  font-weight: 900;

  line-height: 1.2;
  letter-spacing: -2px;
}

.consultation-heading p {
  margin: 14px 0 0;

  color: #7b8799;

  font-size: 14px;
  font-weight: 500;

  line-height: 1.7;
}


.consultation-box {
  max-width: 920px;

  margin: 0 auto;
  padding: 38px;

  background: #ffffff;

  border:
    1px solid #e1e9f3;

  border-radius: 22px;

  box-shadow:
    0 20px 60px
    rgba(25, 72, 140, .08);
}


.consultation-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap: 22px 20px;
}


.consultation-field {
  display: flex;
  flex-direction: column;

  gap: 8px;
}


.consultation-field label {
  color: #253850;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: -.2px;
}


.consultation-field label b {
  color: #1768ff;
}


.consultation-field input,
.consultation-field select,
.consultation-field textarea {
  width: 100%;

  box-sizing: border-box;

  border:
    1px solid #dce5f0;

  border-radius: 12px;

  background: #fbfdff;

  color: #17263d;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif;

  font-size: 14px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.consultation-field input,
.consultation-field select {
  height: 52px;

  padding: 0 15px;
}


.consultation-field textarea {
  padding: 15px;

  min-height: 150px;

  resize: vertical;

  line-height: 1.65;
}


.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus {
  background: #ffffff;

  border-color: #659cff;

  box-shadow:
    0 0 0 4px
    rgba(23,104,255,.08);
}


.consultation-message {
  margin-top: 22px;
}


.consultation-agree {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  margin-top: 18px;

  color: #758398;

  font-size: 12px;
  font-weight: 500;

  line-height: 1.6;

  cursor: pointer;
}


.consultation-agree input {
  margin-top: 2px;

  accent-color: #1768ff;
}


.consultation-actions {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;

  margin-top: 26px;
}


.consultation-submit,
.consultation-kakao {
  min-height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif;

  font-size: 14px;
  font-weight: 800;

  text-decoration: none;

  cursor: pointer;
}


.consultation-submit {
  border: 0;

  background:
    linear-gradient(
      135deg,
      #1768ff,
      #0b55dc
    );

  color: #ffffff;

  box-shadow:
    0 12px 28px
    rgba(23,104,255,.20);
}


.consultation-submit:hover {
  transform: translateY(-2px);
}


.consultation-kakao {
  border:
    1px solid #e1c900;

  background: #fee500;

  color: #261f00;
}


.consultation-note {
  margin: 15px 0 0;

  color: #a0abba;

  font-size: 10px;

  text-align: center;
}


@media(max-width:700px) {

  .consultation-heading h2 {
    font-size: 30px;
    letter-spacing: -1.4px;
  }

  .consultation-box {
    padding: 24px 18px;

    border-radius: 17px;
  }

  .consultation-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .consultation-message {
    margin-top: 16px;
  }

  .consultation-actions {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   CHAINLAB CONSULTATION SINGLE BUTTON
   ========================================================= */

.consultation-actions {
  display: block !important;
}

.consultation-submit {
  width: 100% !important;
  min-height: 56px !important;

  font-size: 15px !important;
  font-weight: 800 !important;

  border-radius: 13px !important;
}


/* =========================================================
   CHAINLAB CONSULTATION BUTTON FINAL
   ========================================================= */

.consultation-actions {
  width: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-top: 28px !important;
}


/* 무료 상담 신청 버튼 */

.consultation-actions .consultation-submit {
  width: 100% !important;
  max-width: 640px !important;

  min-height: 58px !important;

  margin: 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  border-radius: 14px !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 15px !important;
  font-weight: 800 !important;

  text-align: center !important;

  cursor: pointer !important;
}


/* 모바일에서는 거의 전체 너비 */

@media(max-width:700px) {

  .consultation-actions .consultation-submit {
    max-width: none !important;
    width: 100% !important;

    min-height: 56px !important;
  }

}


/* =========================================================
   CHAINLAB SIMPLE CONTACT CTA
   ========================================================= */

.chainlab-contact-cta {
  padding: 82px 20px !important;

  background:
    linear-gradient(
      135deg,
      #1768ff 0%,
      #0b57df 55%,
      #094ac2 100%
    ) !important;

  text-align: center !important;
}


.chainlab-contact-inner {
  max-width: 760px !important;

  margin: 0 auto !important;
}


.contact-small-title {
  display: block !important;

  margin-bottom: 12px !important;

  color:
    rgba(255,255,255,.65) !important;

  font-size: 10px !important;
  font-weight: 800 !important;

  letter-spacing: 1.5px !important;
}


.chainlab-contact-inner h2 {
  margin: 0 !important;

  color: #ffffff !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 40px !important;
  font-weight: 900 !important;

  line-height: 1.2 !important;

  letter-spacing: -2px !important;
}


.chainlab-contact-inner p {
  margin: 15px auto 26px !important;

  color:
    rgba(255,255,255,.78) !important;

  font-size: 14px !important;
  font-weight: 500 !important;

  line-height: 1.7 !important;

  word-break: keep-all !important;
}


.chainlab-contact-button {
  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  min-width: 230px !important;
  min-height: 54px !important;

  padding: 0 28px !important;

  background: #ffffff !important;

  color: #1768ff !important;

  border-radius: 13px !important;

  font-size: 14px !important;
  font-weight: 800 !important;

  text-decoration: none !important;

  box-shadow:
    0 14px 32px
    rgba(3,30,91,.16) !important;

  transition:
    transform .2s ease,
    box-shadow .2s ease !important;
}


.chainlab-contact-button:hover {
  transform:
    translateY(-3px) !important;

  box-shadow:
    0 18px 38px
    rgba(3,30,91,.22) !important;
}


.chainlab-contact-inner small {
  display: block !important;

  margin-top: 14px !important;

  color:
    rgba(255,255,255,.55) !important;

  font-size: 10px !important;
  font-weight: 500 !important;
}


@media(max-width:600px) {

  .chainlab-contact-cta {
    padding:
      64px 18px !important;
  }

  .chainlab-contact-inner h2 {
    font-size: 30px !important;

    letter-spacing:
      -1.4px !important;
  }

  .chainlab-contact-button {
    width: 100% !important;

    max-width: 320px !important;
  }

}


/* =========================================================
   CHAINLAB CONTACT CTA - SOFT BLUE FINAL
   ========================================================= */

.chainlab-contact-cta {
  padding: 82px 20px !important;

  background:
    linear-gradient(
      135deg,
      #edf5ff 0%,
      #e5f0ff 50%,
      #dcecff 100%
    ) !important;

  border-top:
    1px solid #d5e5fa !important;

  text-align: center !important;
}


/* CONTACT 작은 영문 */

.chainlab-contact-cta .contact-small-title {
  color: #4f83d9 !important;
}


/* 프로젝트 상담 제목 */

.chainlab-contact-inner h2 {
  color: #102644 !important;
}


/* 설명 */

.chainlab-contact-inner p {
  color: #65768c !important;
}


/* 하단 작은 안내 */

.chainlab-contact-inner small {
  color: #8797aa !important;
}


/* 두 버튼 영역 */

.chainlab-contact-actions {
  width: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 12px !important;

  margin-top: 26px !important;
}


/* 공통 버튼 */

.chainlab-contact-actions .chainlab-contact-button {
  width: 230px !important;
  min-width: 0 !important;
  min-height: 54px !important;

  padding: 0 24px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  box-sizing: border-box !important;

  border-radius: 13px !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 14px !important;
  font-weight: 800 !important;

  text-decoration: none !important;

  cursor: pointer !important;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease !important;
}


/* 카카오 */

.chainlab-kakao-button {
  background: #fee500 !important;

  color: #241f00 !important;

  border:
    1px solid #ead300 !important;

  box-shadow:
    0 10px 25px
    rgba(145,127,0,.10) !important;
}


/* 전화 상담 */

.chainlab-phone-button {
  background: #ffffff !important;

  color: #1768ff !important;

  border:
    1px solid #b8d2ff !important;

  box-shadow:
    0 10px 25px
    rgba(23,104,255,.08) !important;
}


/* hover */

.chainlab-contact-actions
.chainlab-contact-button:hover {
  transform:
    translateY(-3px) !important;
}


.chainlab-phone-button:hover {
  border-color:
    #1768ff !important;

  box-shadow:
    0 14px 30px
    rgba(23,104,255,.13) !important;
}


/* 모바일 */

@media(max-width:600px) {

  .chainlab-contact-cta {
    padding:
      64px 18px !important;
  }

  .chainlab-contact-actions {
    flex-direction: column !important;

    gap: 10px !important;
  }

  .chainlab-contact-actions
  .chainlab-contact-button {
    width: 100% !important;
    max-width: 320px !important;
  }

}


/* =========================================================
   CHAINLAB CONTACT CTA
   SOFT BLUE + SUBTLE TECH PATTERN
   ========================================================= */

.chainlab-contact-cta {
  position: relative !important;
  overflow: hidden !important;

  background:
    linear-gradient(
      135deg,
      #f2f7ff 0%,
      #eaf3ff 48%,
      #e1eeff 100%
    ) !important;
}


/* 은은한 도트 패턴 */

.chainlab-contact-cta::before {
  content: "" !important;

  position: absolute !important;
  inset: 0 !important;

  pointer-events: none !important;

  background-image:
    radial-gradient(
      circle,
      rgba(23,104,255,.14) 1px,
      transparent 1.2px
    ) !important;

  background-size:
    24px 24px !important;

  opacity: .55 !important;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 20%,
      #000 80%,
      transparent 100%
    ) !important;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 20%,
      #000 80%,
      transparent 100%
    ) !important;
}


/* 오른쪽 위 은은한 블루 빛 */

.chainlab-contact-cta::after {
  content: "" !important;

  position: absolute !important;

  width: 420px !important;
  height: 420px !important;

  right: -140px !important;
  top: -170px !important;

  border-radius: 50% !important;

  background:
    radial-gradient(
      circle,
      rgba(23,104,255,.14) 0%,
      rgba(23,104,255,.05) 42%,
      transparent 72%
    ) !important;

  pointer-events: none !important;
}


/* 내용은 패턴 위로 */

.chainlab-contact-cta .wrap,
.chainlab-contact-inner {
  position: relative !important;
  z-index: 2 !important;
}


/* 왼쪽 아래에도 아주 약한 빛 */

.chainlab-contact-inner::before {
  content: "" !important;

  position: absolute !important;

  width: 300px !important;
  height: 300px !important;

  left: -240px !important;
  bottom: -180px !important;

  border-radius: 50% !important;

  background:
    radial-gradient(
      circle,
      rgba(71,139,255,.11),
      transparent 70%
    ) !important;

  pointer-events: none !important;
  z-index: -1 !important;
}


/* 모바일에서는 무늬를 조금 더 약하게 */

@media(max-width:600px) {

  .chainlab-contact-cta::before {
    background-size:
      22px 22px !important;

    opacity: .38 !important;
  }

  .chainlab-contact-cta::after {
    width: 300px !important;
    height: 300px !important;

    right: -150px !important;
    top: -120px !important;
  }

}


/* =========================================================
   CHAINLAB CONTACT TITLE FINAL
   ========================================================= */

.chainlab-contact-cta .contact-small-title {
  display: block !important;

  margin: 0 0 16px !important;

  color: #173b70 !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 42px !important;
  font-weight: 900 !important;

  line-height: 1.15 !important;

  letter-spacing: -1.5px !important;

  text-align: center !important;
}


/* 설명 간격 재조정 */

.chainlab-contact-inner p {
  margin:
    0 auto 28px !important;

  max-width: 620px !important;

  color: #65768c !important;

  font-size: 14px !important;
  font-weight: 500 !important;

  line-height: 1.7 !important;
}


/* 모바일 */

@media(max-width:600px) {

  .chainlab-contact-cta .contact-small-title {
    font-size: 32px !important;

    letter-spacing:
      -1px !important;

    margin-bottom:
      14px !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE 1ST OPTIMIZATION
   ========================================================= */

@media(max-width:768px) {

  html,
  body {
    width: 100% !important;
    overflow-x: hidden !important;
  }


  /* 공통 좌우 여백 */

  .wrap {
    width: 100% !important;
    max-width: none !important;

    box-sizing: border-box !important;

    padding-left: 18px !important;
    padding-right: 18px !important;
  }


  /* 공통 섹션 간격 */

  .section {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }


  /* =========================================
     HEADER
     ========================================= */

  header {
    min-height: 64px !important;
  }

  .header-brand-lockup > img {
    max-height: 34px !important;
  }

  .header-brand-divider,
  .header-brand-tagline {
    display: none !important;
  }


  /* =========================================
     HERO
     ========================================= */

  .hero {
    padding-top: 95px !important;
    padding-bottom: 70px !important;
  }

  .hero h1 {
    font-size: 38px !important;
    line-height: 1.18 !important;
    letter-spacing: -2.1px !important;

    word-break: keep-all !important;
  }

  .hero p {
    font-size: 14px !important;
    line-height: 1.75 !important;

    word-break: keep-all !important;
  }


  /* =========================================
     모든 주요 SECTION 제목
     ========================================= */

  .company-intro-head h2,
  .services .center-title h2,
  .process > .wrap > h2,
  .exchange-title h2,
  .ecosystem-title-wrap h2,
  .story-heading h2,
  .faq-title h2 {
    font-size: 29px !important;
    line-height: 1.28 !important;
    letter-spacing: -1.5px !important;

    word-break: keep-all !important;
  }


  /* 설명글 */

  .company-intro-head p,
  .services .center-title p,
  .process > .wrap > p,
  .exchange-title p,
  .ecosystem-title-wrap p,
  .story-heading p,
  .faq-title p {
    font-size: 13px !important;
    line-height: 1.75 !important;

    word-break: keep-all !important;
  }


  /* 작은 영문 SECTION TAG */

  .section-tag {
    margin-bottom: 10px !important;

    font-size: 10px !important;
    letter-spacing: 1.1px !important;
  }


  /* =========================================
     ECOSYSTEM
     2열
     ========================================= */

  .ecosystem-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;

    gap: 10px !important;

    margin-top: 26px !important;
  }

  .ecosystem-grid .ecosystem-item {
    min-height: 116px !important;

    padding: 14px 7px !important;

    border-radius: 13px !important;
  }

  .ecosystem-grid .ecosystem-item img,
  .ecosystem-grid .ecosystem-text-logo {
    width: 42px !important;
    height: 42px !important;

    max-width: 42px !important;
    max-height: 42px !important;
  }

  .ecosystem-grid .ecosystem-item span {
    font-size: 12px !important;
  }


  /* =========================================
     EXCHANGE
     2열
     ========================================= */

  .exchange-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;

    gap: 10px !important;
  }

  .exchange-card {
    min-height: 112px !important;

    padding: 14px 7px !important;

    border-radius: 13px !important;
  }

  .exchange-card img {
    width: 42px !important;
    height: 42px !important;
  }


  /* =========================================
     PROJECT STORIES
     ========================================= */

  .story-slider-wrap {
    margin-top: 28px !important;
  }

  .story-card {
    border-radius: 16px !important;
  }

  .story-card-body {
    padding: 20px 18px !important;
  }

  .story-card-body h3 {
    font-size: 17px !important;
    line-height: 1.45 !important;

    word-break: keep-all !important;
  }

  .story-card-body p {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }


  /* =========================================
     FAQ
     ========================================= */

  .faq-item {
    border-radius: 13px !important;
  }

  .faq-question {
    padding: 18px 16px !important;

    font-size: 14px !important;
    line-height: 1.5 !important;
  }


  /* =========================================
     CONTACT
     ========================================= */

  .chainlab-contact-cta {
    padding:
      62px 18px !important;
  }

  .chainlab-contact-cta
  .contact-small-title {
    font-size: 31px !important;
    line-height: 1.15 !important;

    letter-spacing: -1px !important;
  }

  .chainlab-contact-inner p {
    max-width: 330px !important;

    font-size: 13px !important;
    line-height: 1.7 !important;

    margin:
      0 auto 24px !important;
  }

  .chainlab-contact-actions {
    width: 100% !important;

    flex-direction: column !important;

    gap: 10px !important;
  }

  .chainlab-contact-actions
  .chainlab-contact-button {
    width: 100% !important;
    max-width: 330px !important;

    min-height: 54px !important;

    margin: 0 auto !important;
  }


  /* =========================================
     FOOTER
     ========================================= */

  footer,
  .site-footer {
    text-align: left !important;
  }

  footer p,
  footer address,
  .site-footer p,
  .site-footer address {
    font-size: 12.5px !important;
    line-height: 1.75 !important;
  }

}


/* 작은 휴대폰 */

@media(max-width:390px) {

  .hero h1 {
    font-size: 34px !important;
  }

  .company-intro-head h2,
  .services .center-title h2,
  .process > .wrap > h2,
  .exchange-title h2,
  .ecosystem-title-wrap h2,
  .story-heading h2,
  .faq-title h2 {
    font-size: 27px !important;
  }

}


/* =========================================================
   CHAINLAB PROCESS MOBILE 2 COLUMN
   01 02
   03 04
   05 full
   ========================================================= */

@media(max-width:768px) {

  .process-grid,
  .process-list,
  .process-cards,
  .process-items {
    display: grid !important;

    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;

    gap: 12px !important;
  }


  /* 각 핵심 서비스 카드 */

  .process-grid > article,
  .process-list > article,
  .process-cards > article,
  .process-items > article {
    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;

    padding: 20px 14px !important;

    box-sizing: border-box !important;

    min-height: 190px !important;
  }


  /* 05 지속적 성장은 마지막 한 줄 전체 */

  .process-grid > article:nth-child(5),
  .process-list > article:nth-child(5),
  .process-cards > article:nth-child(5),
  .process-items > article:nth-child(5) {
    grid-column: 1 / -1 !important;

    max-width: none !important;

    min-height: 165px !important;
  }


  /* 모바일 제목 크기 */

  .process article h3 {
    font-size: 15px !important;
    line-height: 1.35 !important;

    word-break: keep-all !important;
  }


  .process article p {
    font-size: 12px !important;
    line-height: 1.6 !important;

    word-break: keep-all !important;
  }

}


/* 아주 작은 휴대폰 */

@media(max-width:360px) {

  .process-grid,
  .process-list,
  .process-cards,
  .process-items {
    gap: 8px !important;
  }

  .process-grid > article,
  .process-list > article,
  .process-cards > article,
  .process-items > article {
    padding: 17px 10px !important;
  }

}


/* =========================================================
   CHAINLAB HERO SOFT BLUE BACKGROUND FINAL
   ========================================================= */

.hero,
.hero-section,
#home {
  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(33, 112, 255, .11) 0%,
      rgba(33, 112, 255, .045) 25%,
      transparent 52%
    ),
    radial-gradient(
      circle at 8% 82%,
      rgba(74, 145, 255, .07) 0%,
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7faff 46%,
      #edf5ff 100%
    ) !important;
}


/* 아주 약한 테크 느낌 */

.hero,
.hero-section {
  background-size:
    auto,
    auto,
    auto !important;
}


/* 회사소개와 경계 */

#company,
.company-intro {
  border-top:
    1px solid rgba(23,104,255,.08) !important;
}


/* 모바일에서는 조금 더 은은하게 */

@media(max-width:768px) {

  .hero,
  .hero-section,
  #home {
    background:
      radial-gradient(
        circle at 85% 20%,
        rgba(33,112,255,.09) 0%,
        transparent 42%
      ),
      linear-gradient(
        160deg,
        #ffffff 0%,
        #f4f8ff 100%
      ) !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE HEADER - FINAL
   ========================================================= */

/* PC에서는 완전히 숨김 */

.chainlab-mobile-header {
  display: none !important;
}


@media(max-width:768px) {

  /* 기존 PC 헤더는 모바일에서 숨김 */
  body > header,
  .site-header {
    display: none !important;
  }


  /* 모바일 전용 헤더 */

  .chainlab-mobile-header {
    position: sticky !important;
    top: 0 !important;

    width: 100% !important;
    height: 68px !important;

    display: flex !important;
    align-items: center !important;

    padding: 0 18px !important;

    box-sizing: border-box !important;

    background:
      rgba(255,255,255,.97) !important;

    backdrop-filter:
      blur(14px) !important;

    -webkit-backdrop-filter:
      blur(14px) !important;

    border-bottom:
      1px solid rgba(22,82,160,.08) !important;

    box-shadow:
      0 6px 22px
      rgba(20,60,115,.055) !important;

    z-index: 99999 !important;
  }


  /* 로고 */

  .chainlab-mobile-logo {
    display: flex !important;
    align-items: center !important;

    margin-right: auto !important;

    text-decoration: none !important;
  }

  .chainlab-mobile-logo img {
    display: block !important;

    width: auto !important;
    height: 38px !important;

    max-width: 145px !important;

    object-fit: contain !important;

    filter: none !important;
  }


  /* 햄버거 */

  .chainlab-mobile-toggle {
    width: 43px !important;
    height: 43px !important;

    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;

    border:
      1px solid #dce6f2 !important;

    border-radius:
      11px !important;

    background:
      #ffffff !important;

    box-shadow:
      0 4px 14px
      rgba(22,68,130,.06) !important;

    cursor: pointer !important;
  }

  .chainlab-mobile-toggle span {
    display: block !important;

    width: 20px !important;
    height: 2px !important;

    border-radius: 10px !important;

    background:
      #15385f !important;

    transition:
      transform .22s ease,
      opacity .22s ease !important;
  }


  /* X 변환 */

  .chainlab-mobile-toggle.open span:nth-child(1) {
    transform:
      translateY(7px)
      rotate(45deg) !important;
  }

  .chainlab-mobile-toggle.open span:nth-child(2) {
    opacity: 0 !important;
  }

  .chainlab-mobile-toggle.open span:nth-child(3) {
    transform:
      translateY(-7px)
      rotate(-45deg) !important;
  }


  /* 메뉴 기본 숨김 */

  .chainlab-mobile-menu {
    position: absolute !important;

    top: 76px !important;
    left: 14px !important;
    right: 14px !important;

    display: none !important;

    padding: 10px !important;

    background:
      rgba(255,255,255,.99) !important;

    border:
      1px solid #dfe8f3 !important;

    border-radius:
      15px !important;

    box-shadow:
      0 20px 50px
      rgba(12,51,105,.14) !important;
  }


  .chainlab-mobile-menu.open {
    display: flex !important;

    flex-direction: column !important;
  }


  .chainlab-mobile-menu a {
    display: block !important;

    padding:
      14px 15px !important;

    border-radius:
      9px !important;

    color:
      #263d5e !important;

    font-family:
      "Pretendard",
      "Noto Sans KR",
      sans-serif !important;

    font-size:
      14px !important;

    font-weight:
      650 !important;

    line-height:
      1.4 !important;

    text-decoration:
      none !important;
  }


  .chainlab-mobile-menu a:active {
    background:
      #f2f6fc !important;

    color:
      #1768ff !important;
  }


  /* 문의하기만 살짝 강조 */

  .chainlab-mobile-menu
  .mobile-contact-link {
    margin-top:
      5px !important;

    background:
      #1768ff !important;

    color:
      #ffffff !important;

    text-align:
      center !important;
  }

}


/* =========================================================
   CHAINLAB HERO TECH PATTERN FINAL
   ========================================================= */

.hero,
.hero-section,
#home {
  position: relative !important;

  background-image:

    /* 우측 블루 광원 */
    radial-gradient(
      circle at 82% 34%,
      rgba(23,104,255,.15) 0%,
      rgba(23,104,255,.065) 24%,
      transparent 48%
    ),

    /* 좌측 아래 은은한 빛 */
    radial-gradient(
      circle at 5% 85%,
      rgba(76,146,255,.08) 0%,
      transparent 34%
    ),

    /* 작은 도트 */
    radial-gradient(
      circle,
      rgba(45,108,205,.12) 1px,
      transparent 1.2px
    ),

    /* 세로 격자 */
    linear-gradient(
      90deg,
      rgba(44,102,190,.035) 1px,
      transparent 1px
    ),

    /* 가로 격자 */
    linear-gradient(
      0deg,
      rgba(44,102,190,.035) 1px,
      transparent 1px
    ),

    /* 기본 배경 */
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fbff 45%,
      #eef5ff 100%
    ) !important;


  background-size:
    auto,
    auto,
    28px 28px,
    90px 90px,
    90px 90px,
    auto !important;

  background-position:
    center,
    center,
    0 0,
    0 0,
    0 0,
    center !important;
}


/* Hero 하단으로 갈수록 자연스럽게 */

.hero::after,
.hero-section::after {
  content: "" !important;

  position: absolute !important;

  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  height: 130px !important;

  pointer-events: none !important;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(255,255,255,.55)
    ) !important;

  z-index: 0 !important;
}


/* Hero 실제 내용은 무늬 위 */

.hero > *,
.hero-section > *,
#home > * {
  position: relative !important;
  z-index: 1 !important;
}


/* 모바일은 무늬를 조금 약하게 */

@media(max-width:768px) {

  .hero,
  .hero-section,
  #home {
    background-image:

      radial-gradient(
        circle at 90% 22%,
        rgba(23,104,255,.11) 0%,
        transparent 42%
      ),

      radial-gradient(
        circle,
        rgba(45,108,205,.09) .9px,
        transparent 1px
      ),

      linear-gradient(
        90deg,
        rgba(44,102,190,.025) 1px,
        transparent 1px
      ),

      linear-gradient(
        0deg,
        rgba(44,102,190,.025) 1px,
        transparent 1px
      ),

      linear-gradient(
        160deg,
        #ffffff 0%,
        #f3f8ff 100%
      ) !important;


    background-size:
      auto,
      24px 24px,
      72px 72px,
      72px 72px,
      auto !important;
  }

}


/* =========================================================
   CHAINLAB HERO - LOGO WATERMARK PATTERN
   ========================================================= */

.hero,
.hero-section,
#home {
  position: relative !important;
  overflow: hidden !important;

  /* 기존 격자/도트 제거하고 배경만 유지 */
  background-image:
    radial-gradient(
      circle at 82% 35%,
      rgba(23,104,255,.13) 0%,
      rgba(23,104,255,.05) 27%,
      transparent 52%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7faff 48%,
      #edf5ff 100%
    ) !important;

  background-size:
    auto,
    auto !important;
}


/* 실제 CHAINLAB 로고를 아주 연한 패턴으로 */

.hero::before,
.hero-section::before {
  content: "" !important;

  position: absolute !important;
  inset: -40px !important;

  pointer-events: none !important;

  background-image:
    url("../assets/chainlab-logo.png") !important;

  background-repeat:
    repeat !important;

  background-size:
    240px auto !important;

  background-position:
    20px 15px !important;

  opacity: .032 !important;

  transform:
    rotate(-8deg) scale(1.05) !important;

  transform-origin:
    center !important;

  filter:
    saturate(1.15) !important;

  z-index: 0 !important;
}


/* 하단 자연스러운 페이드 */

.hero::after,
.hero-section::after {
  content: "" !important;

  position: absolute !important;

  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  height: 110px !important;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(255,255,255,.5)
    ) !important;

  pointer-events: none !important;

  z-index: 0 !important;
}


/* 실제 Hero 내용은 로고 무늬 위 */

.hero > *,
.hero-section > *,
#home > * {
  position: relative !important;
  z-index: 2 !important;
}


/* 모바일은 로고 패턴 조금 크게 + 더 연하게 */

@media(max-width:768px) {

  .hero::before,
  .hero-section::before {
    inset: -30px !important;

    background-size:
      190px auto !important;

    opacity:
      .026 !important;

    transform:
      rotate(-8deg) scale(1.08) !important;
  }

}


/* =========================================================
   CHAINLAB HERO NATURAL BRAND PATTERN
   ========================================================= */

/* 기존 반복 로고 무늬 제거 */

.hero::before,
.hero-section::before {
  background-image: none !important;
  opacity: 1 !important;
  transform: none !important;
}


/* Hero 기본 배경 */

.hero,
.hero-section,
#home {
  position: relative !important;
  overflow: hidden !important;

  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(23,104,255,.12) 0%,
      rgba(23,104,255,.045) 28%,
      transparent 52%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fbff 50%,
      #edf5ff 100%
    ) !important;
}


/* 체인랩 로고에서 가져온 연결 형태 */

.hero-chain-pattern {
  position: absolute !important;

  width: 520px !important;
  height: 420px !important;

  right: -90px !important;
  top: 50% !important;

  transform:
    translateY(-50%)
    rotate(-8deg) !important;

  pointer-events: none !important;

  z-index: 0 !important;

  opacity: .46 !important;
}


/* 공통 체인 형태 */

.hero-chain-link {
  position: absolute !important;

  display: block !important;

  width: 225px !important;
  height: 100px !important;

  border:
    18px solid
    rgba(23,104,255,.07) !important;

  border-radius:
    60px !important;

  box-sizing:
    border-box !important;
}


/* 첫 번째 링크 */

.hero-chain-link.link-one {
  left: 45px !important;
  top: 80px !important;

  transform:
    rotate(-36deg) !important;
}


/* 두 번째 링크 */

.hero-chain-link.link-two {
  left: 175px !important;
  top: 150px !important;

  transform:
    rotate(36deg) !important;

  border-color:
    rgba(54,126,255,.09) !important;
}


/* 세 번째 링크는 더 희미하게 */

.hero-chain-link.link-three {
  left: 95px !important;
  top: 235px !important;

  width: 190px !important;
  height: 84px !important;

  transform:
    rotate(-26deg) !important;

  border-width:
    14px !important;

  border-color:
    rgba(23,104,255,.04) !important;
}


/* 실제 Hero 콘텐츠는 위로 */

.hero > *:not(.hero-chain-pattern),
.hero-section > *:not(.hero-chain-pattern),
#home > *:not(.hero-chain-pattern) {
  position: relative !important;
  z-index: 2 !important;
}


/* 모바일에서는 더 단순하게 */

@media(max-width:768px) {

  .hero-chain-pattern {
    width: 330px !important;
    height: 280px !important;

    right: -145px !important;
    top: 43% !important;

    opacity: .34 !important;

    transform:
      translateY(-50%)
      rotate(-10deg) !important;
  }

  .hero-chain-link {
    width: 155px !important;
    height: 68px !important;

    border-width:
      12px !important;

    border-radius:
      45px !important;
  }

  .hero-chain-link.link-one {
    left: 20px !important;
    top: 55px !important;
  }

  .hero-chain-link.link-two {
    left: 105px !important;
    top: 105px !important;
  }

  .hero-chain-link.link-three {
    display: none !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE HERO TOP SPACE FIX
   ========================================================= */

@media(max-width:768px) {

  .hero,
  .hero-section,
  #home {
    padding-top: 38px !important;
  }

}

@media(max-width:390px) {

  .hero,
  .hero-section,
  #home {
    padding-top: 32px !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE SERVICE CARD TOUCH FIX
   ========================================================= */

@media(max-width:768px) {

  .service-card,
  .services .service-card {
    cursor: pointer !important;

    touch-action: manipulation !important;

    -webkit-tap-highlight-color:
      rgba(23,104,255,.08) !important;

    user-select: none !important;
    -webkit-user-select: none !important;
  }


  /* 누르는 느낌 */

  .service-card:active,
  .services .service-card:active {
    transform:
      translateY(-2px)
      scale(.985) !important;

    border-color:
      #8db7ff !important;

    box-shadow:
      0 10px 24px
      rgba(23,104,255,.12) !important;
  }

}


/* =========================================================
   CHAINLAB SERVICE DETAIL MODAL FINAL
   PC + MOBILE
   ========================================================= */

#chainlabServiceModal {
  position: fixed !important;
  inset: 0 !important;

  display: none !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 22px !important;

  box-sizing: border-box !important;

  background:
    rgba(7, 20, 38, .58) !important;

  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;

  z-index: 999999 !important;
}


#chainlabServiceModal.open {
  display: flex !important;
}


.chainlab-service-modal-box {
  position: relative !important;

  width: 100% !important;
  max-width: 620px !important;
  max-height: 86vh !important;

  overflow-y: auto !important;

  padding: 36px !important;

  box-sizing: border-box !important;

  background: #ffffff !important;

  border:
    1px solid #dce7f5 !important;

  border-radius: 22px !important;

  box-shadow:
    0 28px 80px
    rgba(5, 37, 86, .25) !important;
}


.chainlab-service-modal-close {
  position: absolute !important;

  top: 16px !important;
  right: 16px !important;

  width: 38px !important;
  height: 38px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  border-radius: 50% !important;

  background: #f1f6fc !important;
  color: #51657e !important;

  font-size: 22px !important;

  cursor: pointer !important;
}


.chainlab-service-modal-label {
  display: block !important;

  margin-bottom: 10px !important;

  color: #1768ff !important;

  font-size: 10px !important;
  font-weight: 800 !important;

  letter-spacing: 1.4px !important;
}


.chainlab-service-modal-title {
  margin: 0 45px 10px 0 !important;

  color: #0d203d !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 30px !important;
  font-weight: 900 !important;

  line-height: 1.25 !important;

  letter-spacing: -1.4px !important;

  word-break: keep-all !important;
}


.chainlab-service-modal-eng {
  margin-bottom: 24px !important;

  color: #1768ff !important;

  font-size: 13px !important;
  font-weight: 700 !important;
}


.chainlab-service-modal-description {
  margin: 0 0 24px !important;

  color: #65758a !important;

  font-size: 14px !important;
  font-weight: 500 !important;

  line-height: 1.8 !important;

  word-break: keep-all !important;
}


.chainlab-service-price {
  margin-top: 18px !important;

  padding: 18px 20px !important;

  background:
    linear-gradient(
      135deg,
      #f2f7ff,
      #e8f2ff
    ) !important;

  border:
    1px solid #d1e3ff !important;

  border-radius: 15px !important;
}


.chainlab-service-price small {
  display: block !important;

  margin-bottom: 5px !important;

  color: #788aa3 !important;

  font-size: 11px !important;
  font-weight: 600 !important;
}


.chainlab-service-price strong {
  color: #1768ff !important;

  font-size: 21px !important;
  font-weight: 900 !important;
}


.chainlab-package-list {
  display: grid !important;

  gap: 10px !important;

  margin-top: 18px !important;
}


.chainlab-package-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 15px !important;

  padding: 13px 15px !important;

  border:
    1px solid #e1e9f3 !important;

  border-radius: 11px !important;

  background: #fbfdff !important;

  color: #40536c !important;

  font-size: 13px !important;
  font-weight: 600 !important;
}


.chainlab-package-row strong {
  color: #1768ff !important;

  white-space: nowrap !important;
}


.chainlab-package-total {
  margin-top: 14px !important;

  padding: 18px !important;

  border-radius: 14px !important;

  background:
    linear-gradient(
      135deg,
      #1768ff,
      #0751d6
    ) !important;

  color: #ffffff !important;

  text-align: center !important;
}


.chainlab-package-total span {
  display: block !important;

  margin-bottom: 4px !important;

  font-size: 12px !important;
  font-weight: 600 !important;

  opacity: .78 !important;
}


.chainlab-package-total strong {
  font-size: 22px !important;
  font-weight: 900 !important;
}


.service-card {
  cursor: pointer !important;
  touch-action: manipulation !important;
}


@media(max-width:600px) {

  #chainlabServiceModal {
    padding: 14px !important;
  }

  .chainlab-service-modal-box {
    max-height: 88vh !important;

    padding:
      30px 20px 24px !important;

    border-radius:
      18px !important;
  }

  .chainlab-service-modal-title {
    font-size: 25px !important;
  }

  .chainlab-package-row {
    align-items: flex-start !important;
    flex-direction: column !important;

    gap: 5px !important;
  }

}


/* =========================================================
   CHAINLAB HERO FINAL COLOR + BOTTOM SPACE
   ========================================================= */

.hero,
.hero-section,
#home {
  position: relative !important;
  overflow: hidden !important;

  /* 하단 공간 축소 */
  padding-bottom: 46px !important;

  /* 화이트 + 체인랩 블루 */
  background:
    radial-gradient(
      circle at 82% 34%,
      rgba(23,104,255,.18) 0%,
      rgba(23,104,255,.085) 24%,
      transparent 50%
    ),

    radial-gradient(
      circle at 18% 20%,
      rgba(77,145,255,.085) 0%,
      transparent 36%
    ),

    linear-gradient(
      135deg,
      #ffffff 0%,
      #f4f8ff 38%,
      #e7f1ff 72%,
      #dceaff 100%
    ) !important;
}


/* 하단 흰색 페이드도 너무 크게 내려오지 않게 */

.hero::after,
.hero-section::after {
  height: 55px !important;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(246,250,255,.34)
    ) !important;
}


/* 체인 무늬도 배경색에 맞게 조금 더 자연스럽게 */

.hero-chain-pattern {
  opacity: .42 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:768px) {

  .hero,
  .hero-section,
  #home {
    padding-top: 30px !important;
    padding-bottom: 38px !important;

    background:
      radial-gradient(
        circle at 92% 24%,
        rgba(23,104,255,.15) 0%,
        rgba(23,104,255,.055) 30%,
        transparent 51%
      ),

      linear-gradient(
        155deg,
        #ffffff 0%,
        #f2f7ff 42%,
        #e4efff 100%
      ) !important;
  }


  .hero::after,
  .hero-section::after {
    height: 35px !important;
  }


  .hero-chain-pattern {
    opacity: .28 !important;
  }

}


/* 작은 휴대폰 */

@media(max-width:390px) {

  .hero,
  .hero-section,
  #home {
    padding-top: 26px !important;
    padding-bottom: 34px !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE HEADER + HERO COLOR FINAL
   PC에는 영향 없음
   ========================================================= */

@media(max-width:768px) {

  /* 모바일 상단 메뉴도 Hero와 같은 계열 */

  .chainlab-mobile-header {
    background: #f7faff !important;

    border-bottom:
      1px solid rgba(23,104,255,.055) !important;

    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }


  /* 모바일 Hero는 여러 색 겹침 없이 하나의 그라데이션 */

  .hero,
  .hero-section,
  #home {
    padding-top: 26px !important;
    padding-bottom: 34px !important;

    background:
      linear-gradient(
        180deg,
        #f7faff 0%,
        #f1f6ff 42%,
        #e8f2ff 100%
      ) !important;
  }


  /* 아래쪽 별도 색 겹침 제거 */

  .hero::after,
  .hero-section::after {
    display: none !important;
  }


  /* 체인 무늬는 아주 약하게만 */

  .hero-chain-pattern {
    opacity: .20 !important;

    right: -155px !important;
    top: 45% !important;
  }

}


/* 작은 휴대폰 */

@media(max-width:390px) {

  .hero,
  .hero-section,
  #home {
    padding-top: 22px !important;
    padding-bottom: 30px !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE MENU
   3 x 2 GRID FINAL
   ========================================================= */

@media(max-width:768px) {

  /* 메뉴 열렸을 때 3개씩 2줄 */

  .chainlab-mobile-menu.open {
    display: grid !important;

    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;

    gap: 7px !important;

    padding: 11px !important;
  }


  /* 각 메뉴 */

  .chainlab-mobile-menu a {
    width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    padding:
      12px 4px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #263d5e !important;

    background: #f7faff !important;

    border:
      1px solid #e7eef7 !important;

    border-radius:
      9px !important;

    font-family:
      "Pretendard",
      "Noto Sans KR",
      sans-serif !important;

    font-size:
      12.5px !important;

    font-weight:
      650 !important;

    line-height:
      1.3 !important;

    text-align:
      center !important;

    white-space:
      nowrap !important;

    overflow:
      visible !important;
  }


  /* 문의하기 */

  .chainlab-mobile-menu
  .mobile-contact-link {
    margin-top: 0 !important;

    background:
      #1768ff !important;

    border-color:
      #1768ff !important;

    color:
      #ffffff !important;
  }

}


/* 아주 작은 휴대폰 */

@media(max-width:360px) {

  .chainlab-mobile-menu a {
    font-size:
      11.5px !important;

    padding:
      11px 2px !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE MENU FINAL
   프로젝트 | 문의하기
   서비스   | 소개
   ========================================================= */

@media(max-width:768px) {

  .chainlab-mobile-menu.open {
    display: grid !important;

    grid-template-columns:
      repeat(2, minmax(0,1fr)) !important;

    gap: 8px !important;

    padding: 11px !important;
  }


  .chainlab-mobile-menu a {
    width: 100% !important;
    min-width: 0 !important;

    min-height: 48px !important;

    padding: 10px 8px !important;

    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    line-height: 1.3 !important;

    text-align: center !important;

    white-space: nowrap !important;
  }


  .chainlab-mobile-menu
  .mobile-contact-link {
    margin-top: 0 !important;

    background: #1768ff !important;
    border-color: #1768ff !important;

    color: #ffffff !important;
  }

}


/* =========================================================
   CHAINLAB SERVICE MODAL V2
   PC + MOBILE FINAL
   ========================================================= */

#chainlabServiceModalV2 {
  position: fixed !important;
  inset: 0 !important;

  display: none !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 20px !important;
  box-sizing: border-box !important;

  background: rgba(7, 20, 38, .58) !important;

  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;

  z-index: 2147483000 !important;
}

#chainlabServiceModalV2.open {
  display: flex !important;
}

.service-modal-v2-box {
  position: relative !important;

  width: 100% !important;
  max-width: 620px !important;
  max-height: 88vh !important;

  overflow-y: auto !important;

  padding: 36px !important;
  box-sizing: border-box !important;

  background: #ffffff !important;

  border: 1px solid #dce7f5 !important;
  border-radius: 22px !important;

  box-shadow:
    0 30px 90px rgba(4, 31, 75, .26) !important;
}

.service-modal-v2-close {
  position: absolute !important;

  top: 15px !important;
  right: 15px !important;

  width: 40px !important;
  height: 40px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;

  border: 0 !important;
  border-radius: 50% !important;

  background: #f1f6fc !important;
  color: #53657c !important;

  font-size: 24px !important;
  line-height: 1 !important;

  cursor: pointer !important;
}

.service-modal-v2-label {
  display: block !important;

  margin-bottom: 9px !important;

  color: #1768ff !important;

  font-size: 10px !important;
  font-weight: 800 !important;

  letter-spacing: 1.3px !important;
}

.service-modal-v2-title {
  margin:
    0 48px 8px 0 !important;

  color: #0c203e !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 30px !important;
  font-weight: 900 !important;

  line-height: 1.25 !important;
  letter-spacing: -1.4px !important;

  word-break: keep-all !important;
}

.service-modal-v2-eng {
  margin-bottom: 22px !important;

  color: #1768ff !important;

  font-size: 13px !important;
  font-weight: 700 !important;
}

.service-modal-v2-desc {
  margin: 0 !important;

  color: #607188 !important;

  font-size: 14px !important;
  font-weight: 500 !important;

  line-height: 1.8 !important;

  word-break: keep-all !important;
}

.service-modal-v2-list {
  display: grid !important;
  gap: 9px !important;

  margin-top: 22px !important;
}

.service-modal-v2-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 15px !important;

  padding: 14px 16px !important;

  border: 1px solid #e0e9f4 !important;
  border-radius: 12px !important;

  background: #fbfdff !important;

  color: #40536c !important;

  font-size: 13px !important;
  font-weight: 650 !important;
}

.service-modal-v2-row strong {
  color: #1768ff !important;
  white-space: nowrap !important;
}

.service-modal-v2-price {
  margin-top: 22px !important;

  padding: 18px 20px !important;

  border: 1px solid #d1e2ff !important;
  border-radius: 14px !important;

  background:
    linear-gradient(
      135deg,
      #f2f7ff,
      #e8f2ff
    ) !important;
}

.service-modal-v2-price small {
  display: block !important;

  margin-bottom: 5px !important;

  color: #7b8da5 !important;

  font-size: 11px !important;
  font-weight: 600 !important;
}

.service-modal-v2-price strong {
  color: #1768ff !important;

  font-size: 22px !important;
  font-weight: 900 !important;
}

.service-modal-v2-total {
  margin-top: 12px !important;

  padding: 18px !important;

  border-radius: 14px !important;

  background:
    linear-gradient(
      135deg,
      #1768ff,
      #0750d5
    ) !important;

  color: #ffffff !important;

  text-align: center !important;
}

.service-modal-v2-total span {
  display: block !important;

  margin-bottom: 4px !important;

  font-size: 12px !important;
  font-weight: 600 !important;

  opacity: .8 !important;
}

.service-modal-v2-total strong {
  font-size: 23px !important;
  font-weight: 900 !important;
}


/* 모바일 */

@media(max-width:600px) {

  #chainlabServiceModalV2 {
    padding: 12px !important;
  }

  .service-modal-v2-box {
    padding:
      31px 19px 23px !important;

    max-height: 90vh !important;

    border-radius: 18px !important;
  }

  .service-modal-v2-title {
    font-size: 24px !important;
    letter-spacing: -1px !important;
  }

  .service-modal-v2-desc {
    font-size: 13px !important;
    line-height: 1.75 !important;
  }

  .service-modal-v2-row {
    padding: 12px 13px !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE TOP MENU FINAL
   프로젝트 | 문의하기
   서비스   | 소개
   ========================================================= */

@media(max-width:768px) {

  /* 모바일에서는 햄버거 제거 */
  .chainlab-mobile-toggle {
    display: none !important;
  }


  /* 모바일 상단 전체 */
  .chainlab-mobile-header {
    height: auto !important;
    min-height: 0 !important;

    padding:
      9px 14px 10px !important;

    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;

    background: #f7faff !important;
  }


  /* 로고는 첫 줄 */
  .chainlab-mobile-logo {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    margin: 0 0 8px !important;
  }

  .chainlab-mobile-logo img {
    height: 32px !important;
    width: auto !important;
  }


  /* 메뉴는 항상 표시 */
  .chainlab-mobile-menu,
  .chainlab-mobile-menu.open {
    position: static !important;

    width: 100% !important;

    display: grid !important;

    grid-template-columns:
      repeat(2, minmax(0,1fr)) !important;

    gap: 6px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;
  }


  /* 메뉴 버튼 */
  .chainlab-mobile-menu a {
    width: 100% !important;
    min-width: 0 !important;

    min-height: 34px !important;

    padding: 7px 4px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;

    background:
      rgba(255,255,255,.76) !important;

    border:
      1px solid rgba(23,104,255,.10) !important;

    border-radius: 8px !important;

    color: #304762 !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1.2 !important;

    text-align: center !important;

    white-space: nowrap !important;
  }


  /* 문의하기만 체인랩 블루 */
  .chainlab-mobile-menu
  .mobile-contact-link {
    margin: 0 !important;

    background: #1768ff !important;
    border-color: #1768ff !important;

    color: #ffffff !important;
  }

}


/* =========================================================
   CHAINLAB MOBILE HEADER RESTORE
   로고 + 햄버거 메뉴
   ========================================================= */

@media(max-width:768px) {

  /* 모바일 헤더 다시 한 줄 */
  .chainlab-mobile-header {
    height: 68px !important;
    min-height: 68px !important;

    padding: 0 18px !important;

    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;

    background: #f7faff !important;
  }


  /* 로고 */
  .chainlab-mobile-logo {
    width: auto !important;

    margin: 0 auto 0 0 !important;

    display: flex !important;
    align-items: center !important;
  }

  .chainlab-mobile-logo img {
    height: 36px !important;
    width: auto !important;
  }


  /* 햄버거 다시 표시 */
  .chainlab-mobile-toggle {
    display: flex !important;

    width: 43px !important;
    height: 43px !important;

    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;

    margin-left: auto !important;

    border: 1px solid #dce6f2 !important;
    border-radius: 11px !important;

    background: #ffffff !important;
  }


  /* 메뉴 기본은 숨김 */
  .chainlab-mobile-menu {
    position: absolute !important;

    top: 76px !important;
    left: 14px !important;
    right: 14px !important;

    width: auto !important;

    display: none !important;

    padding: 10px !important;
    margin: 0 !important;

    background: #ffffff !important;

    border: 1px solid #dfe8f3 !important;
    border-radius: 15px !important;

    box-shadow:
      0 20px 50px rgba(12,51,105,.14) !important;

    z-index: 100000 !important;
  }


  /* 햄버거 누르면 2 x 2 */
  .chainlab-mobile-menu.open {
    display: grid !important;

    grid-template-columns:
      repeat(2, minmax(0,1fr)) !important;

    gap: 8px !important;
  }


  .chainlab-mobile-menu a {
    min-height: 46px !important;

    padding: 10px 7px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #f7faff !important;

    border: 1px solid #e7eef7 !important;
    border-radius: 9px !important;

    color: #263d5e !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    text-align: center !important;
    white-space: nowrap !important;
  }


  .chainlab-mobile-menu
  .mobile-contact-link {
    margin: 0 !important;

    background: #1768ff !important;
    border-color: #1768ff !important;

    color: #ffffff !important;
  }

}


/* =========================================================
   HERO BUTTON TEXT
   PC = 한 줄
   MOBILE = 두 줄
   ========================================================= */

.hero-mobile-two-line {
  display: inline !important;
}

.hero-mobile-two-line > span {
  display: inline !important;
}

.hero-mobile-two-line > span + span::before {
  content: " " !important;
}


/* 모바일만 줄바꿈 */

@media(max-width:768px) {

  .hero-mobile-two-line {
    display: inline-flex !important;

    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    line-height: 1.25 !important;

    text-align: center !important;

    white-space: nowrap !important;
  }

  .hero-mobile-two-line > span {
    display: block !important;
  }

  .hero-mobile-two-line > span + span::before {
    content: none !important;
  }

}


/* =========================================================
   CHAINLAB KAKAO BUTTON BLUE OVERRIDE 2026-09-15
   ========================================================= */

.chainlab-kakao-button {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
}

.chainlab-kakao-button:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #ffffff !important;
}

.floating-kakao {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
}

.floating-kakao:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #ffffff !important;
}


/* =========================================================
   CHAINLAB HERO NETWORK SYMMETRY FIX
   Center-based 6-node alignment
   ========================================================= */

.node-consulting,
.node-token,
.node-dev,
.node-ecosystem,
.node-marketing,
.node-listing {
  margin: 0 !important;
}

/* 좌측 상단 / 우측 상단 */
.node-consulting {
  left: 98px !important;
  right: auto !important;
  top: 28px !important;
  bottom: auto !important;
}

.node-token {
  left: auto !important;
  right: 98px !important;
  top: 28px !important;
  bottom: auto !important;
}

/* 좌측 중앙 / 우측 중앙 */
.node-dev {
  left: 16px !important;
  right: auto !important;
  top: 205px !important;
  bottom: auto !important;
}

.node-ecosystem {
  left: auto !important;
  right: 16px !important;
  top: 205px !important;
  bottom: auto !important;
}

/* 좌측 하단 / 우측 하단 */
.node-marketing {
  left: 98px !important;
  right: auto !important;
  top: auto !important;
  bottom: 34px !important;
}

.node-listing {
  left: auto !important;
  right: 98px !important;
  top: auto !important;
  bottom: 34px !important;
}

/* 카드 내부 아이콘 + 글자 중심 정렬 */
.node {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.node-icon {
  margin-left: auto !important;
  margin-right: auto !important;
}

.node span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}


/* =========================================================
   CHAINLAB HERO NETWORK CONNECTION LINES
   ========================================================= */

@media (min-width: 1001px) {

  .network {
    position: relative !important;
  }

  .network-lines {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .network-line {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 150px !important;
    height: 1px !important;
    transform-origin: left center !important;

    background: linear-gradient(
      90deg,
      rgba(37,99,235,.12),
      rgba(37,99,235,.58),
      rgba(37,99,235,.12)
    ) !important;

    box-shadow:
      0 0 8px rgba(37,99,235,.14) !important;
  }

  .line-token {
    transform: translate(25px,-12px) rotate(-33deg) !important;
  }

  .line-consulting {
    transform: translate(-25px,-12px) rotate(213deg) !important;
  }

  .line-ecosystem {
    transform: translate(28px,0) rotate(0deg) !important;
  }

  .line-dev {
    transform: translate(-28px,0) rotate(180deg) !important;
  }

  .line-listing {
    transform: translate(25px,12px) rotate(33deg) !important;
  }

  .line-marketing {
    transform: translate(-25px,12px) rotate(147deg) !important;
  }

  .center-cube,
  .node {
    z-index: 2 !important;
  }

}


/* =========================================================
   CHAINLAB HERO ORBIT CIRCLE FINAL
   선 대신 원형 오비트 링 표시
   ========================================================= */

@media (min-width: 1001px) {

  /* 기존 선 숨김 */
  .network-lines,
  .network-line {
    display: none !important;
  }

  /* 네트워크 기준점 */
  .network {
    position: relative !important;
  }

  /* 기존 ring1 / ring2를 확실하게 원형으로 */
  .network-ring {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
  }

  /* 안쪽 원 */
  .network-ring.ring1 {
    width: 260px !important;
    height: 260px !important;
    border: 1px solid rgba(37,99,235,.22) !important;
    box-shadow:
      0 0 0 1px rgba(255,255,255,.35) inset,
      0 0 18px rgba(37,99,235,.10) !important;
    background: radial-gradient(
      circle,
      rgba(37,99,235,.02) 0%,
      rgba(37,99,235,0) 70%
    ) !important;
  }

  /* 바깥 원 */
  .network-ring.ring2 {
    width: 360px !important;
    height: 360px !important;
    border: 1px dashed rgba(37,99,235,.20) !important;
    box-shadow:
      0 0 22px rgba(37,99,235,.08) !important;
    background: transparent !important;
  }

  /* 추가 바깥 오비트 1개 더 */
  .network::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 460px !important;
    height: 460px !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(37,99,235,.10) !important;
    box-shadow:
      0 0 26px rgba(37,99,235,.06) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  /* 중앙 로고 / 노드는 링 위로 */
  .center-cube,
  .node {
    position: absolute !important;
    z-index: 2 !important;
  }
}


/* =========================================================
   CHAINLAB HERO ORBIT CIRCLE FINAL
   ========================================================= */

@media (min-width: 1001px) {

  /* 기존 직선 숨김 */
  .network-lines,
  .network-line {
    display: none !important;
  }

  .network {
    position: relative !important;
  }

  .network-ring {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
  }

  /* 안쪽 링 */
  .network-ring.ring1 {
    width: 260px !important;
    height: 260px !important;
    border: 1px solid rgba(37,99,235,.24) !important;
    background: transparent !important;
    box-shadow:
      0 0 18px rgba(37,99,235,.08) !important;
  }

  /* 바깥 링 */
  .network-ring.ring2 {
    width: 380px !important;
    height: 380px !important;
    border: 1px dashed rgba(37,99,235,.20) !important;
    background: transparent !important;
    box-shadow:
      0 0 22px rgba(37,99,235,.06) !important;
  }

  /* 아주 은은한 바깥 원 */
  .network::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 470px !important;
    height: 470px !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(37,99,235,.10) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .center-cube,
  .node {
    z-index: 2 !important;
  }

}


/* =========================================================
   CHAINLAB FLOATING KAKAO YELLOW BORDER FINAL
   ========================================================= */

.floating-kakao {
  border: 2px solid #FEE500 !important;
  border-color: #FEE500 !important;
  box-shadow:
    0 8px 24px rgba(37,99,235,.16),
    0 0 0 1px rgba(254,229,0,.18) !important;
}

.floating-kakao:hover {
  border-color: #FEE500 !important;
}


/* =========================================================
   CHAINLAB FLOATING KAKAO FULL YELLOW FINAL
   ========================================================= */

.floating-kakao {
  background: #FEE500 !important;
  background-color: #FEE500 !important;
  background-image: none !important;

  border: 2px solid #FEE500 !important;
  border-color: #FEE500 !important;

  color: #191919 !important;

  box-shadow:
    0 8px 24px rgba(25,25,25,.12),
    0 0 0 1px rgba(254,229,0,.25) !important;
}

.floating-kakao:hover {
  background: #F6DC00 !important;
  background-color: #F6DC00 !important;
  border-color: #F6DC00 !important;
  color: #191919 !important;
}

.floating-kakao span,
.floating-kakao .floating-kakao-text {
  color: #191919 !important;
}


/* =========================================================
   CHAINLAB CONTACT BACKGROUND OVERLAP FIX
   ========================================================= */

.chainlab-contact-cta {
  position: relative !important;
  overflow: hidden !important;

  background:
    linear-gradient(
      135deg,
      #f2f7ff 0%,
      #eaf3ff 50%,
      #e3efff 100%
    ) !important;
}


/* 기존 겹치던 도트 / 이미지 레이어 제거 */

.chainlab-contact-cta::before {
  content: none !important;
  display: none !important;
}


/* 오른쪽 위 은은한 빛 하나만 유지 */

.chainlab-contact-cta::after {
  content: "" !important;

  position: absolute !important;

  width: 420px !important;
  height: 420px !important;

  right: -150px !important;
  top: -190px !important;

  border-radius: 50% !important;

  background:
    radial-gradient(
      circle,
      rgba(23,104,255,.10) 0%,
      rgba(23,104,255,.035) 42%,
      transparent 72%
    ) !important;

  pointer-events: none !important;

  z-index: 0 !important;
}


/* 예전에 넣었던 내부 원형 빛 제거 */

.chainlab-contact-inner::before,
.chainlab-contact-inner::after {
  content: none !important;
  display: none !important;
}


/* 실제 내용은 항상 위 */

.chainlab-contact-cta .wrap,
.chainlab-contact-inner {
  position: relative !important;
  z-index: 2 !important;
}


/* 모바일은 더 단순하게 */

@media(max-width:768px) {

  .chainlab-contact-cta::after {
    width: 280px !important;
    height: 280px !important;

    right: -130px !important;
    top: -120px !important;

    opacity: .65 !important;
  }

}


/* =========================================================
   CHAINLAB CONTACT SINGLE BACKGROUND FINAL FIX
   겹쳐 보이는 상단 띠 / 레이어 완전 제거
   ========================================================= */

#contact.chainlab-contact-cta,
.chainlab-contact-cta {
  position: relative !important;

  margin-top: 0 !important;

  padding-top: 82px !important;
  padding-bottom: 82px !important;

  border-top: 0 !important;
  border-bottom: 0 !important;

  box-shadow: none !important;

  overflow: hidden !important;

  /* 배경 하나만 사용 */
  background:
    linear-gradient(
      135deg,
      #edf5ff 0%,
      #e7f1ff 48%,
      #deebff 100%
    ) !important;
}


/* CONTACT의 모든 장식 레이어 제거 */

#contact::before,
#contact::after,
.chainlab-contact-cta::before,
.chainlab-contact-cta::after,
.chainlab-contact-inner::before,
.chainlab-contact-inner::after {
  content: none !important;

  display: none !important;

  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* 예전 공통 section 경계선 제거 */

#contact.section,
section#contact {
  border-top: 0 !important;
  border-bottom: 0 !important;
}


/* CONTACT 바로 위 섹션에서 생기는 하단 선도 제거 */

.faq,
.faq-section {
  border-bottom: 0 !important;
}


/* CONTACT 내부에는 별도 배경이 생기지 않게 */

#contact .wrap,
#contact .chainlab-contact-inner {
  background: transparent !important;

  border: 0 !important;
  box-shadow: none !important;
}


/* 모바일 */

@media(max-width:768px) {

  #contact.chainlab-contact-cta,
  .chainlab-contact-cta {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }

}


/* =========================================================
   CONTACT / MAIN SEAM FINAL FIX
   ========================================================= */

/* main 하단에 남는 빈 공간 제거 */

main {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}


/* FAQ와 CONTACT 사이 여백 제거 */

.faq,
.faq-section {
  margin-bottom: 0 !important;
}


/* CONTACT 자체도 위쪽 외부 여백 제거 */

#contact.chainlab-contact-cta {
  margin-top: 0 !important;

  border-top: 0 !important;

  background:
    linear-gradient(
      135deg,
      #edf5ff 0%,
      #e7f1ff 50%,
      #deebff 100%
    ) !important;
}


/* 겹치는 장식은 계속 완전 제거 */

#contact::before,
#contact::after,
#contact .chainlab-contact-inner::before,
#contact .chainlab-contact-inner::after {
  content: none !important;
  display: none !important;
}


/* =========================================================
   CHAINLAB CONTACT CHANNEL MODAL
   ========================================================= */

.contact-channel-modal {
  position: fixed !important;
  inset: 0 !important;

  display: none !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 20px !important;
  box-sizing: border-box !important;

  background: rgba(8, 17, 30, .48) !important;

  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;

  z-index: 2147483600 !important;
}


.contact-channel-modal.open {
  display: flex !important;
}


.contact-channel-box {
  position: relative !important;

  width: 100% !important;
  max-width: 470px !important;

  padding: 30px !important;

  box-sizing: border-box !important;

  background: #ffffff !important;

  border: 1px solid rgba(18,38,67,.08) !important;
  border-radius: 25px !important;

  box-shadow:
    0 30px 90px rgba(4,25,58,.22) !important;
}


.contact-channel-close {
  position: absolute !important;

  top: 17px !important;
  right: 17px !important;

  width: 38px !important;
  height: 38px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;

  border: 0 !important;

  background: transparent !important;
  color: #9aa4b1 !important;

  font-size: 28px !important;
  font-weight: 300 !important;
  line-height: 1 !important;

  cursor: pointer !important;
}


.contact-channel-heading {
  padding-right: 34px !important;
  margin-bottom: 28px !important;
}


.contact-channel-title-row {
  display: flex !important;
  align-items: center !important;

  gap: 11px !important;
}


.contact-channel-chat-icon {
  width: 29px !important;
  height: 29px !important;

  display: flex !important;
  flex: 0 0 auto !important;
}


.contact-channel-chat-icon svg {
  width: 100% !important;
  height: 100% !important;

  fill: none !important;
  stroke: #18202b !important;
  stroke-width: 1.8 !important;
}


.contact-channel-heading h2 {
  margin: 0 !important;

  color: #171c24 !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 24px !important;
  font-weight: 800 !important;

  line-height: 1.3 !important;
  letter-spacing: -1px !important;
}


.contact-channel-heading p {
  margin: 10px 0 0 !important;

  color: #7c8795 !important;

  font-size: 14px !important;
  font-weight: 500 !important;

  line-height: 1.6 !important;
}


.contact-channel-list {
  display: grid !important;

  gap: 12px !important;
}


.contact-channel-item {
  width: 100% !important;
  min-height: 82px !important;

  padding: 14px 16px !important;

  box-sizing: border-box !important;

  display: flex !important;
  align-items: center !important;

  gap: 14px !important;

  border:
    1px solid #e1e5ea !important;

  border-radius:
    16px !important;

  background:
    #ffffff !important;

  color:
    #202936 !important;

  text-align:
    left !important;

  text-decoration:
    none !important;

  cursor:
    pointer !important;

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease !important;
}


.contact-channel-item:hover {
  transform:
    translateY(-2px) !important;

  border-color:
    #c4d7f6 !important;

  box-shadow:
    0 10px 28px rgba(26,77,151,.08) !important;
}


.contact-channel-item-icon {
  width: 43px !important;
  height: 43px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 auto !important;

  border-radius: 12px !important;
}


.contact-channel-item-icon.kakao {
  background: #191919 !important;
  color: #ffffff !important;

  font-size: 9px !important;
  font-weight: 900 !important;

  letter-spacing: -.4px !important;
}


.contact-channel-item-icon.phone {
  background: #f3f6fa !important;
}


.contact-channel-item-icon.phone svg {
  width: 25px !important;
  height: 25px !important;

  fill: none !important;
  stroke: #18202b !important;
  stroke-width: 2 !important;
}


.contact-channel-item-text {
  min-width: 0 !important;

  display: flex !important;
  flex-direction: column !important;

  gap: 4px !important;

  flex: 1 1 auto !important;
}


.contact-channel-item-text strong {
  color: #202630 !important;

  font-size: 15px !important;
  font-weight: 750 !important;
}


.contact-channel-item-text small {
  color: #8b95a3 !important;

  font-size: 12px !important;
  font-weight: 500 !important;
}


.contact-channel-arrow {
  margin-left: auto !important;

  color: #151b23 !important;

  font-size: 28px !important;
  font-weight: 300 !important;

  line-height: 1 !important;
}


@media(max-width:600px) {

  .contact-channel-modal {
    padding: 14px !important;
  }

  .contact-channel-box {
    max-width: 430px !important;

    padding:
      26px 18px 20px !important;

    border-radius:
      22px !important;
  }

  .contact-channel-heading h2 {
    font-size:
      21px !important;
  }

  .contact-channel-heading p {
    font-size:
      13px !important;
  }

  .contact-channel-item {
    min-height:
      76px !important;

    padding:
      12px 13px !important;
  }

  .contact-channel-item-icon {
    width: 40px !important;
    height: 40px !important;
  }

}


/* =========================================================
   CHAINLAB CONTACT MODAL TEXT CLEANUP
   ========================================================= */

#heroContactOpen {
  cursor: pointer !important;
}


/* 제목 */

.contact-channel-heading h2 {
  margin: 0 !important;

  color: #182235 !important;

  font-family:
    "Pretendard",
    "Noto Sans KR",
    sans-serif !important;

  font-size: 23px !important;
  font-weight: 800 !important;

  line-height: 1.35 !important;
  letter-spacing: -1px !important;

  word-break: keep-all !important;
}


/* 설명 */

.contact-channel-heading p {
  margin: 9px 0 0 !important;

  color: #8792a1 !important;

  font-size: 13px !important;
  font-weight: 500 !important;

  line-height: 1.6 !important;
}


/* 상담 종류 */

.contact-channel-text strong {
  color: #1c2635 !important;

  font-size: 15px !important;
  font-weight: 750 !important;

  line-height: 1.35 !important;
}


/* 작은 설명 */

.contact-channel-text small {
  color: #929cab !important;

  font-size: 11.5px !important;
  font-weight: 500 !important;
}


/* 모바일 */

@media(max-width:600px) {

  .contact-channel-heading h2 {
    font-size: 20px !important;
  }

  .contact-channel-heading p {
    font-size: 12.5px !important;
  }

}


/* =========================================================
   CHAINLAB CONTACT MODAL - CLEAN CARD DESIGN
   ========================================================= */

.contact-channel-box {
  width: 100% !important;
  max-width: 470px !important;

  padding:
    30px 28px 28px !important;

  background:
    #ffffff !important;

  border:
    1px solid rgba(18,35,58,.08) !important;

  border-radius:
    24px !important;

  box-shadow:
    0 30px 90px
    rgba(5,25,55,.23) !important;
}


/* X */

.contact-channel-close {
  top: 17px !important;
  right: 18px !important;

  color:
    #9aa3af !important;

  font-size:
    27px !important;

  font-weight:
    300 !important;
}


/* =========================
   TITLE
   ========================= */

.contact-channel-heading {
  margin:
    0 0 27px !important;

  padding-right:
    35px !important;
}


.contact-channel-title-row {
  display:
    flex !important;

  align-items:
    center !important;

  gap:
    11px !important;
}


.contact-channel-title-icon {
  width:
    30px !important;

  height:
    30px !important;

  display:
    flex !important;

  flex:
    0 0 auto !important;
}


.contact-channel-title-icon svg {
  width:
    100% !important;

  height:
    100% !important;

  fill:
    none !important;

  stroke:
    #151c25 !important;

  stroke-width:
    1.8 !important;

  stroke-linecap:
    round !important;

  stroke-linejoin:
    round !important;
}


.contact-channel-heading h2 {
  margin:
    0 !important;

  color:
    #171d27 !important;

  font-size:
    24px !important;

  font-weight:
    800 !important;

  line-height:
    1.25 !important;

  letter-spacing:
    -1px !important;

  text-align:
    left !important;
}


.contact-channel-heading p {
  margin:
    10px 0 0 41px !important;

  color:
    #828c99 !important;

  font-size:
    13.5px !important;

  font-weight:
    500 !important;

  line-height:
    1.55 !important;

  text-align:
    left !important;
}


/* =========================
   CHANNEL ROW
   ========================= */

.contact-channel-list {
  display:
    grid !important;

  gap:
    12px !important;
}


.contact-channel-item {
  width:
    100% !important;

  min-height:
    82px !important;

  padding:
    14px 17px !important;

  display:
    flex !important;

  align-items:
    center !important;

  gap:
    14px !important;

  box-sizing:
    border-box !important;

  border:
    1px solid #e1e5ea !important;

  border-radius:
    16px !important;

  background:
    #ffffff !important;

  color:
    #1e2632 !important;

  text-align:
    left !important;

  text-decoration:
    none !important;

  cursor:
    pointer !important;
}


.contact-channel-item:hover {
  border-color:
    #bcd2f5 !important;

  background:
    #fbfdff !important;

  transform:
    translateY(-2px) !important;

  box-shadow:
    0 10px 28px
    rgba(23,104,255,.07) !important;
}


/* =========================
   ICON
   ========================= */

.contact-channel-item-icon {
  width:
    44px !important;

  height:
    44px !important;

  display:
    flex !important;

  align-items:
    center !important;

  justify-content:
    center !important;

  flex:
    0 0 44px !important;
}


/* 카카오 */

.contact-channel-item-icon.kakao {
  border-radius:
    11px !important;

  background:
    #171717 !important;
}


.contact-channel-item-icon.kakao svg {
  width:
    34px !important;

  height:
    34px !important;

  fill:
    #ffffff !important;

  stroke:
    #ffffff !important;

  stroke-width:
    1.3 !important;
}


.contact-channel-item-icon.kakao text {
  fill:
    #171717 !important;

  stroke:
    none !important;

  font-size:
    7px !important;

  font-family:
    Arial,
    sans-serif !important;

  font-weight:
    900 !important;
}


/* 전화 */

.contact-channel-item-icon.phone {
  background:
    transparent !important;
}


.contact-channel-item-icon.phone svg {
  width:
    30px !important;

  height:
    30px !important;

  fill:
    none !important;

  stroke:
    #171d26 !important;

  stroke-width:
    2.1 !important;

  stroke-linecap:
    round !important;

  stroke-linejoin:
    round !important;
}


/* =========================
   TEXT
   ========================= */

.contact-channel-item-text {
  min-width:
    0 !important;

  flex:
    1 1 auto !important;

  display:
    flex !important;

  flex-direction:
    column !important;

  align-items:
    flex-start !important;

  justify-content:
    center !important;

  gap:
    4px !important;

  text-align:
    left !important;
}


.contact-channel-item-text strong {
  display:
    block !important;

  margin:
    0 !important;

  color:
    #202733 !important;

  font-size:
    15px !important;

  font-weight:
    750 !important;

  line-height:
    1.3 !important;

  letter-spacing:
    -.25px !important;
}


.contact-channel-item-text small {
  display:
    block !important;

  margin:
    0 !important;

  color:
    #8d96a3 !important;

  font-size:
    12px !important;

  font-weight:
    500 !important;

  line-height:
    1.3 !important;
}


/* 화살표 */

.contact-channel-arrow {
  flex:
    0 0 auto !important;

  margin-left:
    auto !important;

  padding-left:
    8px !important;

  color:
    #18202a !important;

  font-size:
    28px !important;

  font-weight:
    300 !important;

  line-height:
    1 !important;
}


/* =========================
   MOBILE
   ========================= */

@media(max-width:600px) {

  .contact-channel-box {
    max-width:
      430px !important;

    padding:
      26px 18px 20px !important;

    border-radius:
      22px !important;
  }


  .contact-channel-heading h2 {
    font-size:
      21px !important;
  }


  .contact-channel-heading p {
    margin-left:
      0 !important;

    font-size:
      13px !important;
  }


  .contact-channel-item {
    min-height:
      76px !important;

    padding:
      12px 14px !important;
  }


  .contact-channel-item-icon {
    width:
      40px !important;

    height:
      40px !important;

    flex-basis:
      40px !important;
  }


  .contact-channel-item-text strong {
    font-size:
      14.5px !important;
  }

}


/* =========================================================
   CONTACT MODAL KAKAO OFFICIAL IMAGE
   ========================================================= */

.contact-channel-item-icon.kakao {
  width: 44px !important;
  height: 44px !important;

  flex: 0 0 44px !important;

  padding: 0 !important;

  background: transparent !important;

  border-radius: 11px !important;

  overflow: hidden !important;
}

.contact-channel-kakao-logo {
  display: block !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;

  border-radius: 11px !important;
}

@media(max-width:600px) {

  .contact-channel-item-icon.kakao {
    width: 40px !important;
    height: 40px !important;

    flex-basis: 40px !important;
  }

}


/* =========================================================
   KAKAO MODAL ICON SIZE FIX
   ========================================================= */

.contact-channel-item-icon.kakao {
  width: 42px !important;
  height: 42px !important;

  min-width: 42px !important;
  max-width: 42px !important;

  min-height: 42px !important;
  max-height: 42px !important;

  flex: 0 0 42px !important;

  padding: 0 !important;
  margin: 0 !important;

  overflow: hidden !important;

  border-radius: 10px !important;

  background: transparent !important;
}


.contact-channel-item-icon.kakao img,
.contact-channel-kakao-logo {
  display: block !important;

  width: 42px !important;
  height: 42px !important;

  min-width: 42px !important;
  max-width: 42px !important;

  min-height: 42px !important;
  max-height: 42px !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: cover !important;

  border-radius: 10px !important;

  position: static !important;
  transform: none !important;
}


/* 카드 안에서 아이콘이 절대 튀어나오지 않게 */

.contact-channel-item {
  overflow: hidden !important;
}


/* 모바일 */

@media(max-width:600px) {

  .contact-channel-item-icon.kakao,
  .contact-channel-item-icon.kakao img,
  .contact-channel-kakao-logo {
    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;
    max-width: 38px !important;

    min-height: 38px !important;
    max-height: 38px !important;
  }

  .contact-channel-item-icon.kakao {
    flex-basis: 38px !important;
  }

}

