.marquee {
  position: relative;
  width: var(--marquee-width);
  height: var(--marquee-height);
  overflow: hidden;
  contain: layout paint;
}

.marquee2-content {
  display: flex;
  height: 100%;
  margin: 0;          /* 부트스트랩 ul 기본 margin/padding 제거 */
  padding: 0;
  list-style: none;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: scrolling var(--marquee2-animation-duration) linear infinite;
}

.marquee3-content {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: scrolling-reverse var(--marquee3-animation-duration) linear infinite;
}

.marquee2-content:hover {
  animation-play-state: paused;
}

.marquee3-content:hover {
  animation-play-state: paused;
}

.marquee2-content li {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--marquee-element-width);
  max-height: 100%;
  margin-bottom: 0;
  font-size: calc(var(--marquee-height) * 3 / 4);
  white-space: nowrap;
}

.marquee3-content li {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--marquee-element-width);
  max-height: 100%;
  margin-bottom: 0;
  font-size: calc(var(--marquee-height) * 3 / 4);
  white-space: nowrap;
}

.marquee2-content li img {
  width: auto;
  height: 100%;
}

.marquee3-content li img {
  width: auto;
  height: 100%;
}

.b2b-img {
  display: flex;
  justify-content: center;
  width: 75%;
  height: 50%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.b2c-img {
  display: flex;
  justify-content: center;
  width: 75%;
  height: 50%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.b2b-img img {
  width: 100% !important;
  object-fit: contain;
  padding: 10px;
}

.b2c-img img {
  width: 100% !important;
  object-fit: contain;
  padding: 10px;
}

@keyframes scrolling {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--marquee-element-width) * var(--marquee2-elements)), 0, 0);
  }
}

@keyframes scrolling-reverse {
  0% {
    transform: translate3d(calc(-1 * var(--marquee-element-width) * var(--marquee3-elements)), 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.home-page .topnav {
  background-color: var(--box-shadow);
}

.product-page .topnav {
  background-color: var(--box-shadow);
}











.topnav a {
  font-size: 18px;
}

.topnav span {
  font-size: 18px;
}



.navbar-nav .nav-item a.site-ai-link {
  color: var(--t-color) !important;
  background: linear-gradient(
    105deg,
    var(--c-yellow) 0%,
    #ff9c1b 32%,
    var(--c-yellow) 52%,
    #ff950b 68%,
    var(--c-yellow) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.home-page .navbar-nav .nav-item a.site-ai-link {
  color: var(--t-color) !important;
  background: linear-gradient(
    105deg,
    var(--c-yellow) 0%,
    #ff9c1b 32%,
    var(--c-yellow) 52%,
    #ff950b 68%,
    var(--c-yellow) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.product-page .navbar-nav .nav-item a.site-ai-link {
  color: var(--t-color) !important;
  background: linear-gradient(
    105deg,
    var(--c-yellow) 0%,
    #ff9c1b 32%,
    var(--c-yellow) 52%,
    #ff950b 68%,
    var(--c-yellow) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.navbar-nav li a:hover {
  background: transparent;
  outline: none;
  outline-offset: 0;
  text-decoration: none;
}

.navbar-nav li a:focus {
  background: transparent;
  outline: none;
  outline-offset: 0;
  text-decoration: none;
}





.navbar-bottom div {
  width: 95%;
  height: 3px;
  background-color: rgba(162, 162, 162, 0.47);
}

.subnav-wrap {
  align-items: stretch;
  padding-right: 0;
  padding-left: 0;
}

.subnav-wrap .subnav-list {
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0 8px;
  gap: clamp(34px, 6vw, 88px) !important;
}

.subnav-wrap .sub-nav-bar {
  top: 0;
  left: 0;
  width: 100% !important;
  height: 1px;
  margin-top: -1px;
}

.subnav-wrap .sub-nav-bar div {
  width: 100% !important;
  height: 1px;
  background-color: rgba(25, 25, 25, 0.12);
}

.subnav-wrap li.tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-height: 66px;
  padding: 0 4px 17px;
  color: rgba(25, 25, 25, 0.48);
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.subnav-wrap li.tab-btn a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.subnav-wrap li.tab-btn::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--c-yellow);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.subnav-wrap li.tab-btn:hover {
  color: rgba(25, 25, 25, 0.78) !important;
  text-decoration: none;
}

.subnav-wrap li.tab-btn:hover a {
  color: rgba(25, 25, 25, 0.78) !important;
  text-decoration: none;
}

.subnav-wrap li.tab-btn.active {
  z-index: 2;
  color: var(--t-color) !important;
  border-bottom: 0;
}

.subnav-wrap li.tab-btn.active a {
  color: var(--t-color) !important;
}

.subnav-wrap li.tab-btn.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.subnav-kr {
  color: inherit;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.subnav-en {
  margin-bottom: 5px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.7;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.2;
}

.page-intro {
  color: var(--t-color);
  font-size: 32px;
  font-weight: 800;
}

#mainBanner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #111;
  contain: layout paint;
  isolation: isolate;
}

.main-banner-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-banner-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  backface-visibility: hidden;
}

.main-banner-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.main-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.main-banner-content {
  height: 100vh;
  padding: 110px min(8vw, 120px);
}

.main-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.main-banner-dot {
  display: block;
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.main-banner-dot.is-active {
  width: 11px;
  height: 11px;
  background: #fff;
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {

  .main-banner-dot {
    transition: none;
  }
}

.black-display {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 50px;
  background-color: var(--b-black);
}

.banner-title {
  margin-bottom: 0;
}

.banner-content {
  margin: 30px 0 36px;
  font-weight: 500;
  line-height: 1.45;
}

.banner-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 34px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 50px;
}

.banner-contact:hover {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.65);
}

.certified_title {
  font-size: 40px;
  font-weight: 700;
}

.certified_content {
  font-size: 25px;
  font-weight: 500;
}

.certified_mark_img {
  max-width: 100%;
}

#egp_ca {
  position: absolute;
  top: 100px;
  z-index: -100;
  display: flex;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 6rem 0;
}

.egp_ga {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.egp_ga .egp_content {
  display: flex;
}

.egp_ga .swiper-ga-container {
  width: 100%;
}

.egp_ga .caList {
  width: 100%;
}

.egp_ga .ca_content {
  position: relative;
}

.egp_ga .ca_text {
  margin-top: 25px;
  overflow: hidden;
  color: #000;
  text-align: center;
  word-break: keep-all;
}

.egp_ga .ca_text p {
  font-size: 10px;
  word-break: keep-all;
}

.imgWrapper {
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
  padding-bottom: 50%;
}

.swiper-ga-container .imgWrapper {
  padding-bottom: 100%;
  border-radius: 10px;
}

.imgWrapper .imgItem {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.imgWrapper .imgItem img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 0;
}

.caCol .caImg {
  transition: all 0.2s ease-in-out;
}

.caCol:hover .caImg {
  transform: scale(1.5);
}

.about-section-heading {
  margin: 7vh 0 5vh;
}

.about-history-image-row {
  align-items: flex-start !important;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 4vh 0;
  background-color: #fff;
  border-radius: 50%;
}

div.od-banner-img {
  position: relative;
  overflow: hidden;
}

img.od-banner-img {
  height: 100%;
  object-fit: cover;
}

.prod-box {
  position: relative;
  background-color: #f8f8f8;
  border: none;
}

.product-hover-icon {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
}

.product-hover-text {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.prod-box .black-display {
  position: absolute;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}

.prod-box:hover .black-display {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.inquiry-category-name {
  display: block;
  color: var(--t-color);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.inquiry-category-desc {
  display: block;
  margin-top: 6px;
  color: var(--t-muted-color);
  line-height: 1.5;
}



.inquiry-current small {
  color: var(--t-muted-color);
  font-weight: 500;
}

.inquiry-form {
  display: grid;
  gap: 15px;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-field.is-full {
  grid-column: 1 / -1;
}



.inquiry-input {
  width: 100%;
  padding: 14px 16px;
  color: var(--t-color);
  outline: none;
}



.inquiry-textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--t-color);
  outline: none;
  min-height: 140px;
  resize: vertical;
}

.inquiry-extra.is-active {
  display: block;
}

.inquiry-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: center;
}

.inquiry-consent-line {
  display: flex;
  gap: 10px;
  align-items: center;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.inquiry-actions .site-btn {
  min-width: 160px;
}

.inquiry-actions .inquiry-reset-btn {
  color: var(--t-color);
  background: #f8f8f8;
  border: 1px solid var(--border-light-color);
  box-shadow: none;
}

.inquiry-actions .inquiry-reset-btn:hover {
  background: #f2f2f2;
}

.inquiry-board-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 18px;
}

.inquiry-board-switch .site-btn {
  min-width: 140px;
  min-height: 42px;
  padding: 10px 20px;
  font-size: 16px;
}

.inquiry-board-switch .site-btn.is-active {
  color: var(--t-color);
  background: var(--c-yellow);
  border-color: var(--c-yellow);
}

.inquiry-board-card {
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid var(--border-light-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.inquiry-board-table {
  width: 100%;
  border-collapse: collapse;
}

.inquiry-board-table th {
  padding: 14px 12px;
  color: var(--t-color);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--border-light-color);
}

.inquiry-board-table td {
  padding: 14px 12px;
  color: var(--t-color);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--border-light-color);
}

.inquiry-board-table tbody tr:hover {
  background: rgba(255, 192, 29, 0.06);
}

.inquiry-board-table thead th {
  background: #f8f8f8;
  border-top: 1px solid var(--border-light-color);
  border-bottom: 1px solid var(--border-light-color);
}

.inquiry-board-table td:nth-child(2) {
  text-align: left;
}

.inquiry-board-empty {
  padding: 26px 12px;
  color: var(--t-muted-color);
  font-size: 15px;
  text-align: center;
}

.inquiry-board-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.inquiry-board-pagination button {
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--t-color);
  background: #f0f0f0;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.inquiry-board-pagination button.is-active {
  background: var(--c-yellow);
}

.privacy-copy {
  font-size: 14px;
  line-height: 1.6;
}

.required-mark {
  color: #ed2b2f;
  font-weight: 600;
}

.optional-mark {
  color: var(--t-muted-color, #72757d);
  font-weight: 600;
}

textarea.input-content {
  min-height: 120px;
  border-radius: 20px;
  resize: vertical;
}

.agree-link {
  color: #191919;
  margin-left: 5px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.custom-checkbox {
  margin: 0;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox .checkmark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  vertical-align: middle;
  border: none;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: var(--c-yellow);
  border-color: var(--c-yellow);
}

.custom-checkbox .checkmark::after {
  position: absolute;
  top: 0;
  left: 6px;
  width: 8px;
  height: 15px;
  content: "";
  border: solid #000;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gtm-noscript {
  display: none;
  visibility: hidden;
}

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.custom-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  margin: auto;
  padding: 20px 25px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.custom-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.custom-modal-close:hover {
  opacity: 0.7;
}

.privacy-modal-title {
  margin: 0 28px 12px 0;
  font-size: 26px;
}

.inquiry-board-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  color: var(--t-color);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .egp_ga .egp_content {
    flex-direction: column;
  }

  .egp_ga .swiper-ga-container {
    width: 100%;
  }

  .egp_ga .ca_content {
    padding: 1rem 0.6rem;
    background-color: transparent;
  }

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

  .metric-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(25, 25, 25, 0.1);
  }

  .metric-card:nth-child(4) {
    border-top: 1px solid rgba(25, 25, 25, 0.1);
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-card-copy {
    padding: 42px 34px;
  }


  .partner-card-visual {
    min-height: 300px;
  }

  .partner-card-img {
    min-height: 300px;
  }

  .partner-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
  }

  .consult-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .consult-actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
  }

  .consult-btn {
    flex: 1;
  }






















  .gift-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gift-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gift-bottom-cta {
    grid-template-columns: 150px minmax(0, 1fr) !important;
  }

  .gift-bottom-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .gift-cta-btn {
    flex: 1;
  }

  .gift-hero-dark {
    min-height: 560px;
    padding: 100px 0 76px;
  }

  .gift-hero-dark-copy {
    max-width: 600px;
  }

  .gift-hero-dim {
    background: linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.78) 0%,
          rgba(0, 0, 0, 0.6) 58%,
          rgba(0, 0, 0, 0.35) 100%
        );
  }

  .gift-hero-kicker {
    font-size: 25px;
  }

  .gift-hero-desc {
    font-size: 18px;
  }


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

  .giftad-split-reverse {
    grid-template-columns: 1fr !important;
  }


  .giftad-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }



  .giftad-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .giftad-bottom-actions {
    width: 100%;
  }

  .giftad-cta-btn {
    flex: 1;
  }

  .product-hero {
    min-height: 540px;
  }

  .product-hero-img {
    min-height: 540px;
  }

  .product-hero-copy {
    padding: 100px 0 76px;
  }

  .product-hero-dim {
    background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.96) 0%,
          rgba(255, 255, 255, 0.86) 62%,
          rgba(255, 255, 255, 0.46) 100%
        );
  }

  .product-page .contents {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
  }


  .product-bottom-cta {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .product-bottom-actions {
    width: 100% !important;
  }

  .product-cta-btn {
    flex: 1 !important;
  }

  .product-detail-layout {
    gap: 34px !important;
  }

  .product-detail-image-card {
    min-height: 360px !important;
  }
}

@media (max-width: 767px) {
  :root {
    --marquee-elements-displayed: 2;
  }

  .inquiry-category-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }


  .inquiry-current {
    flex-direction: column;
    align-items: flex-start;
  }

  .inquiry-actions .site-btn {
    width: 100%;
    min-width: 0;
  }

  .inquiry-board-switch .site-btn {
    min-width: 0;
    width: 100%;
  }

  .inquiry-board-table th {
    padding: 10px 8px;
    font-size: 13px;
  }

  .inquiry-board-table td {
    padding: 10px 8px;
    font-size: 13px;
  }



  .main-banner-dots {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }



  .banner-contact {
    padding: 12px 28px;
    font-size: 20px;
  }

  .marquee2-content li {
    width: var(--marquee-element-width);
  }

  .marquee3-content li {
    width: var(--marquee-element-width);
  }

  .marquee2-content li img {
    width: 80%;
    height: auto;
  }

  .marquee3-content li img {
    width: 80%;
    height: auto;
  }

  .certified_mark_img {
    width: 90%;
  }

  .certified_title {
    font-size: 30px;
  }

  .certified_content {
    font-size: 20px;
  }

  .subnav-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .subnav-wrap .nav.navbar-nav.flex-row {
    justify-content: flex-start;
    gap: 28px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .subnav-wrap .subnav-list {
    justify-content: flex-start;
    gap: 28px !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .subnav-wrap .nav.navbar-nav.flex-row::-webkit-scrollbar {
    display: none;
  }

  .subnav-wrap .subnav-list::-webkit-scrollbar {
    display: none;
  }

  .subnav-wrap li.tab-btn {
    min-height: 56px;
    padding-bottom: 13px;
  }

  .subnav-en {
    margin-bottom: 4px;
  }


  .subnav-wrap .sub-nav-bar {
    left: 16px;
    width: calc(100% - 32px) !important;
  }

  .subnav-wrap .sub-nav-bar div {
    width: 100% !important;
  }

  .page-intro {
    font-size: 25px;
  }

  .page-title {
    font-size: 45px !important;
  }

  .metric-section {
    padding: 64px 0 56px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
    border-radius: 18px;
  }

  .metric-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .metric-card + .metric-card {
    border-left: 0;
    border-top: 1px solid rgba(25, 25, 25, 0.1);
  }

  .metric-value {
    margin-top: 20px;
    font-size: 38px;
  }

  .metric-desc {
    margin-top: 14px;
    font-size: 14px;
  }

  .partner-cta-section {
    padding: 56px 0 70px;
  }

  .partner-card {
    border-radius: 18px;
  }

  .partner-card-copy {
    padding: 34px 24px;
  }

  .partner-title {
    font-size: 28px;
  }

  .partner-desc {
    font-size: 15px;
  }

  .partner-card-visual {
    min-height: 230px;
  }

  .partner-card-img {
    min-height: 230px;
  }

  .partner-stats {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }

  .partner-stat strong {
    font-size: 30px;
  }

  .consult-card {
    margin-top: 22px;
  }

  .consult-copy h2 {
    font-size: 26px;
  }

  .consult-copy p {
    font-size: 15px;
  }

  .consult-actions {
    flex-direction: column;
  }

  .consult-btn {
    width: 100%;
  }









































  .history-timeline-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }

  .history-year-panel {
    padding-top: 0;
  }

  .history-year {
    font-size: 40px;
  }

  .history-year-desc {
    max-width: none;
    margin-top: 12px;
    font-size: 15px;
  }

  .history-line-panel {
    display: none;
  }

  .history-list {
    gap: 16px;
  }

  .history-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
  }

  .history-badge {
    grid-column: 2;
    width: fit-content;
    margin-top: -6px;
  }

  .history-month {
    font-size: 14px;
  }

  .history-text {
    font-size: 15px;
  }

  .history-highlight-card {
    align-items: flex-start;
    margin-top: 24px;
    padding: 22px 20px;
  }

  .history-highlight-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 24px;
  }

  .history-highlight-card strong {
    font-size: 18px;
  }

  .history-highlight-card p {
    font-size: 14px;
  }

  .gift-hero {
    padding: 34px 0 30px;
  }

  .gift-hero h1 {
    font-size: 33px;
  }

  .gift-hero h1 span {
    font-size: 0.58em;
  }

  .gift-section {
    padding: 34px 0;
  }

  .gift-section-heading {
    margin-bottom: 22px;
  }





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


  .gift-benefit-img-wrap {
    height: 170px;
  }

  .gift-reason-item {
    padding: 22px 0;
  }

  .gift-bottom-cta-section {
    padding: 34px 0 70px;
  }

  .gift-bottom-cta {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gift-bottom-device {
    width: 170px;
    height: 120px;
  }

  .gift-bottom-copy h2 {
    font-size: 25px;
  }

  .gift-bottom-copy p {
    font-size: 14px;
  }

  .gift-bottom-actions {
    flex-direction: column;
  }

  .gift-hero-dark {
    min-height: 560px;
    padding: 86px 0 62px;
  }

  .gift-hero-dim {
    background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.74) 0%,
          rgba(0, 0, 0, 0.66) 54%,
          rgba(0, 0, 0, 0.48) 100%
        );
  }

  .gift-hero-kicker {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .gift-hero-title {
    font-size: 38px;
    line-height: 1.18;
  }

  .gift-hero-zero {
    margin-top: 14px;
    font-size: 22px;
  }

  .gift-hero-desc {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .gift-hero-actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .gift-btn {
    width: 100%;
  }

  .gift-hero-tags {
    gap: 8px;
    margin-top: 26px;
  }

  .gift-hero-tags span {
    font-size: 12px;
  }


  .giftad-hero-dim {
    background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.76) 0%,
          rgba(0, 0, 0, 0.68) 52%,
          rgba(0, 0, 0, 0.5) 100%
        );
  }

  .giftad-hero-kicker {
    font-size: 21px;
  }

  .giftad-hero h1 {
    font-size: 37px;
  }

  

  .giftad-hero-actions {
    flex-direction: column !important;
  }

  .giftad-btn {
    width: 100%;
  }

  .giftad-section {
    padding: 54px 0 !important;
  }


  .giftad-copy h2 {
    font-size: 27px;
  }


  .giftad-copy p {
    font-size: 15px;
  }

  .giftad-dashboard-card {
    padding: 22px;
    border-radius: 18px;
  }

  .giftad-report-card {
    padding: 22px;
    border-radius: 18px;
  }

  .giftad-dashboard-stats {
    grid-template-columns: 1fr !important;
  }

  .giftad-report-top {
    grid-template-columns: 1fr !important;
  }

  .giftad-chart-area {
    grid-template-columns: 1fr !important;
  }

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

  .giftad-store-icons {
    grid-template-columns: 1fr !important;
  }



  .giftad-bar-chart {
    height: 160px !important;
  }

  .giftad-store-img-wrap {
    min-height: 250px !important;
  }

  .giftad-store-copy {
    padding: 34px 24px !important;
  }

  .giftad-store-copy h2 {
    font-size: 28px;
  }


  .giftad-bottom-copy h2 {
    font-size: 25px;
  }

  .giftad-bottom-actions {
    flex-direction: column;
  }

  .giftad-cta-btn {
    width: 100%;
  }


  .product-hero-img {
    min-height: 520px;
    object-position: center;
  }

  .product-hero-dim {
    background: linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.94) 0%,
          rgba(255, 255, 255, 0.86) 58%,
          rgba(255, 255, 255, 0.62) 100%
        );
  }

  .product-hero-copy {
    padding: 86px 0 60px;
  }

  .product-hero-copy h1 {
    font-size: 36px;
  }

  .product-hero-copy p {
    font-size: 15px;
  }

  .product-hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .product-hero-points div {
    width: 100%;
  }

  .product-page .contents {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .product-filter-wrap {
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }


  .product-card {
    border-radius: 14px;
  }

  .product-card-img-box {
    height: 130px;
    padding: 16px;
  }

  .product-card-img {
    max-height: 100px;
  }



  .product-card-maker {
    font-size: 12px;
  }

  .product-card-category {
    font-size: 12px;
  }




  .product-bottom-cta h2 {
    font-size: 25px;
  }

  .product-bottom-actions {
    flex-direction: column;
  }

  .product-cta-btn {
    width: 100%;
  }

  .product-detail-wrap {
    padding: 10px 0 56px;
  }

  .prod-back-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 22px;
  }

  .product-detail-layout {
    gap: 28px;
  }

  .product-detail-image-card {
    min-height: 280px;
    padding: 28px;
    border-radius: 12px;
  }

  .product-detail-img {
    max-height: 240px;
  }

  #prod_name {
    font-size: 32px;
  }

  #prod_maker {
    font-size: 16px;
  }

  .product-spec-table td {
    padding: 11px 0;
    font-size: 13px;
  }

  .product-spec-table th {
    padding: 11px 0;
    font-size: 13px;
    width: 92px;
    padding-right: 12px;
  }
}

