/* =========================================================
   Cyber Security Page
========================================================= */

.cyber-page {
  background: #fff;
}

/* =========================================================
   Cyber Security Hero
   - 공통 hero 클래스와 충돌 방지용 독립 구조
========================================================= */

.cyber-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff;
  background: #05070d;
}

.cyber-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("/images/redesign/CyberSecurity/cyber-hero-banner.png")
      right center / auto 100% no-repeat;
}

/* 왼쪽 텍스트 가독성만 확보하고 오른쪽 이미지는 최대한 살림 */
.cyber-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 7, 13, 0.96) 0%,
    rgba(4, 7, 13, 0.88) 30%,
    rgba(4, 7, 13, 0.56) 50%,
    rgba(4, 7, 13, 0.16) 72%,
    rgba(4, 7, 13, 0.02) 100%
  );
  pointer-events: none;
}

.cyber-hero__container {
  position: relative;
  z-index: 1;
  min-height: 680px;
  max-width: 1440px;
  display: flex;
  align-items: center;
}

.cyber-hero__content {
  width: 100%;
  max-width: 1120px;
  padding-top: 20px;
}

.cyber-hero__content h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.cyber-hero__desc {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

/* =========================================================
   Hero Partner Box
========================================================= */

.cyber-hero__partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1080px);
  margin-top: 34px;
  padding: 10px 12px;
  box-sizing: border-box;
  background: rgba(132, 140, 154, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.cyber-hero__partner {
  position: relative;
  min-height: 108px;
  padding: 0 14px 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  box-sizing: border-box;
}

.cyber-hero__partner:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.cyber-hero__logo {
  height: 30px;
  display: flex;
  align-items: center;
}

.cyber-hero__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
  object-position: left center;
}

.cyber-hero__partner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

/* =========================================================
   Hero Buttons
========================================================= */

.cyber-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.cyber-hero__actions .button {
  min-width: 236px;
  height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.cyber-hero__actions .button--primary {
  color: #fff;
  background: #014ed9;
  border: 1px solid #014ed9;
}

.cyber-hero__actions .button--primary:hover {
  background: #003fba;
  border-color: #003fba;
}

.cyber-hero__actions .button--outline-light {
  color: #fff;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.cyber-hero__actions .button--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* =========================================================
   Common Cyber Sections
========================================================= */

.cyber-overview,
.cyber-challenge,
.cyber-approach,
.cyber-service,
.cyber-feature,
.cyber-case,
.cyber-faq {
  padding: 120px 0;
}

.cyber-section-head,
.cyber-overview__head,
.cyber-challenge__head {
  max-width: 980px;
  margin: 0 auto 52px;
  text-align: center;
}

.cyber-section-head h2,
.cyber-overview__head h2,
.cyber-challenge__head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #171717;
}

.cyber-overview__head h2 strong {
  color: #014ed9;
}

.cyber-section-head p,
.cyber-overview__head p,
.cyber-challenge__head p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #666;
}

/* =========================================================
   Laptop
========================================================= */