.popup-container {
  position: fixed;
  top: 100px;
  left: 50%;
  z-index: 999999999;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 55%;
  max-width: 80vw;
  transform: translateX(-50%);
}

.notice-modal-content {
  height: 70vh;
}

.popup-wrap {
  position: fixed;
  inset: 0;
  top: 0 !important;
  left: 0 !important;
  z-index: 999999999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

.popup-body {
  min-width: 300px;
  min-height: 250px;
  overflow-x: hidden;
  overflow-y: scroll;
  word-break: break-word;
}

.popup-body img {
  width: 100% !important;
  height: 100%;
  object-fit: contain;
}

.popup-body p {
  width: 100% !important;
  height: 100%;
  margin: 0;
}

.popup-body::-webkit-scrollbar {
  width: 3px;
}

.popup-body::-webkit-scrollbar-track {
  background: #fff;
}

.popup-body::-webkit-scrollbar-thumb {
  background: #f4b000;
}

.popup-footer {
  display: flex;
  justify-content: space-between;
  height: fit-content;
  background-color: #fff;
}

.popup-footer .closebtn {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.popup-footer .checkedtoday {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  #egp_ca {
    top: 0;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 0;
  }

  .location iframe {
    width: 350px;
  }
}

@media (max-width: 576px) {
  .popup-container {
    width: 100% !important;
  }
}

.strength-section {
  padding: 90px 0 80px;
  background: #f8f8f8;
}

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

.strength-card {
  position: relative;
  min-height: 280px;
  padding: 38px 30px 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light-color);
}

.strength-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  background: rgba(255, 192, 29, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}


.strength-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  color: var(--t-color);
  font-size: 28px;
  background: var(--c-yellow);
  border-radius: 20px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
}

.strength-desc {
  margin: 16px 0 0;
  color: var(--t-muted-color);
  letter-spacing: -0.02em;
}

.metric-section {
  padding: 90px 0 80px;
  background: #fff;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 46px auto 0;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.metric-card {
  position: relative;
  min-height: 190px;
  padding: 34px 30px 30px;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.metric-card + .metric-card {
  border-left: 1px solid rgba(25, 25, 25, 0.1);
}

.metric-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--t-color);
  font-size: 24px;
  background: rgba(255, 192, 29, 0.18);
  border-radius: 10px;
  padding: 20px;
}

.metric-label {
  margin: 0;
  color: var(--t-color);
  font-size: 25px;
  line-height: 1.3;
}

.metric-value {
  display: flex;
  align-items: baseline;
  margin-top: 24px;
  color: #111;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-suffix {
  margin-left: 2px;
  color: #111;
  font-size: 0.72em;
  font-weight: 900;
}

.metric-desc {
  margin: 18px 0 0;
  color: var(--t-muted-color);
}

.solution-section {
  padding: 90px 0 100px;
  background: #fff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.solution-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
}


.solution-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.solution-link:hover {
  color: inherit;
  text-decoration: none;
}

.solution-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8f8f8;
}

.solution-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}


.solution-body {
  padding: 26px 24px 28px;
}