@media (max-width: 1199px) {
  .cyber-hero {
    min-height: 640px;
  }

  .cyber-hero__container {
    min-height: 640px;
  }

  .cyber-hero__bg {
    background-position: 68% center;
  }

  .cyber-hero__content {
    max-width: 100%;
  }

  .cyber-hero__content h1 {
    font-size: 44px;
  }

  .cyber-hero__desc {
    font-size: 16px;
  }

  .cyber-hero__partners {
    width: min(100%, 960px);
    padding: 12px 12px;
  }

  .cyber-hero__partner {
    min-height: 112px;
    gap: 16px;
    padding: 0 22px 0 16px;
  }

  .cyber-hero__logo {
    height: 30px;
  }

  .cyber-hero__logo img {
    max-height: 30px;
  }

  .cyber-hero__partner p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
  .cyber-hero {
    min-height: auto;
  }

  .cyber-hero__container {
    min-height: 620px;
  }

  .cyber-hero__bg {
    background-position: 66% center;
  }

  .cyber-hero__content h1 {
    font-size: 40px;
  }

  .cyber-hero__partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 720px);
    padding: 20px 24px;
  }

  .cyber-hero__partner {
    min-height: 112px;
    padding: 18px 22px;
  }

  .cyber-hero__partner:not(:last-child)::after {
    display: none;
  }

  .cyber-hero__partner:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cyber-hero__partner:nth-child(1),
  .cyber-hero__partner:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
  .cyber-hero {
    min-height: auto;
  }

  .cyber-hero__bg {
    background-position: 64% top;
  }

  .cyber-hero__bg::before {
    background:
      linear-gradient(
        180deg,
        rgba(4, 7, 13, 0.9) 0%,
        rgba(4, 7, 13, 0.94) 38%,
        rgba(4, 7, 13, 0.88) 72%,
        rgba(4, 7, 13, 0.96) 100%
      );
  }

  .cyber-hero__bg::after {
    background:
      radial-gradient(
        circle at 70% 18%,
        rgba(27, 103, 255, 0.16) 0%,
        rgba(27, 103, 255, 0.08) 30%,
        rgba(27, 103, 255, 0) 56%
      );
  }

  .cyber-hero__container {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 72px;
    align-items: flex-start;
  }

  .cyber-hero__content {
    max-width: 100%;
    padding-top: 0;
  }

  .cyber-hero__content h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.35;
  }

  .cyber-hero__desc {
    max-width: 100%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .cyber-hero__desc br {
    display: none;
  }

  .cyber-hero__partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 28px;
    padding: 12px;
  }

  .cyber-hero__partner {
    min-height: 96px;
    gap: 12px;
    padding: 16px 12px;
  }

  .cyber-hero__logo {
    height: 26px;
  }

  .cyber-hero__logo img {
    max-height: 26px;
  }

  .cyber-hero__partner p {
    font-size: 11px;
    line-height: 1.45;
  }

  .cyber-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .cyber-hero__actions .button {
    width: 100%;
    min-width: 0;
    height: 54px;
    font-size: 16px;
  }

  .cyber-overview,
  .cyber-challenge,
  .cyber-approach,
  .cyber-service,
  .cyber-feature,
  .cyber-case,
  .cyber-faq {
    padding: 80px 0;
  }

  .cyber-section-head,
  .cyber-overview__head,
  .cyber-challenge__head {
    margin-bottom: 36px;
  }

  .cyber-section-head h2,
  .cyber-overview__head h2,
  .cyber-challenge__head h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .cyber-section-head p,
  .cyber-overview__head p,
  .cyber-challenge__head p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 480px) {
  .cyber-hero__container {
    padding-top: 96px;
    padding-bottom: 60px;
  }

  .cyber-hero__content h1 {
    font-size: 28px;
    line-height: 1.35;
  }

  .cyber-hero__partners {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .cyber-hero__partner {
    min-height: auto;
    padding: 18px 0;
    border-right: 0 !important;
  }

  .cyber-hero__partner:nth-child(1),
  .cyber-hero__partner:nth-child(2),
  .cyber-hero__partner:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cyber-hero__partner:nth-child(4) {
    border-bottom: 0;
  }

  .cyber-hero__logo {
    height: 28px;
  }

  .cyber-hero__logo img {
    max-height: 28px;
  }

  .cyber-hero__partner p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* =========================================================
   Cyber Overview
========================================================= */

.cyber-overview {
  padding: 150px 0 160px;
  background: #fff;
}

.cyber-overview__head {
  display: block;
  width: 100%;
  text-align: center;
  max-width: 980px;
  margin: 0 auto 64px;
}

.cyber-overview__head h2 {
  display: block;
  margin: 0;
  color: #252525;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.cyber-overview__head strong {
  color: #014ed9;
}

/* data-reveal 때문에 안 보이는 경우 방지 */
.cyber-overview__head[data-reveal] {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.cyber-overview__content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.cyber-overview__graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyber-overview__graphic img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.cyber-overview__copy p {
  margin: 0;
  color: #222;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

/* 기존 카드 남아있으면 숨김 */
.cyber-overview__cards {
  display: none;
}

@media (max-width: 1024px) {
  .cyber-overview {
    padding: 110px 0 120px;
  }

  .cyber-overview__head {
    margin-bottom: 52px;
  }

  .cyber-overview__content {
    max-width: 760px;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
  }

  .cyber-overview__graphic img {
    width: 210px;
  }

  .cyber-overview__copy p {
    font-size: 18px;
    line-height: 1.9;
  }
}

@media (max-width: 768px) {
  .cyber-overview {
    padding: 80px 0 90px;
  }

  .cyber-overview__head {
    margin-bottom: 40px;
  }

  .cyber-overview__content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }

  .cyber-overview__graphic img {
    width: 190px;
  }

  .cyber-overview__copy p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.035em;
  }
}

@media (max-width: 480px) {
  .cyber-overview {
    padding: 68px 0 78px;
  }

  .cyber-overview__head h2 {
    font-size: 28px;
  }

  .cyber-overview__content {
    gap: 30px;
    margin-top: 38px;
  }

  .cyber-overview__graphic img {
    width: 170px;
  }

  .cyber-overview__copy p {
    font-size: 15px;
    line-height: 1.75;
  }
}

.cyber-kpi-card,
.cyber-approach-card,
.cyber-summary-card,
.cyber-offering-card,
.cyber-feature-card,
.cyber-case-card {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.cyber-kpi-card:hover,
.cyber-approach-card:hover,
.cyber-summary-card:hover,
.cyber-offering-card:hover,
.cyber-feature-card:hover,
.cyber-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 43, 94, 0.08);
}

.cyber-approach-card:hover,
.cyber-summary-card:hover {
  transform: none;
  box-shadow: none;
}

.cyber-kpi-card {
  padding: 28px 24px;
  border: 1px solid #e6ebf3;
  background: #ffffff;
  text-align: center;
}

.cyber-kpi-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.35;
  color: #111111;
}