.solution-title {
  margin: 0;
  color: var(--t-color);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.solution-desc {
  min-height: 78px;
  margin: 14px 0 22px;
  color: var(--t-muted-color);
  letter-spacing: -0.02em;
}

.solution-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 16px;
  color: var(--t-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.solution-btn i {
  font-size: 12px;
}

.solution-card:hover .solution-btn {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  transform: translateX(2px);
}

.why-section {
  padding: 86px 0 78px;
  background: #fff;
}

.why-section .section-heading {
  margin-bottom: 46px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  padding: 4px 28px 0;
  text-align: center;
}

.why-card + .why-card {
  border-left: 1px solid rgba(25, 25, 25, 0.08);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  color: #191919;
  font-size: 30px;
  background: rgba(255, 192, 29, 0.12);
  border-radius: 50%;
}

.why-title {
  margin: 0;
  color: var(--t-color);
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.why-desc {
  margin: 16px 0 0;
  color: var(--t-muted-color);
  letter-spacing: -0.03em;
}

.partner-cta-section {
  padding: 70px 0 100px;
  background: #fff;
}

.partner-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 42%) minmax(170px, 16%);
  min-height: 360px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.partner-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 42px;
  background: #fff;
}

.partner-card-copy::after {
  position: absolute;
  top: 0;
  right: -120px;
  bottom: 0;
  z-index: -1;
  width: 190px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 1) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  pointer-events: none;
}

.partner-kicker {
  margin: 0 0 12px;
  color: var(--c-yellow-dark);
}

.partner-title {
  margin: 0;
  color: var(--t-color);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.partner-desc {
  margin: 22px 0 0;
  color: var(--t-muted-color);
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  margin-top: 30px;
  padding: 11px 20px;
  color: var(--t-color);
  font-size: 15px;
  font-weight: 800;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.16);
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
}

.partner-btn:hover {
  color: var(--t-color);
  background: var(--c-yellow);
  border-color: var(--c-yellow);
}

.partner-btn i {
  font-size: 12px;
}

.partner-card-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.partner-card-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.partner-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 36px 28px;
  color: #fff;
  background: #1f1f1f;
}

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

.partner-stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.partner-stat strong {
  color: #fff;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.partner-stat span:not(.partner-stat-label) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.consult-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 38px 46px;
  overflow: hidden;
  background: radial-gradient(circle at 92% 20%, rgba(255, 255, 255, 0.26) 0 90px, transparent 92px),
    linear-gradient(135deg, var(--c-yellow) 0%, #ffb21a 100%);
}

.consult-card::after {
  position: absolute;
  right: -20px;
  bottom: -44px;
  width: 230px;
  height: 170px;
  border: 18px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 90px 0;
  content: "";
  pointer-events: none;
}

.consult-copy {
  position: relative;
  z-index: 1;
}

.consult-copy h2 {
  margin: 0;
  color: var(--t-color);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.consult-copy p {
  margin: 12px 0 0;
  color: rgba(25, 25, 25, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.consult-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 999px;
  text-decoration: none;
}

.consult-btn:hover {
  text-decoration: none;
}

.consult-btn-dark {
  color: #fff;
  background: #191919;
}

.consult-btn-dark:hover {
  color: #fff;
  background: #000;
}

.consult-btn-light {
  color: var(--t-color);
  background: #fff;
}

.consult-btn-light:hover {
  color: var(--t-color);
  background: rgba(255, 255, 255, 0.9);
}

.consult-btn i {
  font-size: 13px;
}

.about-tab-list {
  justify-content: center !important;
}

.about-hero-section {
  padding: 70px 0 40px;
}

.about-hero-heading {
  margin: 0 auto 58px;
  text-align: center;
}

.about-hero-kicker {
  margin: 0 0 10px;
  color: var(--t-light-color);
}

.about-hero-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
}

.about-hero-highlight {
  margin: 18px 0 0;
  color: var(--c-yellow-dark);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.about-hero-desc {
  max-width: 620px;
  margin: 16px auto 0;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.about-intro-card {
  display: grid;
  align-items: center;
  margin: 0 auto;
}

.about-intro-copy {
  color: var(--t-color);
}

.about-intro-kicker {
  margin: 0 0 12px;
  color: var(--t-light-color);
}

.about-intro-copy h2 {
  margin: 0 0 22px;
  color: var(--t-color);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.about-intro-copy p {
  margin: 0 0 14px;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

.about-intro-visual {
  position: relative;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.about-intro-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0) 38%
  );
  content: "";
  pointer-events: none;
}

.about-intro-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.01);
}

.about-value-section {
  padding: 70px 0 80px;
}

.about-value-group + .about-value-group {
  margin-top: 72px;
}

.about-value-group .section-heading {
  margin-bottom: 34px;
}

.about-value-grid {
  display: grid;
  margin: 0 auto;
}



.about-value-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  text-align: center;
}


.about-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  background: rgba(255, 192, 29, 0.12);
  border-radius: 50%;
}

.about-value-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.about-value-title {
  margin: 0;
  color: var(--t-color);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.about-value-desc {
  margin: 14px 0 0;
  color: var(--t-muted-color);
  letter-spacing: -0.03em;
}

.about-growth-section {
  padding: 64px 0 72px;
}

.about-growth-section .section-heading {
  margin-bottom: 30px;
}

.about-growth-grid {
  display: grid;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 18px;
}

.about-growth-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  padding: 28px 24px;
  background: #fff;
}

.about-growth-card + .about-growth-card {
  border-left: 1px solid rgba(25, 25, 25, 0.08);
}

.about-growth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--t-color);
  font-size: 22px;
  background: rgba(255, 192, 29, 0.14);
  border-radius: 14px;
}

.about-growth-label {
  margin: 0 0 8px;
  color: var(--t-muted-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.about-growth-value {
  display: flex;
  align-items: baseline;
  color: var(--t-color);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-growth-value span:last-child {
  margin-left: 2px;
  font-size: 0.72em;
  font-weight: 900;
}

.about-ceo-section {
  padding: 64px 0 80px;
}

.about-ceo-card {
  display: grid;
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.about-ceo-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 46px;
  background: #fff;
}

.about-ceo-copy::after {
  position: absolute;
  top: 0;
  right: -130px;
  bottom: 0;
  z-index: -1;
  width: 200px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.94) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  pointer-events: none;
}

.about-ceo-title {
  margin: 0;
  color: var(--t-color);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.23;
  letter-spacing: -0.05em;
}

.about-ceo-desc {
  margin: 22px 0 0;
  letter-spacing: -0.02em;
}

.about-ceo-desc + .about-ceo-desc {
  margin-top: 16px;
}

.about-ceo-sign {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.about-ceo-sign span {
  color: var(--t-color);
  font-size: 15px;
  font-weight: 800;
}

.about-ceo-sign img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.about-ceo-visual {
  position: relative;
  min-height: 360px;
  background: #f4f4f4;
}

.about-ceo-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.about-location-section {
  padding: 64px 0 90px;
  background: #fff;
}

.about-location-inner {
  display: grid;
  gap: 34px;
  margin: 0 auto;
  align-items: stretch;
}

.about-location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-location-title {
  margin: 0 0 30px;
  color: var(--t-color);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.about-location-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(25, 25, 25, 0.1);
}

.about-location-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
}

.about-location-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--c-yellow-dark);
  font-size: 18px;
}

.about-location-copy h3 {
  margin: 0 0 8px;
  color: var(--t-color);
  font-size: 18px;
  line-height: 1.3;
}

.about-location-copy p {
  margin: 0;
  color: var(--t-muted-color);
}

.about-location-help {
  margin: 20px 0 0;
  color: var(--t-light-color);
  font-size: 14px;
  line-height: 1.5;
}

.about-location-map-wrap {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #f4f4f4;
}

.about-location-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.map-btn {
  margin-top: 12px;
  padding: 7px 18px;
  color: #191919;
  font-size: 14px;
  font-weight: 800;
  background-color: #f0f0f0;
  border: none;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.map-btn:hover {
  transform: translateY(-1px);
}

.map-btn.active {
  background-color: var(--c-yellow) !important;
}

.map-copy-toast {
  padding: 6px 10px;
  color: var(--t-color);
  font-size: 14px;
  font-weight: 700;
}

.about-history-tab {
  min-height: auto;
}

.history-timeline-item {
  display: grid;
  grid-template-columns: minmax(160px, 24%) 34px minmax(0, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 0;
}

.history-timeline-item + .history-timeline-item {
  border-top: 1px solid rgba(25, 25, 25, 0.08);
}

.history-year-panel {
  padding-top: 4px;
}

.history-year {
  margin: 0;
  color: var(--t-color);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.history-year-desc {
  max-width: 170px;
  margin: 22px 0 0;
  color: var(--t-muted-color);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.03em;
}

.history-line-panel {
  position: relative;
  display: flex;
  justify-content: center;
}

.history-dot {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  margin-top: 13px;
  background: var(--c-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 192, 29, 0.14);
}

.history-line {
  position: absolute;
  top: 26px;
  bottom: -54px;
  left: 50%;
  width: 1px;
  background: rgba(25, 25, 25, 0.1);
  transform: translateX(-50%);
}

.history-timeline-item:last-child .history-line {
  display: none;
}

.history-content-panel {
  min-width: 0;
}

.history-list {
  display: grid;
  gap: 18px;
}

.history-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0;
}

.history-month {
  color: var(--t-color);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

.history-text {
  color: var(--t-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.history-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 10px;
  color: #8a6a00;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 192, 29, 0.16);
  border: 1px solid rgba(255, 192, 29, 0.28);
  border-radius: 999px;
  white-space: nowrap;
}

.history-highlight-card {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 26px 30px;
  background: linear-gradient(135deg, rgba(255, 192, 29, 0.13) 0%, rgba(255, 192, 29, 0.05) 100%);
  border: 1px solid rgba(255, 192, 29, 0.28);
  border-radius: 18px;
}

.history-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--c-yellow-dark);
  font-size: 28px;
  background: rgba(255, 192, 29, 0.18);
  border-radius: 16px;
}

.history-highlight-card strong {
  display: block;
  color: var(--t-color);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.history-highlight-card p {
  margin: 8px 0 0;
  color: var(--t-muted-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.giftorder-page {
  background: #fff;
  color: #191919;
  word-break: keep-all;
}


.gift-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.gift-hero h1 span {
  display: inline-block;
  margin-top: 12px;
  color: #f5a900;
  font-size: 0.55em;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.gift-section {
  padding: 42px 0;
  background: #fff;
}

.gift-section-heading {
  margin-bottom: 28px;
}

.gift-section-heading h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
}

.gift-section-heading span {
  color: #f5a900;
}

.gift-card-grid {
  display: grid;
}



.gift-small-card {
  min-height: 178px;
  padding: 26px 18px 24px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  text-align: center;
}

.gift-problem-section .gift-small-card {
  height: 500px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media (max-width: 767px) {
  .gift-problem-section .gift-small-card {height: 600px;}

  
}

.gift-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: #191919;
  font-size: 25px;
  background: rgba(255, 192, 29, 0.13);
  border-radius: 18px;
}

.gift-small-card h3 {
  margin: 0;
  color: #191919;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin-top: 30px;
}

.gift-small-card p {
  margin: 12px 0 0;
}

.gift-benefit-section {
  padding-top: 48px;
}

.gift-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gift-benefit-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.gift-benefit-copy {
  padding: 26px 24px 18px;
}

.gift-benefit-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f5a900;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.gift-benefit-copy h3 {
  margin: 0 0 14px;
  color: #191919;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.gift-benefit-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gift-benefit-copy li {
  position: relative;
  padding-left: 13px;
  color: rgba(25, 25, 25, 0.68);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.gift-benefit-copy li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #ffc01d;
  border-radius: 50%;
  content: "";
}

.gift-benefit-img-wrap {
  height: 180px;
  background: #f8f8f8;
}

.gift-benefit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-reason-section {
  padding-top: 46px;
}

.gift-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gift-reason-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px 18px;
  background: #fff;
  border-top: 1px solid rgba(25, 25, 25, 0.1);
}

.gift-reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #191919;
  font-size: 20px;
  background: rgba(255, 192, 29, 0.16);
  border-radius: 14px;
}

.gift-reason-item h3 {
  margin: 0;
  color: #191919;
  font-size: 17px;
  line-height: 1.35;
}

.gift-reason-item p {
  margin: 8px 0 0;
  color: rgba(25, 25, 25, 0.58);
}

.gift-bottom-cta-section {
  padding: 42px 0 90px;
  background: #fff;
}

.gift-bottom-cta {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 220px;
  gap: 30px;
  align-items: center;
  padding: 34px 38px;
  overflow: hidden;
  background: radial-gradient(circle at 92% 20%, rgba(255, 255, 255, 0.34) 0 78px, transparent 80px),
    linear-gradient(135deg, #ffd46a 0%, #ffc01d 100%);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(255, 192, 29, 0.3);
}

.gift-bottom-device {
  overflow: hidden;
  height: 135px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.gift-bottom-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-bottom-copy h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.gift-bottom-copy p {
  margin: 12px 0 0;
}

.gift-bottom-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gift-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.gift-cta-btn:hover {
  text-decoration: none;
}

.gift-cta-dark {
  color: #fff;
  background: #191919;
}

.gift-cta-dark:hover {
  color: #fff;
  background: #000;
}

.gift-cta-light {
  color: #191919;
  background: #fff;
}

.gift-cta-light:hover {
  color: #191919;
  background: rgba(255, 255, 255, 0.9);
}

.gift-hero {
  padding: 70px 0 44px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.gift-hero-dark {
  display: flex;
  align-items: center;
}

.gift-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.gift-hero-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.62);
}

.gift-hero-dark .container {
  position: relative;
  z-index: 2;
  padding: 60px;
}


.gift-hero-kicker {
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.3;
}

.gift-hero-title {
  margin: 0;
}

.gift-hero-zero {
  margin: 18px 0 0;
  color: #ffc01d;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.gift-hero-desc {
  max-width: 620px;
  margin: 26px 0 0;
  letter-spacing: -0.03em;
}

.gift-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gift-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 26px;
  color: #191919;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.gift-btn:hover {
  color: #191919;
  text-decoration: none;
  transform: translateY(-1px);
}

.gift-btn-primary {
  color: #191919;
  background: #ffc01d;
  border: 1px solid #ffc01d;
}

.gift-btn-primary:hover {
  color: #191919;
  background: #f5b400;
  border-color: #f5b400;
}

.gift-btn-white {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.gift-btn-white:hover {
  color: #191919;
  background: #fff;
  border-color: #fff;
}

.gift-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.gift-hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.gift-hero-tags i {
  color: #ffc01d;
}

.giftad-page {
  background: #fff;
  color: #191919;
  word-break: keep-all;
}




.giftad-hero::after {
  background: #fff;
}



.giftad-hero-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.62);
}

.giftad-hero .container {
  position: relative;
  z-index: 2;
}





.giftad-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.06em;
}

.giftad-hero h1 span {
  color: #ffc01d;
}





.giftad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 26px;
  color: #191919;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.giftad-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.giftad-btn-primary {
  background: #ffc01d;
  border: 1px solid #ffc01d;
}

.giftad-btn-primary:hover {
  color: #191919;
  background: #f5b400;
  border-color: #f5b400;
}

.giftad-btn-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.giftad-btn-outline:hover {
  color: #191919;
  background: #fff;
  border-color: #fff;
}

.giftad-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.giftad-hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.giftad-hero-tags i {
  color: #ffc01d;
}

.giftad-section {
  padding: 76px 0;
  background: #fff;
}

.giftad-section-heading {
  margin-bottom: 34px;
}

.giftad-section-heading h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.28;
}

.giftad-copy h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.giftad-section-heading p {
  margin: 18px 0 0;
  letter-spacing: -0.03em;
}

.giftad-copy p {
  margin: 18px 0 0;
  color: rgba(25, 25, 25, 0.62);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

.giftad-section-num {
  display: inline-flex;
  margin: 0 0 12px !important;
  color: #ffc01d !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

.giftad-split {
  display: grid;
  align-items: center;
}

.giftad-split-reverse {
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
}

.giftad-copy {
  min-width: 0;
}

.giftad-check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.giftad-check-list li {
  position: relative;
  padding-left: 28px;
  color: #191919;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.giftad-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  color: #ffc01d;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.giftad-dashboard-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.giftad-report-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.giftad-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.giftad-dashboard-head strong {
  display: block;
  color: #191919;
  font-size: 18px;
  font-weight: 900;
}

.giftad-dashboard-head span {
  display: block;
  margin-top: 6px;
  color: rgba(25, 25, 25, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.giftad-dashboard-head em {
  padding: 7px 10px;
  color: #8a6a00;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  background: rgba(255, 192, 29, 0.18);
  border-radius: 999px;
}

.giftad-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.giftad-report-top {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.giftad-dashboard-stats div {
  padding: 16px 14px;
  background: #f8f8f8;
  border-radius: 14px;
}

.giftad-report-top div {
  padding: 16px 14px;
  background: #f8f8f8;
  border-radius: 14px;
}

.giftad-dashboard-stats span {
  display: block;
  color: rgba(25, 25, 25, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.giftad-report-top span {
  display: block;
  color: rgba(25, 25, 25, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.giftad-dashboard-stats strong {
  display: block;
  margin-top: 8px;
  color: #191919;
  font-size: 18px;
  font-weight: 900;
}

.giftad-report-top strong {
  display: block;
  margin-top: 8px;
  color: #191919;
  font-size: 18px;
  font-weight: 900;
}

.giftad-chart-area {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  gap: 24px;
  align-items: center;
  margin-top: 26px;
}

.giftad-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 13px;
  height: 190px;
  padding: 22px;
  background: #f8f8f8;
  border-radius: 16px;
}

.giftad-bar-chart span {
  width: 24px;
  background: #d9dee8;
  border-radius: 999px 999px 4px 4px;
}

.giftad-bar-chart span.is-active {
  background: #ffc01d;
}

.giftad-donut-chart {
  display: flex;
  gap: 18px;
  align-items: center;
}

.giftad-donut {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: conic-gradient(#ffc01d 0 42%, #3167fb 42% 72%, #d9dee8 72% 100%);
  position: relative;
}

.giftad-donut::after {
  position: absolute;
  inset: 24px;
  background: #fff;
  border-radius: 50%;
  content: "";
}

.giftad-donut-chart ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.giftad-donut-chart li {
  color: rgba(25, 25, 25, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.giftad-donut-chart li span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: #ffc01d;
  border-radius: 50%;
}

.giftad-donut-chart li:nth-child(2) span {
  background: #3167fb;
}

.giftad-donut-chart li:nth-child(3) span {
  background: #d9dee8;
}

.giftad-line-chart {
  height: 190px;
  margin-top: 26px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 16px;
}

.giftad-line-chart svg {
  width: 100%;
  height: 100%;
}

.giftad-line-chart polyline {
  fill: none;
  stroke: #ffc01d;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.giftad-line-chart .line-sub {
  stroke: #3167fb;
  stroke-width: 5;
  opacity: 0.7;
}

.giftad-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.giftad-mini-grid div {
  padding: 20px 14px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.giftad-mini-grid i {
  color: #ffc01d;
  font-size: 24px;
}

.giftad-mini-grid strong {
  display: block;
  margin-top: 12px;
  color: #191919;
  font-size: 15px;
  font-weight: 900;
}

.giftad-mini-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(25, 25, 25, 0.54);
  font-size: 12px;
  font-weight: 700;
}

.giftad-process-section {
  background: #f8f8f8;
}

.giftad-process-grid {
  display: grid;
}

.giftad-process-card {
  position: relative;
  padding: 30px 22px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  text-align: center;
}

.giftad-process-card span {
  position: absolute;
  top: 16px;
  left: 18px;
  color: #ffc01d;
  font-size: 14px;
  font-weight: 900;
}

.giftad-process-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: #191919;
  font-size: 25px;
  background: rgba(255, 192, 29, 0.14);
  border-radius: 18px;
}

.giftad-process-card h3 {
  margin: 0;
  color: #191919;
  font-size: 18px;
}

.giftad-process-card p {
  margin: 12px 0 0;
}

.giftad-store-card {
  display: grid;
  overflow: hidden;
  background: #fff;
}

.giftad-store-img-wrap {
  min-height: 360px;
  background: #f8f8f8;
}

.giftad-store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.giftad-store-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
}

.giftad-store-copy h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.giftad-store-copy p {
  margin: 22px 0 0;
  color: rgba(25, 25, 25, 0.62);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.giftad-store-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.giftad-store-icons div {
  padding: 18px 10px;
  background: #f8f8f8;
  border-radius: 15px;
  text-align: center;
}

.giftad-store-icons i {
  color: #ffc01d;
  font-size: 24px;
}

.giftad-store-icons strong {
  display: block;
  margin-top: 10px;
  color: #191919;
  font-size: 13px;
  font-weight: 900;
}

.giftad-product-grid {
  display: grid;
  align-items: stretch;
}

.giftad-product-card {
  display: flex;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.giftad-product-img-wrap {
  background: #f8f8f8;
  flex: 0 0 210px;
}

.giftad-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-top: 20px;
}

.giftad-product-copy {
  padding: 24px;
  flex: 2;
}

.giftad-product-copy span {
  color: #ffc01d;
  font-size: 13px;
  font-weight: 900;
}

.giftad-product-copy h3 {
  margin: 10px 0 0;
  color: #191919;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.giftad-product-copy ul {
  margin: 7px 0 0px;
  color: rgba(25, 25, 25, 0.58);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  padding-inline-start: 20px;
}

.giftad-product-copy a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #191919;
  font-size: 14px;
  font-weight: 900;
  margin-top: 10px;
}

.giftad-product-copy a:hover {
  color: #ffc01d;
}

.giftad-partner-section {
  padding-top: 60px;
}

.giftad-bottom-cta-section {
  padding: 40px 0 90px;
  background: #fff;
}

.giftad-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 44px;
  background: radial-gradient(circle at 94% 14%, rgba(255, 255, 255, 0.32) 0 82px, transparent 84px),
    linear-gradient(135deg, #ffd46a 0%, #ffc01d 100%);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(255, 192, 29, 0.3);
}

.giftad-bottom-copy h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.giftad-bottom-copy p {
  margin: 12px 0 0;
}

.giftad-bottom-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.giftad-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.giftad-cta-btn:hover {
  text-decoration: none;
}

.giftad-cta-dark {
  color: #fff;
  background: #191919;
}

.giftad-cta-dark:hover {
  color: #fff;
  background: #000;
}

.giftad-cta-light {
  color: #191919;
  background: #fff;
}

.giftad-cta-light:hover {
  color: #191919;
  background: rgba(255, 255, 255, 0.9);
}

.product-page {
  background: #fff;
}

.product-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
  isolation: isolate;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.product-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.product-hero-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.86) 42%,
      rgba(255, 255, 255, 0.32) 72%,
      rgba(255, 255, 255, 0.08) 100%
    );
  pointer-events: none;
}

.product-hero-inner {
  position: relative;
  z-index: 2;
}

.product-hero-copy {
  padding: 120px 0 92px;
}

.product-hero-kicker {
  margin: 0 0 12px;
  color: #f5a900;
}

.product-hero-copy h1 {
  margin: 0;
}

.product-hero-copy p {
  margin: 24px 0 0;
  letter-spacing: -0.03em;
}

.product-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.product-hero-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-hero-points i {
  color: #ffc01d;
  font-size: 22px;
}

.product-hero-points span {
  color: #191919;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.product-page .contents {
  padding-top: 70px;
  padding-bottom: 90px;
}

.product-section-heading {
  margin-bottom: 28px;
}

.product-section-kicker {
  margin: 0 0 8px;
  color: #f5a900;
}

.product-section-heading h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.3;
}

.product-section-heading p {
  margin: 14px 0 0;
}

.product-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 34px;
}

.product-filter-btn {
  min-width: 92px;
  color: #191919;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-filter-btn:hover {
  transform: translateY(-1px);
}


.product-list-grid {
  row-gap: 4px;
}

.product-item.is-hidden {
  display: none;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 330px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
}


.product-card-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 165px;
  padding: 20px;
  background: #f8f8f8;
}

.product-card-img {
  max-width: 100%;
  max-height: 125px;
  object-fit: contain;
}

.product-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 18px 18px;
  text-align: center;
}

.product-card-title {
  margin: 0;
  color: #191919;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.product-card-maker {
  margin: 8px 0 0;
  color: rgba(25, 25, 25, 0.48);
  font-size: 12px;
  font-weight: 700;
}

.product-card-category {
  margin: 9px 0 16px;
  color: rgba(25, 25, 25, 0.6);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.product-more-btn {
  width: fit-content;
  margin: auto auto 0;
  padding: 7px 14px;
  color: #191919;
  font-size: 12px;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.12);
}

.product-card:hover .product-more-btn {
  background: #ffc01d;
  border-color: #ffc01d;
}

.product-hover-layer {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(25, 25, 25, 0.58);
  border-radius: inherit;
}

.product-card:hover .product-hover-layer {
  display: flex;
}

#product-detail-box {
  padding: 30px 0 70px;
}

.product-support-section {
  margin-top: 54px;
}

.product-support-card {
  padding: 44px 36px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  text-align: center;
}

.product-support-card h2 {
  margin: 0 0 30px;
  color: #191919;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.product-support-grid {
  display: grid;
  gap: 16px;
}

.product-support-item {
  padding: 24px 18px;
  background: #f8f8f8;
  border-radius: 16px;
}

.product-support-item i {
  color: #ffc01d;
  font-size: 28px;
}

.product-support-item h3 {
  margin: 16px 0 0;
  color: #191919;
  font-size: 17px;
}

.product-support-item p {
  margin: 10px 0 0;
}

.product-bottom-cta-section {
  margin-top: 34px;
}

.product-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 44px;
  background: radial-gradient(circle at 94% 14%, rgba(255, 255, 255, 0.34) 0 82px, transparent 84px),
    linear-gradient(135deg, #ffd46a 0%, #ffc01d 100%);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(255, 192, 29, 0.3);
}

.product-bottom-cta h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.28;
  letter-spacing: -0.05em;
}

.product-bottom-cta p {
  margin: 12px 0 0;
}

.product-bottom-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.product-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.product-cta-btn:hover {
  text-decoration: none;
}

.product-cta-dark {
  color: #fff;
  background: #191919;
}