.cyber-kpi-card p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
}

/* =========================================================
   Cyber Security - Challenge
========================================================= */

.cyber-challenge {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: linear-gradient(
    270deg,
    #001437 0%,
    #000d24 42%,
    #050505 100%
  );
}

.cyber-challenge .container {
  position: relative;
  z-index: 1;
}

.cyber-challenge__head {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.cyber-challenge__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.cyber-challenge__head p {
  max-width: 1040px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: -0.03em;
}

.cyber-challenge__content {
  display: grid;
  grid-template-columns: minmax(360px, 450px) minmax(460px, 520px);
  align-items: center;
  justify-content: center;
  gap: 86px;
  max-width: 1080px;
  margin: 92px auto 0;
}

.cyber-challenge__graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.cyber-challenge__graphic img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

.cyber-challenge__list {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
}

.cyber-challenge__list-title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.cyber-challenge-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.cyber-challenge-card:first-of-type {
  border-top: 0;
}

.cyber-challenge-card span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cyber-challenge-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.cyber-challenge-card p {
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .cyber-challenge {
    padding: 100px 0 110px;
  }

  .cyber-challenge__head h2 {
    font-size: 36px;
  }

  .cyber-challenge__head p {
    font-size: 16px;
  }

  .cyber-challenge__content {
    grid-template-columns: minmax(300px, 380px) minmax(400px, 1fr);
    gap: 56px;
    margin-top: 72px;
  }

  .cyber-challenge__graphic img {
    max-width: 360px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cyber-challenge {
    padding: 82px 0 88px;
    background: linear-gradient(
      180deg,
      #050505 0%,
      #000d24 48%,
      #001437 100%
    );
  }

  .cyber-challenge__head {
    text-align: left;
  }

  .cyber-challenge__head h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .cyber-challenge__head p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .cyber-challenge__head p br {
    display: none;
  }

  .cyber-challenge__content {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 520px;
    margin-top: 56px;
  }

  .cyber-challenge__graphic img {
    max-width: 320px;
  }

  .cyber-challenge__list-title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .cyber-challenge-card {
    grid-template-columns: 42px 1fr;
    padding: 19px 0;
  }

  .cyber-challenge-card span {
    font-size: 15px;
  }

  .cyber-challenge-card h3 {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cyber-challenge {
    padding: 72px 0 78px;
  }

  .cyber-challenge__head h2 {
    font-size: 27px;
  }

  .cyber-challenge__graphic img {
    max-width: 280px;
  }

  .cyber-challenge-card {
    grid-template-columns: 36px 1fr;
  }
}

.cyber-approach__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1440px;
  margin-top: 64px;
}

.cyber-approach-card {
  min-height: 388px;
  padding: 42px 30px 36px;
  border: 1px solid #e1e7f0;
  background: #ffffff;
}

.cyber-approach-card__icon {
  display: none;
}

.cyber-approach-card__icon img {
  display: none;
}

.cyber-approach__icon {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.cyber-approach-card h3 {
  margin: 32px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: #141414;
}

.cyber-approach-card h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 18px;
  background: #1a56e3;
}

.cyber-approach-card p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
  word-break: keep-all;
}

@media (max-width: 1024px) {
  .cyber-approach__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .cyber-approach-card {
    min-height: 0;
    padding: 36px 26px 32px;
  }

  .cyber-approach__icon {
    width: 54px;
    height: 54px;
  }

  .cyber-approach-card h3 {
    margin-top: 28px;
    font-size: 22px;
  }

  .cyber-approach-card p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .cyber-approach__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cyber-approach-card {
    padding: 30px 22px 28px;
  }

  .cyber-approach__icon {
    width: 52px;
    height: 52px;
  }

  .cyber-approach-card h3 {
    margin-top: 24px;
    font-size: 20px;
  }

  .cyber-approach-card p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }
}

.cyber-service__summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1440px;
  margin-top: 58px;
}

/* =========================================================
   Cyber Security - Service Summary
========================================================= */