.product-cta-dark:hover {
  color: #fff;
  background: #000;
}

.product-cta-light {
  color: #191919;
  background: #fff;
}

.product-cta-light:hover {
  color: #191919;
  background: rgba(255, 255, 255, 0.92);
}

.product-detail-wrap {
  padding: 20px 0 70px;
}

.prod-back-btn {
  background-color: #191919;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 28px;
  padding: 10px 18px;
  color: #191919;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 999px;
  box-shadow: none;
}

.prod-back-btn:hover {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
  color: #191919;
  background: #ffc01d;
  border-color: #ffc01d;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 46%) minmax(0, 54%);
  gap: 54px;
  align-items: flex-start;
}

.product-detail-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 42px;
  background: #f8f8f8;
  border-radius: 8px;
}

.product-detail-image-card #prod_img {
  width: 100%;
}

.product-detail-img {
  aspect-ratio: 1;
  background: #f8f8f8;
  border-radius: 20px;
  padding: 28px;
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-detail-info-card {
  padding-top: 8px;
}

.product-detail-kicker {
  margin-bottom: 10px;
  color: rgba(25, 25, 25, 0.45);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-detail-heading {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 28px;
}

#prod_name {
  color: #191919;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

#prod_maker {
  opacity: 0.7;
  margin-top: 10px;
  color: rgba(25, 25, 25, 0.72);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.product-spec-table-wrap {
  width: 100%;
  border-top: 2px solid rgba(25, 25, 25, 0.9);
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.product-spec-table th {
  padding: 13px 0;
  color: #191919;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(25, 25, 25, 0.12);
  width: 116px;
  padding-right: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.product-spec-table td {
  padding: 13px 0;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(25, 25, 25, 0.12);
  color: rgba(25, 25, 25, 0.72);
  font-weight: 600;
}

.inquiry-process-section {
  background: #fff;
}

.inquiry-process-heading {
  margin-bottom: 34px;
}

.inquiry-process-heading h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
}

.inquiry-process-heading p {
  margin: 12px 0 0;
}

.inquiry-process-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.inquiry-process-item {
  text-align: center;
}

.inquiry-process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  color: #191919;
  font-size: 32px;
  background: rgba(255, 192, 29, 0.13);
  border-radius: 50%;
}

.inquiry-process-num {
  margin-bottom: 6px;
  color: #ffc01d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.inquiry-process-item h3 {
  margin: 0;
  color: #191919;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.inquiry-process-item p {
  margin: 10px 0 0;
  color: rgba(25, 25, 25, 0.58);
}

.inquiry-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(25, 25, 25, 0.32);
  font-size: 16px;
}

.split-home-page .topnav {
  background-color: rgba(11, 15, 24, 0.88);
}

.split-home-page .topnav a,
.split-home-page .topnav span,
.split-home-page .navbar-nav .nav-item a {
  color: #fff !important;
}





.brand-gateway-panel:hover,
.brand-gateway-panel:focus {
  color: #fff;
  text-decoration: none;
}

.brand-gateway-bg,
.brand-gateway-overlay {
  position: absolute;
  inset: 0;
}

.brand-gateway-bg {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.brand-gateway-panel-eggpool .brand-gateway-bg {
  background-image: url("/eggpool/images/eggpool-partner-office.webp");
}

.brand-gateway-panel-egglink .brand-gateway-bg {
  background-image: url("/eggpool/dev/ad/pre.webp");
}

.brand-gateway-overlay {
  z-index: -1;
  transition: opacity 0.35s ease;
}

.brand-gateway-panel-eggpool .brand-gateway-overlay {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.32) 0%, rgba(5, 7, 10, 0.88) 100%),
    linear-gradient(115deg, rgba(255, 192, 29, 0.78) 0%, rgba(26, 26, 26, 0.12) 54%);
}

.brand-gateway-panel-egglink .brand-gateway-overlay {
  background:
    linear-gradient(180deg, rgba(6, 10, 14, 0.26) 0%, rgba(6, 10, 14, 0.88) 100%),
    linear-gradient(115deg, rgba(0, 132, 119, 0.76) 0%, rgba(33, 28, 18, 0.16) 58%);
}

.brand-gateway-panel:hover .brand-gateway-bg,
.brand-gateway-panel:focus .brand-gateway-bg {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}



.brand-gateway-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  color: #141414;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: #ffc01d;
  border-radius: 999px;
}

.brand-gateway-panel-egglink .brand-gateway-kicker {
  color: #fff;
  background: #008477;
}

.brand-gateway h1 {
  margin: 24px 0 20px;
  color: #fff;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.brand-gateway p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0;
}

.brand-gateway-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.brand-gateway-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.brand-gateway-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background: #ffc01d;
  border-radius: 50%;
  content: "";
}

.brand-gateway-panel-egglink .brand-gateway-list li::before {
  background: #52d6c9;
}

.brand-gateway-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #151515;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  gap: 10px;
}

.brand-gateway-panel-egglink .brand-gateway-action {
  color: #fff;
  background: #008477;
}

.brand-gateway-panel.is-link-pending .brand-gateway-action {
  color: #222;
  background: #e9edf0;
}

@media (max-width: 991px) {
  .brand-gateway {
    grid-template-columns: 1fr;
  }


  .brand-gateway-content {
    padding: 72px 28px 54px;
  }

  .brand-gateway h1 {
    font-size: 46px;
  }

  .brand-gateway p {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .brand-gateway-panel {
    min-height: 520px;
  }


  .brand-gateway h1 {
    font-size: 38px;
  }

  .brand-gateway p,
  .brand-gateway-list li,
  .brand-gateway-action {
    font-size: 15px;
  }

  .brand-gateway-action {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }
}

.brand-gateway {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #10141c;


  min-height: 760px;

}

.brand-gateway-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;


  align-items: center;
  min-height: 760px;

}

.brand-gateway-content {
  width: 100%;


  max-width: 760px;
  padding: clamp(72px, 8vw, 118px) clamp(28px, 6vw, 74px);

}

.brand-gateway-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-gateway-subbrand {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.brand-gateway-lead {
  margin-top: 0 !important;
}

.brand-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 16px;
}

.brand-proof-grid div {
  min-height: 118px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.brand-proof-grid strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.28;
}

.brand-proof-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.brand-service-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.brand-service-group {
  min-height: 128px;
  padding: 19px 18px;
  background: rgba(5, 7, 10, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.brand-service-group span {
  display: block;
  margin-bottom: 9px;
  color: #ffc01d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.brand-gateway-panel-egglink .brand-service-group span {
  color: #52d6c9;
}

.brand-service-group p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.brand-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 28px;
  gap: 8px;
}

.brand-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
}

.brand-flow i {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.brand-marquee-band {
  overflow: hidden;
  padding: 100px 0;
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: brandTextMarquee 28s linear infinite;
  will-change: transform;
}

.brand-marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 92px;
  padding-inline: clamp(28px, 3vw, 43.2px);
  font-size: clamp(30px, 3.125vw, 45px);
  color: rgba(0, 0, 0, 0.3);
  font-weight: 900;
  line-height: 1;
}

.brand-marquee-track span:nth-child(2n) {
  color: rgba(255, 192, 29,0.3);
}

@keyframes brandTextMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1320px) {
  .brand-gateway h1 {
    font-size: 54px;
  }

  .brand-gateway p {
    font-size: 18px;
  }

  .brand-proof-grid {
    grid-template-columns: 1fr;
  }

  .brand-proof-grid div {
    min-height: 0;
  }
}

@media (max-width: 991px) {
  .brand-gateway,
  .brand-gateway-panel {
    min-height: auto;
  }

  .brand-gateway-panel {
    align-items: flex-end;
  }

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

@media (max-width: 575px) {
  .brand-gateway-content {
    padding: 60px 22px 42px;
  }

  .brand-gateway-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-proof-grid {
    margin-top: 24px;
  }

  .brand-service-group {
    min-height: 0;
  }

  .brand-flow {
    gap: 6px;
  }

  .brand-flow span {
    min-height: 31px;
    padding: 0 10px;
    font-size: 13px;
  }

  .brand-marquee-track span {
    min-height: 70px;
  }
}

.gateway-simple .brand-gateway-panel {
  min-height: calc(100vh - 86px);
}

.gateway-simple .brand-gateway-content {
  max-width: 560px;
}

.gateway-simple .brand-gateway h1,
.gateway-simple h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 72px);
}

.gateway-simple .brand-gateway-lead {
  max-width: 460px;
  margin-bottom: 32px !important;
}


@media (max-width: 991px) {
  .gateway-simple .brand-gateway-panel {
    min-height: 430px;
  }
}

.site-insight-section {
  position: relative;
  overflow: hidden;
  background: #f7f8fb;
}

.site-insight-section-light {
  background: #f7f8fb;
}

.site-insight-section-dark {
  color: #fff;
  background: #191919;
}

.site-insight-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 192, 29, 0.13) 0%, rgba(255, 192, 29, 0) 100%);
  content: "";
  pointer-events: none;
}

.site-insight-section-dark::before {
  background: linear-gradient(180deg, rgba(255, 192, 29, 0.18) 0%, rgba(255, 192, 29, 0) 100%);
}

.site-insight-section .container,
.site-insight-section .site-container,
.site-insight-section .site-insight-heading,
.site-insight-section .site-insight-grid {
  position: relative;
  z-index: 1;
}

.site-insight-heading {
  margin: 0 auto 34px;
}

.site-insight-heading .site-insight-kicker,
.site-insight-kicker {
  margin: 0 0 12px;
  color: #ffc01d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.site-insight-heading h2 {
  margin: 0;
  color: #191919;
  font-size: 35px;
  line-height: 1.28;
}

.site-insight-section-dark .site-insight-heading h2 {
  color: #fff;
}

.site-insight-heading p:not(.site-insight-kicker) {
  margin: 16px auto 0;
}

.site-insight-section-dark .site-insight-heading p:not(.site-insight-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.site-insight-grid {
  display: grid;
  gap: 16px;
}

.site-insight-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.site-insight-card {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.site-insight-section-dark .site-insight-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.site-insight-card:hover {
  border-color: rgba(255, 192, 29, 0.72);
}

.site-insight-section-dark .site-insight-card:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.site-insight-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: #191919;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: #ffc01d;
  border-radius: 999px;
}

.site-insight-card h3 {
  margin: 0 0 12px;
  color: #191919;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}


.site-insight-card p {
  margin: 0;
}

.site-insight-section-dark .site-insight-card p {
  color: rgba(255, 255, 255, 0.7);
}

.about-business-section {
  margin: 0 0 72px;
  padding: 72px 0;
  border-radius: 8px;
}

.product-system-section,
.inquiry-fit-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.giftorder-page .site-insight-section,
.giftad-page .site-insight-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

@media (max-width: 1199px) {
  .site-insight-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .site-insight-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {


  .about-business-section {
    margin-bottom: 52px;
    padding: 56px 0;
  }
}

/* Refined header, main business map, and inquiry form */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topnav,
.home-page .topnav,
.product-page .topnav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
  box-shadow: 0 12px 34px rgba(25, 25, 25, 0.07);
  backdrop-filter: blur(18px);
}

.topnav {
  backdrop-filter: blur(15px);
  font-weight: 600;
  padding-top: 12px;
  padding-bottom: 12px;

}

.topnav a,
.topnav span,
.home-page .topnav a,
.home-page .topnav span,
.product-page .topnav a,
.product-page .topnav span,
.navbar-nav .nav-item a,
.home-page .navbar-nav .nav-item a,
.product-page .navbar-nav .nav-item a,
.home-page li.nav-item.selected a,
.product-page li.nav-item.selected a {
  color: #191919 !important;
}

.site-logo-pc,
.site-logo-mobile {
  display: inline-flex;
  align-items: center;
}

.site-logo-pc img,
.site-logo-mobile img {
  object-fit: contain;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item a {
  text-transform: uppercase;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item.selected a {
  -webkit-text-fill-color:  #191919 !important;
  border-bottom: 0;
}

li.nav-item.selected a {
  z-index: 2;
  color: var(--t-color) !important;


  border-bottom: 0;

}

.navbar-bottom {
  position: relative;
  top: -3.5px;
  right: 0;
  justify-content: center;
  width: 100%;
  height: 5px;


  display: none;

}


.site-nav-actions a.onlyPC {
  color: #191919 !important;
  font-weight: 700;
  background: #ffc01d;
  border-radius: 8px;
}

.site-nav-phone {
  color: rgba(25, 25, 25, 0.62) !important;
  font-weight: 700;
}

.site-toggler {
  color: #191919;
  background: rgba(25, 25, 25, 0.04);
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 8px;
}

.inquiry-layout {
  position: relative;
}

.inquiry-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255, 192, 29, 0.98), rgba(25, 25, 25, 0.12)) border-box;
  border: 2px solid transparent;
}


.inquiry-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 10px;
  margin-top: 0;
  padding: 8px;
  background: #f4f5f7;
  border: 1px solid rgba(25, 25, 25, 0.07);
  border-radius: 12px;
}

.inquiry-category-btn {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
  padding: 20px 22px;
  background: transparent;
  border-color: transparent;
  border-radius: 9px;
}

.inquiry-category-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.08);
}

.inquiry-category-btn.is-active {
  background: #191919;
  border-color: #191919;
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.16);
}

.inquiry-category-btn.is-active .inquiry-category-name,
.inquiry-category-btn.is-active .inquiry-category-desc {
  color: #fff;
}

.inquiry-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--t-color);
  font-size: 16px;
  font-weight: 700;
  min-height: 54px;
  padding: 16px 18px;
  background: rgba(255, 192, 29, 0.17);
  border: 1px solid rgba(255, 192, 29, 0.38);
  border-radius: 10px;
}

.inquiry-current span {
  font-size: 18px;
  font-weight: 900;
}

.inquiry-label {
  color: var(--t-color);
  font-weight: 900;
}

.inquiry-input,
.inquiry-textarea {
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(25, 25, 25, 0.02);
}

.inquiry-input:focus,
.inquiry-textarea:focus {
  border-color: #ffc01d;
  box-shadow: 0 0 0 4px rgba(255, 192, 29, 0.2);
}

.inquiry-actions .site-btn.site-btn-primary,
.inquiry-actions .site-btn[type="submit"] {
  min-height: 50px;
  padding-right: 28px;
  padding-left: 28px;
  color: #191919;
  font-weight: 900;
  background: #ffc01d;
  border-color: #ffc01d;
  box-shadow: 0 16px 34px rgba(255, 192, 29, 0.28);
}


@media (max-width: 991px) {


  .site-nav-actions {
    align-items: flex-start;
  }
}

.marquee li img {
/* .marquee3-content li img,
.marquee2-content li img { */
  transform: scale(0.85);
  transition:
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* 개별 로고에 마우스를 올렸을 때 */
.marquee li:hover img, 
.marquee2-content li:hover img,
.marquee3-content li:hover img {

  transform: scale(1);
}
.giftad-hero {
  display: flex;
  align-items: center;
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(255, 192, 29, 0.2),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 86%,
      rgba(255, 192, 29, 0.08),
      transparent 24%
    ),
    linear-gradient(135deg, #0b0c0f 0%, #18191d 100%);
  isolation: isolate;

}

.giftad-hero-glow {
  position: absolute;
  top: -250px;
  right: -160px;
  width: 650px;
  height: 650px;
  background: rgba(255, 192, 29, 0.12);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.giftad-hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3),
    #000 58%,
    rgba(0, 0, 0, 0.55)
  );
  pointer-events: none;
}

.giftad-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(60px, 7vw, 110px);
}

.giftad-hero-copy {


  position: relative;
  z-index: 3;

}

.giftad-hero-kicker {
  margin: 0 0 20px;
  color: var(--c-yellow);
  line-height: 1.2;
}

.giftad-hero-copy h1 {
  margin: 0;
}

.giftad-hero-copy h1 span {
  color: var(--c-yellow);
}

.giftad-hero-desc {
  max-width: 550px;
  margin: 27px 0 0;
  letter-spacing: -0.025em;
}

.giftad-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;

}

.giftad-hero-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 46px;
}

.giftad-hero-summary > div {
  min-width: 130px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.giftad-hero-summary > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.giftad-hero-summary strong,
.giftad-hero-summary span {
  display: block;
}

.giftad-hero-summary strong {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.giftad-hero-summary span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
}

/* 영상 영역 */

.giftad-hero-media-area {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}

.giftad-video-orbit {
  position: absolute;
  top: 1%;
  right: -2%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 192, 29, 0.25);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.giftad-video-orbit::before,
.giftad-video-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 192, 29, 0.12);
  border-radius: inherit;
  content: "";
}

.giftad-video-orbit::before {
  inset: 11%;
}

.giftad-video-orbit::after {
  inset: 23%;
}

.giftad-video-frame {
  position: absolute;
  top: 42px;
  right: 28px;
  left: 0;
  z-index: 2;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.045)
    );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.46),
    inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.giftad-video-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.giftad-video-toolbar-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.giftad-video-live-dot {
  width: 7px;
  height: 7px;
  background: var(--c-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 192, 29, 0.1);
}

.giftad-video-duration {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  color: #161616;
  background: var(--c-yellow);
  border-radius: 999px;
}

.giftad-video-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}

.giftad-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;


  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.giftad-video-screen-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  min-height: 34%;
  padding: 22px;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(0, 0, 0, 0.75)
    );
  pointer-events: none;
}

.giftad-video-screen-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.giftad-video-screen-overlay i {
  color: var(--c-yellow);
}

.giftad-video-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 76px;
}

.giftad-video-status > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
}

.giftad-video-status > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.giftad-video-status span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
}

.giftad-video-status strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
}

.giftad-video-status strong i {
  width: 6px;
  height: 6px;
  background: #38cc85;
  border-radius: 50%;
}

/* 영상 주변 데이터 카드 */

.giftad-floating-stat {
  position: absolute;
  z-index: 4;
  width: 176px;
  padding: 18px;
  color: #191919;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.giftad-floating-stat-top {
  top: 0;
  right: 0;
  transform: rotate(3deg);
}

.giftad-floating-stat-bottom {
  right: 0;
  bottom: 0;
  background: var(--c-yellow);
  transform: rotate(-2deg);
}

.giftad-floating-stat span,
.giftad-floating-stat small {
  display: block;
  color: rgba(25, 25, 25, 0.56);
  font-size: 10px;
  font-weight: 750;
}

.giftad-floating-stat strong {
  display: block;
  margin: 7px 0;
  color: #191919;
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.giftad-floating-progress {
  height: 5px;
  margin-top: 13px;
  overflow: hidden;
  background: rgba(25, 25, 25, 0.12);
  border-radius: 999px;
}

.giftad-floating-progress i {
  display: block;
  width: 76.4%;
  height: 100%;
  background: #191919;
  border-radius: inherit;
}
@media (max-width: 1100px) {
  .giftad-hero-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 42px;
  }

  .giftad-floating-stat {
    width: 154px;
  }
}

@media (max-width: 991px) {
  .giftad-hero {
    min-height: auto;
    padding: 120px 0 84px;
  }

  .giftad-hero-layout {
    grid-template-columns: 1fr;
  }

  .giftad-hero-copy {
    max-width: 650px;
  }

  .giftad-hero-media-area {
    min-height: 510px;
  }
}