.cyber-service {
  padding: 20px 0 120px;
  background: #ffffff;
}

.cyber-service .container {
  max-width: 1440px;
  margin: 0 auto;
}

.cyber-service .cyber-section-head {
  margin: 0 auto 56px;
  text-align: center;
}

.cyber-service .cyber-section-head h2 {
  margin: 0;
  color: #222222;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

/* 카드 전체 영역 */
.cyber-service__summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

/* 개별 카드 */
.cyber-summary-card {
  position: relative;
  min-height: 380px;
  padding: 0 28px 40px;
  border: 1px solid #e1e7f0;
  background: #ffffff;
  overflow: hidden;
}

/* 숫자 영역 - 숫자가 더 보이도록 조정 */
.cyber-summary-card__num-mask {
  height: 92px;
  overflow: hidden;
}

.cyber-summary-card__num {
  display: block;
  color: #014ed9;
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  transform: translateY(34px);
}

/* 제목 */
.cyber-summary-card h3 {
  margin: 8px 0 0;
  color: #111111;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.cyber-summary-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 28px 0 0;
  background: #014ed9;
}

/* 설명 */
.cyber-summary-card p {
  margin: 24px 0 0;
  color: #5f5f5f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.035em;
  word-break: keep-all;
  white-space: pre-line;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1280px) {
  .cyber-service {
    padding: 110px 0;
  }

  .cyber-service__summary {
    gap: 8px;
  }

  .cyber-summary-card {
    min-height: 370px;
    padding: 0 24px 36px;
  }

  .cyber-summary-card__num {
    font-size: 72px;
    transform: translateY(36px);
  }

  .cyber-summary-card h3 {
    font-size: 22px;
  }

  .cyber-summary-card p {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 1024px) {
  .cyber-service {
    padding: 96px 0;
  }

  .cyber-service .cyber-section-head {
    margin-bottom: 46px;
  }

  .cyber-service .cyber-section-head h2 {
    font-size: 36px;
  }

  .cyber-service__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cyber-summary-card {
    min-height: 320px;
    padding: 0 28px 36px;
  }

  .cyber-summary-card__num-mask {
    height: 86px;
  }

  .cyber-summary-card__num {
    font-size: 70px;
    transform: translateY(32px);
  }

  .cyber-summary-card h3 {
    margin-top: 8px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .cyber-service {
    padding: 82px 0;
  }

  .cyber-service .cyber-section-head {
    margin-bottom: 38px;
    text-align: left;
  }

  .cyber-service .cyber-section-head h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .cyber-service__summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cyber-summary-card {
    min-height: auto;
    padding: 0 24px 34px;
  }

  .cyber-summary-card__num-mask {
    height: 78px;
  }

  .cyber-summary-card__num {
    font-size: 66px;
    transform: translateY(28px);
  }

  .cyber-summary-card h3 {
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.36;
  }

  .cyber-summary-card h3::after {
    margin-top: 22px;
  }

  .cyber-summary-card p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .cyber-service {
    padding: 72px 0;
  }

  .cyber-service .cyber-section-head h2 {
    font-size: 27px;
  }

  .cyber-summary-card {
    padding: 0 20px 32px;
  }

  .cyber-summary-card__num-mask {
    height: 74px;
  }

  .cyber-summary-card__num {
    font-size: 62px;
    transform: translateY(28px);
  }

  .cyber-summary-card h3 {
    font-size: 20px;
  }

  .cyber-summary-card p {
    font-size: 14px;
  }
}

/* =========================================================
   Cyber Security - Offering Detail
========================================================= */

.cyber-service__detail {
  margin-top: 96px;
}

.cyber-service__detail--ref + .cyber-service__detail {
  display: none;
}

.cyber-section-head--compact {
  margin: 0 auto 44px;
  text-align: center;
}

.cyber-section-head--compact h2 {
  margin: 0;
  color: #222222;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.cyber-offering__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.cyber-offering-card {
  border: 1px solid #e2e8f1;
  background: #ffffff;
}

.cyber-offering-card--ref {
  display: flex;
  flex-direction: column;
  min-height: 424px;
  padding: 0;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.cyber-offering-card--ref:hover {
  transform: translateY(-3px);
  border-color: #c8d6ec;
  box-shadow: 0 10px 24px rgba(14, 42, 92, 0.05);
}

.cyber-offering-card--ref:nth-child(7) {
  grid-column: 1 / 2;
}

.cyber-offering-card__top {
  padding: 40px 36px 30px;
  border-bottom: 1px solid #e8eef6;
}

.cyber-offering-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  background: #1258df;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cyber-offering-card__tag--green {
  background: #1ba84b;
}

.cyber-offering-card--ref h3 {
  margin: 22px 0 0;
  color: #141414;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.cyber-offering-card--ref p {
  margin: 16px 0 0;
  color: #606060;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.cyber-offering-card__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 28px 36px 36px;
  list-style: none;
}

.cyber-offering-card--ref .cyber-offering-card__list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 30px;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

/* 체크 아이콘 정렬 */
.cyber-offering-card--ref .cyber-offering-card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 8px;
  height: 14px;
  border-right: 2px solid #1258df;
  border-bottom: 2px solid #1258df;
  transform: rotate(45deg);
  background: transparent;
}

/* 기존 점 스타일 제거용 */
.cyber-offering-card--ref .cyber-offering-card__list li + li {
  margin-top: 0;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1024px) {
  .cyber-service__detail {
    margin-top: 80px;
  }

  .cyber-section-head--compact {
    margin-bottom: 36px;
  }

  .cyber-section-head--compact h2 {
    font-size: 36px;
  }

  .cyber-offering__grid {
    gap: 20px;
  }

  .cyber-offering-card--ref {
    min-height: 390px;
  }

  .cyber-offering-card__top {
    padding: 34px 30px 26px;
  }

  .cyber-offering-card--ref h3 {
    font-size: 23px;
  }

  .cyber-offering-card--ref p {
    font-size: 15px;
  }

  .cyber-offering-card__list {
    padding: 26px 30px 32px;
  }

  .cyber-offering-card--ref .cyber-offering-card__list li {
    font-size: 15px;
    padding-left: 28px;
  }

  .cyber-offering-card--ref .cyber-offering-card__list li::before {
    left: 2px;
    top: 4px;
  }
}

@media (max-width: 768px) {
  .cyber-service__detail {
    margin-top: 68px;
  }

  .cyber-section-head--compact {
    margin-bottom: 30px;
    text-align: left;
  }

  .cyber-section-head--compact h2 {
    font-size: 30px;
  }

  .cyber-offering__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cyber-offering-card--ref {
    min-height: auto;
  }

  .cyber-offering-card--ref:nth-child(7) {
    grid-column: auto;
  }

  .cyber-offering-card__top {
    padding: 30px 24px 24px;
  }

  .cyber-offering-card__tag {
    min-height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }

  .cyber-offering-card--ref h3 {
    margin-top: 18px;
    font-size: 22px;
  }

  .cyber-offering-card--ref p {
    margin-top: 12px;
    font-size: 15px;
  }

  .cyber-offering-card__list {
    gap: 14px;
    padding: 24px 24px 30px;
  }

  .cyber-offering-card--ref .cyber-offering-card__list li {
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.65;
  }

  .cyber-offering-card--ref .cyber-offering-card__list li::before {
    left: 2px;
    top: 3px;
    width: 8px;
    height: 13px;
  }
}

@media (max-width: 480px) {
  .cyber-section-head--compact h2 {
    font-size: 27px;
  }

  .cyber-offering-card__top {
    padding: 28px 20px 22px;
  }

  .cyber-offering-card--ref h3 {
    font-size: 20px;
  }

  .cyber-offering-card__list {
    padding: 22px 20px 28px;
  }

  .cyber-offering-card--ref .cyber-offering-card__list li {
    padding-left: 26px;
    font-size: 14px;
  }

  .cyber-offering-card--ref .cyber-offering-card__list li::before {
    left: 1px;
    top: 3px;
    width: 7px;
    height: 12px;
  }
}

.cyber-feature__lead {
  max-width: 1440px;
  margin: 46px auto 0;
  padding: 28px 40px 26px;
  background: #0f53da;
  text-align: center;
  color: #ffffff;
}

.cyber-feature__lead strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.cyber-feature__lead p {
  max-width: 860px;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.cyber-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1440px;
  margin: 24px auto 0;
}

.cyber-feature-card {
  min-height: 250px;
  padding: 42px 40px 36px;
  border: 1px solid #e3e9f2;
  background: #ffffff;
}

.cyber-feature-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #141414;
}

.cyber-feature-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 16px;
  background: #1a56e3;
}