@media (max-width: 767px) {
  .giftad-hero {
    padding: 96px 0 64px;
  }

  .giftad-hero-copy h1 {
    font-size: 38px;
  }

  .giftad-hero-desc {
    margin-top: 22px;
    line-height: 1.65;

    font-size: 16px;
  }

  .giftad-hero-summary {
    gap: 18px 0;
  }

  .giftad-hero-summary > div {
    min-width: 50%;
    padding: 0 14px;
  }

  .giftad-hero-summary > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .giftad-hero-media-area {
    min-height: 390px;
  }

  .giftad-video-frame {
    top: 34px;
    right: 8px;
    border-radius: 20px;
    transform: none;
  }

  .giftad-video-toolbar {
    height: 43px;
    padding: 0 14px;
  }

  .giftad-video-status {
    min-height: 66px;
  }

  .giftad-video-status > div {
    padding: 11px 9px;
  }

  .giftad-video-status strong {
    font-size: 9px;
  }

  .giftad-floating-stat {
    width: 130px;
    padding: 13px;
  }

  .giftad-floating-stat strong {
    font-size: 21px;
  }

  .giftad-floating-stat-bottom {
    bottom: -5px;
  }
}
/* =========================================================
   EGGPOOL SCROLL STORY
   Required transparent assets:
   - image/main/eggpool_story_tablet_transparent.png
   - image/main/eggpool_story_owner.png
   - image/main/eggpool_story_staff.png
   - image/main/eggpool_story_advertiser.png
========================================================= */
.egg-story {
  --story-bg: #f7f7f3;
  --story-ink: #181818;
  --story-muted: rgba(24, 24, 24, .62);
  --story-accent: var(--c-yellow, #ffc01d);
  position: relative;
}
.egg-story-sticky { width: 100%; isolation: isolate; }
.egg-story-layer {
  --layer-opacity: 0; --layer-y: 72px; --layer-scale: .94;
  align-items: center;   transform-origin: center; }
.egg-story-layer-tablet { --layer-opacity: 1; --layer-y: 0px; --layer-scale: 1; }
.egg-story-copy {
  --copy-opacity: 0; --copy-x: -36px; --copy-y: 20px;
  position: relative; z-index: 4; }
.egg-story-kicker { margin: 0 0 18px; color: rgba(24,24,24,.43); line-height: 1.3; }
.egg-story-title { margin: 0; }
.egg-story-title span { display: inline; background: linear-gradient(transparent 69%,rgba(255,192,29,.56) 0); box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.egg-story-desc,.egg-story-note { letter-spacing: -.025em; }
.egg-story-desc { margin: 30px 0 0; }
.egg-story-note { margin: 22px 0 0; border-top: 1px solid rgba(24,24,24,.1); }
.egg-story-tablet-wrap { position: relative; z-index: 3; grid-column: 2; width: min(100%,850px); justify-self: center; }
.egg-story-tablet-image { display: block; width: 100%; height: auto; object-fit: contain; }
.egg-story-copy-tablet,.egg-story-copy-people { grid-column: 1; grid-row: 1; }
.egg-story-orbit { position: absolute; display: inline-flex; align-items: center; justify-content: center; width: clamp(50px,5vw,74px); height: clamp(50px,5vw,74px); font-size: clamp(20px,2vw,29px); background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.82); border-radius: 22px; box-shadow: 0 15px 40px rgba(34,31,19,.1); backdrop-filter: blur(12px); }
.egg-story-orbit i { color: var(--story-accent); }
.egg-story-orbit-ad { top: 10%; left: 0; }
.egg-story-orbit-pay { right: 1%; bottom: 13%; animation-delay: -1.5s; }
.egg-story-orbit-data { top: 5%; right: 10%; animation-delay: -3s; }
.egg-story-people-wrap { position: relative; z-index: 3; display: flex; align-items: flex-end; justify-content: center; grid-column: 2; gap: clamp(4px,1.5vw,22px); width: 100%; }
.egg-story-person { --person-progress: 0; position: relative; flex: 1 1 0; margin: 0; transform-origin: center bottom; filter: drop-shadow(0 30px 35px rgba(22,22,18,.12)); }
.egg-story-person:nth-child(2) { max-width: 310px; margin-bottom: 18px; }
.egg-story-person img { display: block; width: 100%; max-height: 66vh; object-fit: contain; }
.egg-story-person figcaption { width: fit-content; margin: 14px auto 0; padding: 9px 15px; color: rgba(24,24,24,.7); font-size: 13px; font-weight: 800; line-height: 1; background: rgba(255,255,255,.76); border: 1px solid rgba(24,24,24,.06); border-radius: 999px; box-shadow: 0 10px 26px rgba(24,24,24,.07); backdrop-filter: blur(12px); }
.egg-story-person-staff figcaption { color: #171717; background: var(--story-accent); }
.egg-story-progress { position: absolute; top: 50%; right: clamp(18px,2.4vw,44px); z-index: 20; width: 2px; height: min(34vh,270px); background: rgba(24,24,24,.12); border-radius: 999px; transform: translateY(-50%); }
.egg-story-progress-bar { display: block; width: 100%; height: 100%; background: var(--story-accent); border-radius: inherit; transform: scaleY(0); transform-origin: top; will-change: transform; }
.egg-story-progress-dot { position: absolute; top: 0; left: 50%; width: 10px; height: 10px; background: var(--story-accent); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 4px 12px rgba(24,24,24,.18); }
.egg-story-step-label { position: absolute; top: 34px; right: clamp(30px,4vw,70px); z-index: 20; color: rgba(24,24,24,.42); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.egg-story-scroll-hint { position: absolute; bottom: 24px; left: 50%; z-index: 20; align-items: center; flex-direction: column; gap: 8px; margin: 0; color: rgba(24,24,24,.42); font-size: 10px; font-weight: 800; line-height: 1; letter-spacing: .18em; transform: translateX(-50%); }
.egg-story-scroll-hint i { display: block; width: 1px; height: 30px; overflow: hidden; background: rgba(24,24,24,.14); }
.egg-story-scroll-hint i::after { display: block; width: 100%; height: 55%; background: var(--story-accent); content: ""; }
@keyframes eggStoryFloat { 0%,100%{transform:translate3d(0,0,0) rotate(-.2deg)} 50%{transform:translate3d(0,-16px,0) rotate(.2deg)} }
@keyframes eggStoryOrbit { 0%,100%{transform:translate3d(0,0,0) rotate(-2deg)} 50%{transform:translate3d(0,-12px,0) rotate(2deg)} }
@keyframes eggStoryScrollHint { 0%{opacity:0;transform:translateY(-100%)} 35%{opacity:1} 100%{opacity:0;transform:translateY(190%)} }

/* Main-page spacing, reveal, opacity rhythm */


/* Reduce repetitive card density */
.home-page .metric-grid { background: transparent; border-right: 0; border-radius: 0; }

@media (max-width:1199px) {
  .egg-story-layer { grid-template-columns: minmax(310px,.8fr) minmax(500px,1.2fr); width: min(1280px,calc(100% - 64px)); }
  .egg-story-title { font-size: 50px; }
}
@media (max-width:991px) {
  .egg-story { height: auto; padding: 0; background: var(--story-bg); }
  .egg-story-sticky { position: relative; height: auto; min-height: 0; overflow: visible; }
  .egg-story-stage { position: relative; }
  .egg-story-layer { position: relative; inset: auto; grid-template-columns: 1fr; gap: 36px; width: min(760px,calc(100% - 40px)); min-height: 100svh; padding: 84px 0; opacity: 1 !important; transform: none !important; }
  .egg-story-layer + .egg-story-layer { border-top: 1px solid rgba(24,24,24,.09); }
  .egg-story-copy,.egg-story-tablet-wrap,.egg-story-people-wrap { grid-column: 1; grid-row: auto; }
  .egg-story-copy { order: 2; opacity: 1 !important; transform: none !important; }
  .egg-story-tablet-wrap,.egg-story-people-wrap { order: 1; }
  .egg-story-person { opacity: 1 !important; transform: none !important; }
  .egg-story-people-wrap { min-height: 0; }
  .egg-story-progress,.egg-story-step-label,.egg-story-scroll-hint { display: none; }
  .home-page .solution-grid { grid-template-columns: 1fr; }
}
@media (max-width:767px) {
  .home-page .site-section { padding-top: 74px; padding-bottom: 74px; }
  .egg-story-layer { width: calc(100% - 32px); min-height: 100svh; gap: 28px; padding: 68px 0; }
  .egg-story-title { font-size: 40px; letter-spacing: -.045em; }
  .egg-story-desc { margin-top: 22px; font-size: 17px; }
  .egg-story-note { margin-top: 17px; padding-top: 17px; font-size: 15px; }
  .egg-story-orbit { border-radius: 17px; }
  .egg-story-people-wrap { gap: 0; }
  .egg-story-person figcaption { padding: 7px 10px; font-size: 11px; }
}
@media (prefers-reduced-motion:reduce) {
  .egg-story *,.home-page .scroll-reveal { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .home-page .scroll-reveal { opacity: 1 !important; transform: none !important; }
  
}

/* Company business story: one message per viewport */
.company-map-section {
  --company-bg: #f6f6f2;
  --company-ink: #191919;
  --company-muted: rgba(25, 25, 25, 0.62);
  --company-accent: #ffc01d;
  position: relative;
}


.company-map-stage {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.company-map-stage::before {
  position: absolute;
  top: 50%;
  left: 72%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 192, 29, 0.2) 0%, rgba(255, 192, 29, 0.06) 44%, transparent 72%);
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.company-map-scene {
  --company-scene-opacity: 0;
  --company-scene-y: 42px;
  --company-scene-scale: 0.97;
  z-index: 2;
  align-items: center;
  transform-origin: center;
}

.company-map-scene.is-active {
  z-index: 3;
  pointer-events: auto;
}

.company-map-copy {
  position: relative;
  z-index: 2;
}

.company-map-eyebrow {
  margin: 0 0 20px;
  color: rgba(25, 25, 25, 0.42);
  line-height: 1.2;
}

.company-map-title {
  margin: 0;
}

.company-map-title span {
  background: linear-gradient(transparent 68%, rgba(255, 192, 29, 0.58) 0);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.company-map-description {
  margin: 30px 0 0;
  letter-spacing: -0.025em;
}

.company-map-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  color: var(--company-ink);
  line-height: 1.2;
  border-bottom: 2px solid var(--company-accent);
}

.company-map-action:hover,
.company-map-action:focus {
  color: var(--company-ink);
  gap: 15px;
  text-decoration: none;
}

.company-map-action.is-link-pending {
  color: rgba(25, 25, 25, 0.4);
  border-bottom-color: rgba(25, 25, 25, 0.16);
}

.company-map-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.company-map-flow-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: clamp(105px, 9vw, 142px);
  aspect-ratio: 1;
  gap: 15px;
  color: var(--company-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(25, 25, 25, 0.07);
  border-radius: 50%;
  box-shadow: 0 22px 54px rgba(25, 25, 25, 0.08);
  backdrop-filter: blur(16px);
}

.company-map-flow-item i {
  color: var(--company-accent);
  font-size: clamp(24px, 2.3vw, 36px);
}

.company-map-flow-item strong {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.company-map-flow-line {
  width: clamp(18px, 2.8vw, 42px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 192, 29, 0.22), var(--company-accent));
}

.company-map-device {
  position: relative;
  width: min(82%, 650px);
  padding: 18px;
  background: #1a1a1a;
  border-radius: 30px;
}

.company-map-device-top {
  display: flex;
  gap: 6px;
  padding: 0 0 12px 4px;
}

.company-map-device-top span {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.company-map-device-screen {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  min-height: 390px;
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  gap: 20px;
}

.company-map-device-menu,
.company-map-device-list {
  display: grid;
  gap: 13px;
}

.company-map-device-menu span {
  height: 44px;
  background: #f2f2ef;
  border-radius: 10px;
}

.company-map-device-menu span:first-child {
  background: rgba(255, 192, 29, 0.28);
}

.company-map-device-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-map-device-list span {
  min-height: 128px;
  background: linear-gradient(145deg, #f8f8f6, #eeeeea);
  border: 1px solid rgba(25, 25, 25, 0.06);
  border-radius: 14px;
}

.company-map-device-button {
  grid-column: 2;
  height: 48px;
  margin-top: -2px;
  background: var(--company-accent);
  border-radius: 12px;
}

.company-map-float-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(58px, 6vw, 86px);
  aspect-ratio: 1;
  color: var(--company-ink);
  font-size: clamp(22px, 2vw, 32px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(25, 25, 25, 0.1);
  backdrop-filter: blur(14px);
}

.company-map-float-icon i {
  color: var(--company-accent);
}

.company-map-float-icon-pos {
  top: 9%;
  left: 4%;
}

.company-map-float-icon-pay {
  right: 2%;
  bottom: 10%;
  animation-delay: -2.1s;
}

.company-map-ad-screen {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(78%, 620px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #242424, #090909);
  border: 12px solid #191919;
  border-radius: 34px;
  box-shadow: 0 46px 80px rgba(25, 25, 25, 0.2);
}

.company-map-ad-screen::before {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 50% 48%, rgba(255, 192, 29, 0.42), transparent 55%);
  content: "";
}

.company-map-ad-play {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 10vw, 140px);
  aspect-ratio: 1;
  color: #191919;
  font-size: clamp(30px, 3vw, 44px);
  background: var(--company-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 192, 29, 0.12);
}

.company-map-ad-wave {
  position: absolute;
  border: 1px solid rgba(255, 192, 29, 0.46);
  border-radius: 50%;
}

.company-map-ad-wave-one {
  width: 48%;
  aspect-ratio: 1;
}

.company-map-ad-wave-two {
  width: 68%;
  aspect-ratio: 1;
  animation-delay: 0.8s;
}

.company-map-ad-wave-three {
  width: 88%;
  aspect-ratio: 1;
  animation-delay: 1.6s;
}

.company-map-float-icon-view {
  top: 10%;
  right: 3%;
}

.company-map-float-icon-gift {
  left: 4%;
  bottom: 12%;
  animation-delay: -1.7s;
}


.company-map-channel {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: clamp(126px, 13vw, 180px);
  aspect-ratio: 1;
  gap: 12px;
  color: var(--company-ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(25, 25, 25, 0.07);
  border-radius: 34px;
  box-shadow: 0 24px 58px rgba(25, 25, 25, 0.09);
  backdrop-filter: blur(16px);
}

.company-map-channel i {
  color: var(--company-accent);
  font-size: clamp(28px, 3vw, 42px);
}

.company-map-channel span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.company-map-channel-search {
  top: 8%;
  left: 12%;
}

.company-map-channel-content {
  top: 12%;
  right: 6%;
}

.company-map-channel-offline {
  right: 22%;
  bottom: 4%;
}

.company-map-channel-core {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(170px, 17vw, 240px);
  aspect-ratio: 1;
  color: var(--company-ink);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 900;
  background: var(--company-bg);
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(255, 192, 29, 0.34);
}

.company-map-channel-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(25, 25, 25, 0.08), var(--company-accent));
  transform-origin: left center;
}

.company-map-channel-line-one {
  top: 25%;
  left: 28%;
  width: 25%;
  transform: rotate(45deg);
}

.company-map-channel-line-two {
  top: 55%;
  right: 23%;
  width: 24%;
  transform: rotate(-45deg);
}

.company-map-channel-line-three {
  right: 32%;
  bottom: 37%;
  width: 22%;
  transform: rotate(60deg);
}

.company-map-progress {
  position: absolute;
  top: 50%;
  right: clamp(20px, 2.6vw, 48px);
  z-index: 20;
  width: 2px;
  height: min(36vh, 290px);
  background: rgba(25, 25, 25, 0.12);
  border-radius: 999px;
  transform: translateY(-50%);
}

.company-map-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--company-accent);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.company-map-counter {
  position: absolute;
  top: 34px;
  right: clamp(26px, 3.4vw, 64px);
  z-index: 20;
  margin: 0;
  color: rgba(25, 25, 25, 0.38);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
}

.company-map-counter span:first-child {
  color: var(--company-ink);
}

.company-map-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 20;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  color: rgba(25, 25, 25, 0.4);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.company-map-scroll-hint i {
  display: block;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(25, 25, 25, 0.14);
}

.company-map-scroll-hint i::after {
  display: block;
  width: 100%;
  height: 52%;
  background: var(--company-accent);
  content: "";
}

@keyframes companyMapFloat {
  0%, 100% { transform: perspective(1100px) rotateY(-10deg) rotateX(4deg) translate3d(0, 0, 0); }
  50% { transform: perspective(1100px) rotateY(-8deg) rotateX(3deg) translate3d(0, -15px, 0); }
}

@keyframes companyMapIconFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -13px, 0) rotate(2deg); }
}

@keyframes companyMapPulse {
  0% { opacity: 0.68; transform: scale(0.74); }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes companyMapScrollHint {
  0% { opacity: 0; transform: translateY(-100%); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(190%); }
}

@media (max-width: 1100px) {
  .company-map-scene {
    grid-template-columns: minmax(280px, 0.9fr) minmax(390px, 1.1fr);
    width: min(1120px, calc(100% - 64px));
    gap: 40px;
  }

  .company-map-title {
    font-size: clamp(38px, 4.5vw, 58px);
  }

  .company-map-flow-item {
    width: 102px;
  }
}

@media (max-width: 900px) {
  .company-map-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .company-map-stage {
    height: auto;
  }

  .company-map-stage::before {
    top: 26%;
    left: 50%;
    width: 92vw;
  }

  .company-map-scene {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
    min-height: 100svh;
    padding: 92px 0;
    gap: 46px;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .company-map-scene + .company-map-scene {
    border-top: 1px solid rgba(25, 25, 25, 0.09);
  }

  .company-map-copy {
    order: 2;
  }

  .company-map-visual {
    order: 1;
    min-height: 420px;
  }

  .company-map-flow-line {
    display: none;
  }

  .company-map-flow-item {
    width: 100%;
    max-width: 132px;
    justify-self: center;
  }

  .company-map-progress,
  .company-map-counter,
  .company-map-scroll-hint {
    display: none;
  }
}

@media (max-width: 600px) {
  .company-map-scene {
    width: calc(100% - 32px);
    min-height: 100svh;
    padding: 74px 0;
    gap: 30px;
  }

  .company-map-title {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -0.045em;
  }

  .company-map-description {
    margin-top: 22px;
    font-size: 17px;
  }

  .company-map-visual {
    min-height: 330px;
  }

  .company-map-flow-item {
    max-width: 125px;
  }

  .company-map-device {
    width: 94%;
    padding: 10px;
    border-radius: 20px;
  }

  .company-map-device-screen {
    min-height: 270px;
    padding: 16px;
    gap: 10px;
  }

  .company-map-device-list span {
    min-height: 82px;
  }

  .company-map-ad-screen {
    width: 92%;
    border-width: 8px;
    border-radius: 24px;
  }

  .company-map-channel {
    width: 112px;
    border-radius: 25px;
  }

  .company-map-channel-search {
    left: 0;
  }

  .company-map-channel-content {
    right: 0;
  }

  .company-map-channel-offline {
    right: 8%;
  }

  .company-map-channel-core {
    width: 145px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-map-section * {
    animation: none !important;
    transition: none !important;
  }
}


@media (max-width: 991px) {
  .about-intro-card {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    margin: 0 30px !important;
  }

  .about-intro-copy {
    text-align: center !important;
  }

  .about-intro-copy p {
    max-width: 620px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .about-value-grid-3,
  .about-value-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-value-section {
    padding: 56px 30px 68px !important;
  }

  .about-value-group + .about-value-group {
    margin-top: 56px !important;
  }

  .about-growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-growth-card:nth-child(3) {
    border-left: 0 !important;
    border-top: 1px solid rgba(25, 25, 25, 0.08) !important;
  }

  .about-growth-card:nth-child(4) {
    border-top: 1px solid rgba(25, 25, 25, 0.08) !important;
  }


  .about-ceo-copy {
    padding: 42px 34px !important;
  }

  .about-ceo-copy::after {
    display: none !important;
  }

  .about-ceo-visual,
  .about-ceo-img {
    min-height: 320px !important;
  }

  .about-location-inner {
    gap: 28px !important;
  }

  .about-location-info {
    justify-content: flex-start !important;
  }

  .about-location-map-wrap,
  .about-location-map {
    min-height: 360px !important;
  }
}

@media (max-width: 768px) {
  /* Mobile overrides loaded after PC-scoped page styles */
  .home-page .strength-grid,
  .home-page .why-grid,
  .home-page .metric-grid,
  .strength-grid,
  .why-grid,
  .metric-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .metric-card,
  .metric-card {
    min-height: auto !important;
  }

  .home-page .metric-card + .metric-card,
  .metric-card + .metric-card {
    border-left: 0 !important;
    border-top: 1px solid rgba(25, 25, 25, 0.1) !important;
  }

  .home-page .why-card + .why-card,
  .why-card + .why-card {
    border-left: 0 !important;
    border-top: 1px solid rgba(25, 25, 25, 0.08) !important;
    padding-top: 28px !important;
    margin-top: 28px !important;
  }

  .subnav-wrap {
    margin-top: 100px !important;
  }
}

@media (max-width: 767px) {
  .about-hero-section {
    padding: 46px 0 30px !important;
  }

  .about-hero-heading {
    margin: 0 30px 58px !important;
  }

  .about-hero-title {
    font-size: 34px !important;
  }

  .about-hero-highlight {
    font-size: 19px !important;
  }

  .about-hero-desc {
    font-size: 15px !important;
  }

  .about-intro-card {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin: 0 30px !important;
  }

  .about-intro-copy {
    text-align: left !important;
  }

  .about-intro-copy h2 {
    font-size: 30px !important;
  }

  .about-intro-copy p {
    font-size: 15px !important;
  }

  .about-intro-visual {
    border-radius: 18px !important;
  }

  .about-intro-img {
    aspect-ratio: 4 / 3 !important;
  }


  .about-value-grid {
    gap: 16px !important;
  }

  .about-value-card {
    min-height: auto !important;
    padding: 30px 20px !important;
  }

  .about-value-icon {
    width: 62px !important;
    height: 62px !important;
    margin-bottom: 18px !important;
  }

  .about-value-icon img {
    width: 38px !important;
    height: 38px !important;
  }

  .about-value-title {
    font-size: 19px !important;
  }

  .about-value-desc {
    font-size: 14px !important;
  }

  .about-growth-section {
    padding: 52px 30px 58px !important;
  }

  .about-growth-grid {
    border-radius: 16px !important;
  }

  .about-growth-card {
    min-height: auto !important;
    padding: 24px 22px !important;
  }

  .about-growth-card + .about-growth-card {
    border-left: 0 !important;
    border-top: 1px solid rgba(25, 25, 25, 0.08) !important;
  }

  .about-growth-value {
    font-size: 32px !important;
  }

  .about-ceo-section {
    padding: 52px 30px 64px !important;
  }

  .about-ceo-card {
    border-radius: 18px !important;
  }

  .about-ceo-copy {
    padding: 34px 24px !important;
  }

  .about-ceo-title {
    font-size: 28px !important;
  }

  .about-ceo-desc {
    font-size: 15px !important;
  }

  .about-ceo-sign {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .about-ceo-sign img {
    width: 120px !important;
  }

  .about-ceo-visual,
  .about-ceo-img {
    min-height: 260px !important;
  }

  .about-location-section {
    padding: 52px 0 70px !important;
  }

  .about-location-title {
    margin-bottom: 22px !important;
    font-size: 28px !important;
  }

  .about-location-item {
    padding: 20px 0 !important;
  }

  .about-location-copy h3 {
    font-size: 17px !important;
  }

  .about-location-copy p {
    font-size: 14px !important;
  }

  .about-location-map-wrap,
  .about-location-map {
    min-height: 320px !important;
    border-radius: 18px !important;
  }
  .giftad-product-card{
    flex-direction: column;
  }
}
/* =========================================================
   GIFTAD V2 - visual-first /ad layout
   New selectors only: keeps existing shared styles untouched.
========================================================= */
.giftad-v2-story {
  padding: clamp(84px, 8vw, 128px) 0;
  background: #f7f7f3;
}

.giftad-v2-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 72px);
  text-align: center;
}

.giftad-v2-kicker {
  margin: 0 0 16px;
  color: #a97800;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.14em;
}

.giftad-v2-heading h2 {
  margin: 0;
  color: #191919;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.giftad-v2-heading > p:last-child {
  margin: 20px 0 0;
  color: rgba(25, 25, 25, 0.6);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  letter-spacing: -0.025em;
}

.giftad-v2-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.giftad-v2-story-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.07);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(25, 25, 25, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.giftad-v2-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(25, 25, 25, 0.11);
}

.giftad-v2-story-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 192, 29, 0.34), transparent 28%),
    linear-gradient(145deg, #222328 0%, #0d0e11 100%);
}

.giftad-v2-story-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.giftad-v2-story-visual-action {
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 192, 29, 0.36), transparent 32%),
    linear-gradient(145deg, #f4f1e6 0%, #dfd9c7 100%);
}

.giftad-v2-story-visual-data {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 192, 29, 0.28), transparent 30%),
    linear-gradient(145deg, #16171b 0%, #292b31 100%);
}

.giftad-v2-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.giftad-v2-fallback > i {
  position: relative;
  z-index: 1;
  color: #ffc01d;
  font-size: clamp(58px, 6vw, 92px);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
}

.giftad-v2-device-shape {
  position: absolute;
  right: 12%;
  bottom: 13%;
  width: 43%;
  aspect-ratio: 1.45;
  background: rgba(255, 255, 255, 0.9);
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  transform: rotate(-7deg);
}

.giftad-v2-reward-shape {
  position: absolute;
  top: 17%;
  right: 17%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(66px, 6vw, 92px);
  aspect-ratio: 1;
  color: #191919;
  font-size: clamp(26px, 2.5vw, 38px);
  background: #ffc01d;
  border-radius: 26px;
  box-shadow: 0 18px 35px rgba(159, 113, 0, 0.22);
  transform: rotate(8deg);
}

.giftad-v2-fallback-data {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18% 14%;
}

.giftad-v2-fallback-data > i {
  position: absolute;
  top: 18%;
  right: 14%;
  color: rgba(255, 192, 29, 0.88);
  font-size: clamp(42px, 4vw, 62px);
}

.giftad-v2-chart-line {
  position: absolute;
  right: 13%;
  bottom: 24%;
  left: 13%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 192, 29, 0.25), #ffc01d, rgba(255, 192, 29, 0.35));
  transform: rotate(-10deg);
  transform-origin: left center;
}

.giftad-v2-chart-bar {
  width: 13%;
  margin-right: 7%;
  background: linear-gradient(180deg, #ffc01d, rgba(255, 192, 29, 0.24));
  border-radius: 10px 10px 3px 3px;
}

.giftad-v2-chart-bar-1 { height: 32%; }
.giftad-v2-chart-bar-2 { height: 48%; }
.giftad-v2-chart-bar-3 { height: 65%; }

.giftad-v2-story-copy {
  padding: 26px 26px 30px;
}

.giftad-v2-story-copy > span {
  display: block;
  margin-bottom: 12px;
  color: #a97800;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.giftad-v2-story-copy h3 {
  margin: 0;
  color: #191919;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.giftad-v2-story-copy p {
  margin: 13px 0 0;
  color: rgba(25, 25, 25, 0.58);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.giftad-v2-experience {
  padding: clamp(80px, 8vw, 126px) 0;
  background: #fff;
}

.giftad-v2-experience-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: stretch;
  overflow: hidden;
  background: #151619;
  border-radius: 34px;
  box-shadow: 0 32px 80px rgba(16, 16, 16, 0.16);
}

.giftad-v2-experience-visual {
  min-height: 520px;
  overflow: hidden;
}

.giftad-v2-experience-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.giftad-v2-experience-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(46px, 5vw, 74px);
  color: #fff;
}

.giftad-v2-experience-copy .giftad-v2-kicker {
  color: #ffc01d;
}

.giftad-v2-experience-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.giftad-v2-experience-copy h2 strong {
  color: #ffc01d;
  font-weight: 900;
}

.giftad-v2-experience-copy > p:not(.giftad-v2-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.giftad-v2-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.giftad-v2-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.giftad-v2-product-note {
  display: block;
  margin: -2px 0 18px;
  color: rgba(25, 25, 25, 0.46);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .giftad-v2-story-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .giftad-v2-story-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .giftad-v2-story-visual {
    height: 100%;
    min-height: 290px;
    aspect-ratio: auto;
  }

  .giftad-v2-experience-card {
    grid-template-columns: 1fr;
  }

  .giftad-v2-experience-visual {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .giftad-v2-story,
  .giftad-v2-experience {
    padding: 72px 0;
  }

  .giftad-v2-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .giftad-v2-heading h2 {
    font-size: 36px;
  }

  .giftad-v2-heading > p:last-child {
    margin-top: 16px;
    font-size: 16px;
  }

  .giftad-v2-story-card {
    display: block;
    border-radius: 22px;
  }

  .giftad-v2-story-card:hover {
    transform: none;
  }

  .giftad-v2-story-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .giftad-v2-story-copy {
    padding: 22px 20px 25px;
  }

  .giftad-v2-story-copy h3 {
    font-size: 24px;
  }

  .giftad-v2-experience-card {
    border-radius: 24px;
  }

  .giftad-v2-experience-visual {
    min-height: 300px;
  }

  .giftad-v2-experience-copy {
    padding: 34px 24px 38px;
  }

  .giftad-v2-experience-copy h2 {
    font-size: 34px;
  }

  .giftad-v2-experience-copy > p:not(.giftad-v2-kicker) {
    margin-top: 19px;
    font-size: 16px;
  }
}

/* =========================================
   /culture — 에그풀 활동 (공간 + 활동)
   공개 전까지 네비/사이트맵 미노출. CULTURE_PUBLIC 스위치로 제어.
========================================= */

.culture-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 65px 0 0;
  overflow: hidden;
  background: var(--t-color);
}

.culture-hero-bg,
.culture-hero-dim {
  position: absolute;
  inset: 0;
}

.culture-hero-bg picture,
.culture-hero-img {
  display: block;
  width: 100%;
  height: 100%;
}

.culture-hero-img {
  object-fit: cover;
  object-position: center;
}

.culture-hero-dim {
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.88) 0%,
    rgba(17, 17, 17, 0.62) 46%,
    rgba(17, 17, 17, 0.2) 100%
  );
}

.culture-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.culture-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  color: var(--t-color);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--c-yellow);
  border-radius: 999px;
}

.culture-kicker-dark {
  padding: 0;
  color: var(--c-yellow-dark);
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.culture-hero-title {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.culture-hero-desc {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

/* ---------- 오피스 투어 ---------- */

.culture-office-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.culture-section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.culture-section-desc {
  max-width: 560px;
  margin: 0;
  color: var(--t-muted-color);
  font-size: 16px;
  line-height: 1.68;
}

.culture-office-tabs {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.culture-office-panel {
  display: none;
}

.culture-office-panel.is-active {
  display: block;
}

.culture-office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.culture-office-item {
  overflow: hidden;
  border: 1px solid var(--border-light-color);
  border-radius: var(--ux-card-radius, 14px);
  background: var(--surface-muted-color);
}

.culture-office-item img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* 첫 장은 2×2로 크게 */
.culture-office-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.culture-office-item:first-child img {
  height: 434px;
}

.culture-draft-note {
  padding: 18px 0 40px;
  color: var(--t-light-color);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 991px) {
  .culture-office-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 26px;
  }

  .culture-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .culture-office-item:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .culture-office-item img,
  .culture-office-item:first-child img {
    height: 130px;
  }

  .culture-office-item:first-child img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .culture-hero {
    min-height: 400px;
    padding-top: 65px;
  }

  .culture-hero-dim {
    background: linear-gradient(
      180deg,
      rgba(17, 17, 17, 0.42) 0%,
      rgba(17, 17, 17, 0.88) 62%,
      rgba(17, 17, 17, 0.95) 100%
    );
  }

  .culture-hero-inner {
    justify-content: flex-end;
    gap: 16px;
  }

  .culture-hero-desc {
    font-size: 15px;
    line-height: 1.66;
  }
}