.cyber-feature-card p {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  word-break: keep-all;
}

/* =========================================================
   Cyber Security - Insight Report
========================================================= */

.cyber-case {
  background: #ffffff;
}

.cyber-case .cyber-section-head {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}

.cyber-case .cyber-section-head h2 {
  margin: 0;
  color: #222222;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.cyber-case .cyber-section-head p {
  margin: 20px 0 0;
  color: #5f5f5f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.035em;
}

.cyber-case__slider {
  width: 100%;
}

.cyber-case__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.cyber-case-card {
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 42px 52px 34px;
  border: 1px solid #e2e8f1;
  background: #ffffff;
}

.cyber-case-card__thumb {
  width: 100%;
  overflow: hidden;
  background: #f5f7fb;
}

.cyber-case-card__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 550 / 310;
  height: auto;
  object-fit: cover;
}

.cyber-case-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 28px;
}

.cyber-case-card__body h3 {
  margin: 0;
  color: #111111;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.cyber-case-card__body p {
  margin: 18px 0 0;
  color: #606060;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.cyber-case-card__body .button {
  align-self: flex-end;
  min-width: 216px;
  height: 40px;
  margin-top: auto;
  padding: 0 24px;
  border-radius: 0;
  background: #014ed9;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
  letter-spacing: -0.03em;
}

.cyber-report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;

  width: 240px;
  height: 52px;
  margin-top: 34px;
  padding: 0 24px;

  border: 0;
  border-radius: 0;
  background: #014ed9;

  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  text-decoration: none;

  cursor: pointer;
  transition: background-color 0.24s ease;
}

.cyber-report-button:hover {
  background: #003fb0;
}

/* 기존 공통 버튼 after 영향 방지 */
.cyber-report-button::before,
.cyber-report-button::after {
  content: none !important;
}

/* 카드 안에서 버튼을 하단 우측으로 정렬 */
.cyber-case-card__body .cyber-report-button {
  margin-left: auto;
}

/* Mobile */
@media (max-width: 767px) {
  .cyber-report-button {
    width: 100%;
    height: 52px;
    margin-top: 28px;
    font-size: 15px;
  }

  .cyber-case-card__body .cyber-report-button {
    margin-left: 0;
  }
}


.cyber-case-card__body .button:hover {
  background: #003fb0;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1199px) {
  .cyber-case__track {
    gap: 24px;
  }

  .cyber-case-card {
    min-height: 560px;
    padding: 36px 36px 32px;
  }

  .cyber-case-card__body h3 {
    font-size: 24px;
  }

  .cyber-case-card__body p {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .cyber-case .cyber-section-head {
    margin-bottom: 44px;
  }

  .cyber-case .cyber-section-head h2 {
    font-size: 36px;
  }

  .cyber-case__track {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .cyber-case-card {
    min-height: auto;
  }

  .cyber-case-card__body .button {
    margin-top: 36px;
  }
}

@media (max-width: 767px) {
  .cyber-case .cyber-section-head {
    margin-bottom: 36px;
    text-align: left;
  }

  .cyber-case .cyber-section-head h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .cyber-case .cyber-section-head p {
    font-size: 15px;
    line-height: 1.75;
  }

  .cyber-case__track {
    gap: 16px;
  }

  .cyber-case-card {
    padding: 24px 20px 26px;
  }

  .cyber-case-card__body {
    padding-top: 22px;
  }

  .cyber-case-card__body h3 {
    font-size: 22px;
    line-height: 1.4;
  }

  .cyber-case-card__body h3 br {
    display: none;
  }

  .cyber-case-card__body p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .cyber-case-card__body .button {
    align-self: stretch;
    width: 100%;
    min-width: 0;
    height: 46px;
    margin-top: 28px;
    font-size: 15px;
    line-height: 46px;
  }
}

@media (max-width: 480px) {
  .cyber-case .cyber-section-head h2 {
    font-size: 27px;
  }

  .cyber-case-card {
    padding: 20px 18px 24px;
  }

  .cyber-case-card__body h3 {
    font-size: 20px;
  }

  .cyber-case-card__body p {
    font-size: 14px;
  }
}

.cyber-faq .faq-list {
  margin-top: 52px;
}

.cyber-faq .faq-btn {
  color: #141414;
}

.cyber-faq .faq-item.is-open .faq-btn,
.cyber-faq .faq-btn:hover {
  color: #014ed9;
}

.cyber-faq__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* =========================================================
   Cyber Security CTA
========================================================= */

.site-cta--cyber-security {
  margin-top: 0;
  border-top: 0;
  background: #050505;
}

.site-cta--cyber-security .site-cta__backdrop {
  opacity: 1;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.12) 100%),
    url("/images/redesign/CyberSecurity/cta-cyber-security.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-cta--cyber-security .site-cta__inner {
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 620px;
  padding: 72px 0;
  justify-items: center;
}

.site-cta--cyber-security .site-cta__visual {
  display: none;
}

.site-cta--cyber-security .site-cta__copy {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.site-cta--cyber-security .site-cta__copy h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.site-cta--cyber-security .site-cta__copy p {
  max-width: 880px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: -0.028em;
  word-break: keep-all;
}

.site-cta--cyber-security .site-cta__actions {
  justify-content: center;
  margin-top: 38px;
}

.site-cta--cyber-security .site-cta__actions .button {
  min-width: 332px;
  min-height: 60px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .site-cta--cyber-security .site-cta__inner {
    min-height: 560px;
    padding: 64px 0;
  }

  .site-cta--cyber-security .site-cta__copy h2 {
    max-width: 680px;
    font-size: 40px;
  }

  .site-cta--cyber-security .site-cta__copy p {
    max-width: 760px;
    margin-top: 26px;
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .site-cta--cyber-security .site-cta__backdrop {
    background-position: 56% center;
  }

  .site-cta--cyber-security .site-cta__inner {
    min-height: 500px;
    padding: 56px 0;
  }

  .site-cta--cyber-security .site-cta__copy h2 {
    max-width: 620px;
    font-size: 40px;
  }

  .site-cta--cyber-security .site-cta__copy p {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.85;
  }

  .site-cta--cyber-security .site-cta__actions .button {
    min-width: 300px;
    min-height: 56px;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .site-cta--cyber-security .site-cta__backdrop {
    background-position: center center;
  }

  .site-cta--cyber-security .site-cta__inner {
    min-height: 420px;
    padding: 52px 0;
  }

  .site-cta--cyber-security .site-cta__copy h2 {
    max-width: 320px;
    font-size: 28px;
    line-height: 1.35;
  }

  .site-cta--cyber-security .site-cta__copy p {
    max-width: 340px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }

  .site-cta--cyber-security .site-cta__actions {
    margin-top: 30px;
  }

  .site-cta--cyber-security .site-cta__actions .button {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    min-height: 54px;
    font-size: 16px;
  }
}

/* =========================================================
   Cyber Security Responsive Polish
   - Tablet/mobile only
========================================================= */

@media (max-width: 1024px) {
  body[data-page="cyber-security"] .cyber-page {
    overflow-x: hidden;
  }

  body[data-page="cyber-security"] .cyber-hero,
  body[data-page="cyber-security"] .cyber-hero__container {
    min-height: auto;
  }

  body[data-page="cyber-security"] .cyber-hero__container {
    align-items: flex-start;
    padding-top: 110px;
    padding-bottom: 72px;
  }

  body[data-page="cyber-security"] .cyber-hero__content {
    max-width: 100%;
  }

  body[data-page="cyber-security"] .cyber-hero__bg {
    background-position: 68% center;
  }

  body[data-page="cyber-security"] .cyber-hero__content h1,
  body[data-page="cyber-security"] .cyber-section-head h2,
  body[data-page="cyber-security"] .cyber-overview__head h2,
  body[data-page="cyber-security"] .cyber-challenge__head h2,
  body[data-page="cyber-security"] .cyber-summary-card h3,
  body[data-page="cyber-security"] .cyber-offering-card h3,
  body[data-page="cyber-security"] .cyber-feature-card h3,
  body[data-page="cyber-security"] .cyber-case-card__body h3 {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  body[data-page="cyber-security"] .cyber-hero__desc,
  body[data-page="cyber-security"] .cyber-section-head p,
  body[data-page="cyber-security"] .cyber-overview__copy p,
  body[data-page="cyber-security"] .cyber-summary-card p,
  body[data-page="cyber-security"] .cyber-offering-card p,
  body[data-page="cyber-security"] .cyber-offering-card__list li,
  body[data-page="cyber-security"] .cyber-feature-card p,
  body[data-page="cyber-security"] .cyber-case-card__body p,
  body[data-page="cyber-security"] .cyber-faq .faq-panel p,
  body[data-page="cyber-security"] .site-cta--cyber-security .site-cta__copy p {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  body[data-page="cyber-security"] .cyber-hero__actions,
  body[data-page="cyber-security"] .cyber-faq__actions,
  body[data-page="cyber-security"] .site-cta--cyber-security .site-cta__actions {
    flex-wrap: wrap;
  }

  body[data-page="cyber-security"] .cyber-hero__actions .button,
  body[data-page="cyber-security"] .cyber-case-card__body .cyber-report-button,
  body[data-page="cyber-security"] .cyber-faq__actions .button,
  body[data-page="cyber-security"] .site-cta--cyber-security .site-cta__actions .button {
    max-width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  body[data-page="cyber-security"] .cyber-overview,
  body[data-page="cyber-security"] .cyber-challenge,
  body[data-page="cyber-security"] .cyber-approach,
  body[data-page="cyber-security"] .cyber-service,
  body[data-page="cyber-security"] .cyber-feature,
  body[data-page="cyber-security"] .cyber-case,
  body[data-page="cyber-security"] .cyber-faq {
    overflow: hidden;
  }

  body[data-page="cyber-security"] .cyber-overview__content,
  body[data-page="cyber-security"] .cyber-service__summary,
  body[data-page="cyber-security"] .cyber-offering__grid,
  body[data-page="cyber-security"] .cyber-feature__grid,
  body[data-page="cyber-security"] .cyber-case__track,
  body[data-page="cyber-security"] .cyber-faq .faq-list {
    max-width: 100%;
  }

  body[data-page="cyber-security"] .cyber-feature__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  body[data-page="cyber-security"] .cyber-feature-card {
    min-height: 228px;
    padding: 32px 26px 28px;
  }

  body[data-page="cyber-security"] .cyber-summary-card,
  body[data-page="cyber-security"] .cyber-offering-card,
  body[data-page="cyber-security"] .cyber-feature-card,
  body[data-page="cyber-security"] .cyber-case-card {
    min-width: 0;
  }

  body[data-page="cyber-security"] .cyber-case-card__thumb img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  body[data-page="cyber-security"] .cyber-faq .faq-btn {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  body[data-page="cyber-security"] .cyber-hero__container {
    padding-top: 92px;
    padding-bottom: 58px;
  }

  body[data-page="cyber-security"] .cyber-hero__bg {
    background-position: 62% top;
    background-size: auto 100%;
  }

  body[data-page="cyber-security"] .cyber-hero__content h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.25;
  }

  body[data-page="cyber-security"] .cyber-hero__actions .button,
  body[data-page="cyber-security"] .cyber-faq__actions .button,
  body[data-page="cyber-security"] .site-cta--cyber-security .site-cta__actions .button {
    width: 100%;
  }

  body[data-page="cyber-security"] .cyber-overview,
  body[data-page="cyber-security"] .cyber-challenge,
  body[data-page="cyber-security"] .cyber-approach,
  body[data-page="cyber-security"] .cyber-service,
  body[data-page="cyber-security"] .cyber-feature,
  body[data-page="cyber-security"] .cyber-case,
  body[data-page="cyber-security"] .cyber-faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body[data-page="cyber-security"] .cyber-overview__content,
  body[data-page="cyber-security"] .cyber-service__summary,
  body[data-page="cyber-security"] .cyber-offering__grid,
  body[data-page="cyber-security"] .cyber-feature__grid,
  body[data-page="cyber-security"] .cyber-case-card {
    grid-template-columns: 1fr;
  }

  body[data-page="cyber-security"] .cyber-feature__grid {
    gap: 16px;
  }

  body[data-page="cyber-security"] .cyber-feature-card {
    min-height: auto;
    padding: 28px 22px 26px;
  }

  body[data-page="cyber-security"] .cyber-case-card__thumb {
    min-height: 0;
  }

  body[data-page="cyber-security"] .cyber-case-card__body {
    padding: 22px 18px;
  }

  body[data-page="cyber-security"] .cyber-case-card__body .cyber-report-button {
    justify-content: center;
    width: 100%;
  }

  body[data-page="cyber-security"] .site-cta--cyber-security .site-cta__inner {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 480px) {
  body[data-page="cyber-security"] .cyber-hero__container {
    padding-top: 84px;
    padding-bottom: 50px;
  }

  body[data-page="cyber-security"] .cyber-hero__content h1 {
    font-size: 28px;
  }

  body[data-page="cyber-security"] .cyber-hero__desc {
    font-size: 14px;
  }

  body[data-page="cyber-security"] .cyber-overview,
  body[data-page="cyber-security"] .cyber-challenge,
  body[data-page="cyber-security"] .cyber-approach,
  body[data-page="cyber-security"] .cyber-service,
  body[data-page="cyber-security"] .cyber-feature,
  body[data-page="cyber-security"] .cyber-case,
  body[data-page="cyber-security"] .cyber-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  body[data-page="cyber-security"] .cyber-summary-card,
  body[data-page="cyber-security"] .cyber-offering-card,
  body[data-page="cyber-security"] .cyber-feature-card,
  body[data-page="cyber-security"] .cyber-case-card__body,
  body[data-page="cyber-security"] .cyber-faq .faq-btn {
    padding-right: 16px;
    padding-left: 16px;
  }

  body[data-page="cyber-security"] .cyber-case-card__body h3 {
    font-size: 20px;
  }
}

.cyber-page [data-reveal],
.cyber-page .cyber-overview__head[data-reveal] {
  opacity: 0;
  visibility: visible;
  transform: translateY(48px);
  transition:
    opacity .7s ease var(--reveal-delay, 0ms),
    transform .7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.cyber-page [data-reveal].is-visible,
.cyber-page .cyber-overview__head[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cyber-page [data-reveal],
  .cyber-page .cyber-overview__head[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
