:root {
  --color-navy: #002b5d;
  --color-navy-dark: #001229;
  --color-blue: #507ccf;
  --color-hover: #5ca8ff;
  --color-pink: #eb6664;
  --color-green: #0d7c4f;
  --color-bg: #fafafa;
  --color-surface: #f5f5f5;
  --color-white: #ffffff;
  --color-text: rgba(0,0,0,.87);
  --color-text-muted: rgba(0,0,0,.54);
  --color-border: #dedfe5;
  --color-blue-text: #002b5d;
  --color-sub-text: #375272;
  --color-footer-bg: #f5f5f5;
  --shadow-card: 0 4px 32px 8px rgba(34,49,66,.18);
  --shadow-soft: 4px 4px 20px 8px rgba(0,14,27,.05);
  --shadow-button: 0 6px 22px 0 rgba(0,0,0,.15);
  --shadow-header: 15px 15px 30px rgba(0,0,0,.25);
  --radius-pill: 30px;
  --radius-card: 12px;
  --radius-section: 32px;
  --max-width: 1280px;
  --header-height: 140px;
}

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-hover); }
h1, h2, h3, h4, h5 { font-weight: 700; margin: 0; line-height: 1.3; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* ===== Layout Wrapper ===== */
.l-wrapper {
  position: relative;
  padding: var(--header-height) 0 0;
  min-height: 100vh;
}

/* ===== Background Lines ===== */
.l-background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-bg);
  z-index: 0;
  pointer-events: none;
}

.l-background__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  position: relative;
}

.l-background__content {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.l-background__line {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(0,0,0,.08);
}

/* ===== Inner Container ===== */
.c-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.c-inner--sm {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.l-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  background: transparent;
  border-bottom: none;
  transition: height .3s ease;
}

.l-header.is-active {
  background: rgba(250,250,250,.85);
  background: rgba(250,250,250,.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  height: 76px;
}

.l-header__top {
  width: 100%;
  height: 28px;
  background: transparent;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  transition: height .4s ease, opacity .4s ease;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 3;
}
.l-header.is-active .l-header__top {
  height: 0;
  opacity: 0;
}
.l-header__top-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.l-header__top-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.l-header__top-contact a {
  color: inherit;
  text-decoration: none;
}
.l-header__top-contact a:hover {
  color: var(--color-navy-dark);
}
.l-header__top-sep {
  color: var(--color-border);
  font-weight: 300;
}

.l-header__inner {
  max-width: 100%;
  width: 100%;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--color-navy);
}

.l-header__logo img {
  height: 100px;
  width: auto;
  transition: .4s;
}

.l-header.is-active .l-header__logo img {
  height: 48px;
}

.l-header__brand {
  white-space: nowrap;
  font-size: 1rem;
  transition: .4s;
}

.l-header.is-active .l-header__brand {
  font-size: 1rem;
}

/* ===== Navigation ===== */
.l-navi {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.l-navi__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.l-navi__list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy-dark);
  padding: 12px 0;
  position: relative;
  transition: color .3s ease;
}

.l-navi__list a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--color-hover);
  transition: width .3s ease;
}

.l-navi__list a:hover,
.l-navi__list a.is-current { color: var(--color-hover); }

.l-navi__list a:hover::after,
.l-navi__list a.is-current::after { width: 100%; }

.l-navi__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-button);
  transition: opacity .3s ease;
}

.l-navi__contact:hover {
  opacity: .85;
  color: var(--color-white);
}

/* ===== Dropdown LOB ===== */
.l-navi__dropdown {
  position: relative;
}

.l-navi__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.l-navi__dropdown-trigger::after {
  content: '▾';
  font-size: 0.8rem;
  transition: transform .25s ease;
}

.l-navi__dropdown.is-open-mobile .l-navi__dropdown-trigger::after {
  transform: rotate(180deg);
}

.l-navi__dropdown-menu {
  position: fixed;
  left: 0;
  width: 100%;
  top: var(--header-height);
  background: #ffffff;
  display: none;
  z-index: 99;
  box-shadow: none;
  border-bottom: 1px solid rgba(0,43,93,.06);
}

.l-header.is-active .l-navi__dropdown-menu { top: 76px; }

.l-navi__dropdown-menu.is-open {
  display: block;
}

.l-header:has(.l-navi__dropdown-menu.is-open) {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  transition: none;
}

.l-navi__dropdown-inner {
  max-width: 100%;
  width: 100%;
  padding: 1.25rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.l-navi__dropdown-group {
  position: relative;
  border-right: 1px solid rgba(0,43,93,.1);
}
.l-navi__dropdown-group:last-child {
  border-right: none;
}

.l-navi__dropdown-group > a {
  display: block;
  padding: 0.6rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy-dark);
  white-space: nowrap;
  text-align: center;
  transition: color .25s ease;
}

.l-navi__dropdown-group > a:hover {
  color: var(--color-hover);
}

.l-navi__subdropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #ffffff;
  display: none;
  z-index: 99;
  text-align: center;
  box-shadow: none;
  border-bottom: 1px solid rgba(0,43,93,.06);
}

.l-navi__dropdown-group:hover .l-navi__subdropdown {
  display: block;
}

.l-navi__subdropdown a {
  display: block;
  padding: 0.7rem 0.5rem;
  font-size: 0.9rem;
  color: var(--color-navy-dark);
  transition: color .25s ease;
}

.l-navi__subdropdown a:hover {
  color: var(--color-hover);
}

@media (max-width: 1024px) {
  .l-navi__dropdown {
    width: 100%;
  }
  .l-navi__dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 43, 93, 0.03);
    border-radius: 8px;
    margin-top: 0.5rem;
    backdrop-filter: none;
    padding: 0.5rem;
  }
  .l-navi__dropdown.is-open-mobile .l-navi__dropdown-menu {
    display: block;
  }
  .l-navi__dropdown-inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0.5rem;
  }
  .l-navi__dropdown-group {
    border-right: none;
    border-bottom: 1px solid rgba(0,43,93,.06);
    padding-bottom: 0.5rem;
  }
  .l-navi__dropdown-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .l-navi__dropdown-inner a + a {
    border-left: none;
  }
  .l-navi__dropdown-inner a,
  .l-navi__dropdown-group > a {
    padding: 0.5rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
  }
  .l-navi__subdropdown {
    position: static;
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    padding-left: 0.75rem;
    gap: 0.2rem;
  }
  .l-navi__subdropdown a {
    padding: 0.35rem 0.5rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    text-align: left;
  }
}

/* Hamburger */
.l-header__opener {
  display: none;
  width: 24px;
  height: 18px;
  padding: 13px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.l-header__opener span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-navy-dark);
  transition: .3s;
}

.l-header__opener span:nth-child(1) { top: 0; }
.l-header__opener span:nth-child(2) { top: 8px; }
.l-header__opener span:nth-child(3) { top: 16px; }

.l-header__opener.is-active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.l-header__opener.is-active span:nth-child(2) { opacity: 0; }

.l-header__opener.is-active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* ===== Keyvisual / Hero ===== */
.l-keyvisual {
  position: relative;
  margin-top: calc(-1 * var(--header-height));
  padding: 0 0 calc(6% + 20px);
  background: linear-gradient(135deg, #f0f3f9 0%, #e8edf5 100%);
  overflow: hidden;
}

.l-keyvisual--green {
  background: linear-gradient(135deg, #f0faf5 0%, #dff0e5 100%);
}
.l-keyvisual--green::before {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0,180,120,.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,120,80,.04) 0%, transparent 60%);
}

.l-keyvisual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(80,124,207,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,43,93,.06) 0%, transparent 60%);
  pointer-events: none;
}

.l-keyvisual__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.l-keyvisual__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + 40px) 20px 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}



.l-keyvisual__title {
  max-width: 720px;
}

.l-keyvisual__title h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  transition: opacity 0.4s ease;
  display: grid;
}

.c-headline__ghost,
.c-headline__inner {
  grid-area: 1 / 1;
  word-break: break-word;
}

.c-headline__ghost {
  visibility: hidden;
}

.c-headline__inner::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--color-navy);
  animation: blink 0.7s step-end infinite;
  font-weight: 300;
}

.c-headline__inner.is-typed::after {
  display: none;
}

@keyframes blink {
  50% { opacity: 0; }
}

.l-keyvisual__title p {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-sub-text);
  margin-bottom: 2rem;
  max-width: 560px;
}

.l-keyvisual__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Right Side Column (Enterprise Bento Card) ===== */
.l-keyvisual__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.l-keyvisual__side--green {
  max-width: 460px;
  width: 100%;
}

.c-hero-image-wrap {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 43, 93, 0.12));
}

.l-keyvisual__side .l-keyvisual__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 380px;
  gap: 0.75rem;
}

.l-keyvisual__side--green .l-keyvisual__actions {
  max-width: 100%;
}

.l-keyvisual__side .l-keyvisual__actions .c-button {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .l-keyvisual__side {
    align-items: center;
    margin-top: 2rem;
  }
}

.c-hero-bento {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 43, 93, 0.08);
  border-radius: 16px;
  padding: 1rem;
  box-shadow:
    0 20px 40px -15px rgba(0, 43, 93, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  display: flex;
  flex-direction: column;
  position: relative;
}


.c-hero-bento__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 43, 93, 0.06);
}

.c-hero-bento__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.c-hero-bento__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-navy);
}

.c-hero-bento__indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: bento-pulse 2s infinite ease-in-out;
}

@keyframes bento-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.c-hero-bento__items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.c-hero-bento__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid rgba(0, 43, 93, 0.04);
  transition: all .2s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.c-hero-bento__item:hover {
  background: #ffffff;
  transform: translateX(5px);
  border-color: rgba(80, 124, 207, 0.25);
  box-shadow: 0 6px 18px rgba(0, 43, 93, 0.06);
}

.c-hero-bento__item:hover .c-hero-bento__text strong {
  color: var(--color-blue);
}

.c-hero-bento__item:hover .c-hero-bento__arrow {
  color: var(--color-blue);
  transform: translateX(3px);
}

.c-hero-bento__icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(80, 124, 207, 0.1);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-hero-bento__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-grow: 1;
}

.c-hero-bento__text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
  transition: color .2s ease;
}

.c-hero-bento__text span {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.c-hero-bento__arrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(0, 43, 93, 0.25);
  transition: all .2s ease;
  flex-shrink: 0;
}

.c-hero-bento__footer {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(0, 43, 93, 0.06);
}

.c-hero-bento__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-blue);
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  transition: color .2s ease, transform .2s ease;
}

.c-hero-bento__link:hover {
  color: var(--color-navy);
  transform: translateX(3px);
}


@media (max-width: 1024px) {
  .l-keyvisual {
    margin-top: -80px;
    padding: 0 0 68px;
    text-align: center;
  }
  .l-keyvisual__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 100px 20px 0;
  }
  .l-keyvisual__title {
    max-width: 100%;
    margin: 0 auto;
  }
  .l-keyvisual__title h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    margin-bottom: 1rem;
  }
  .l-keyvisual__title p {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 0;
  }
  .l-keyvisual__side {
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .l-keyvisual__actions {
    justify-content: center;
    gap: 0.75rem;
  }
  .l-keyvisual__actions .c-button {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
  }
  .c-rack { display: none; }
}

/* ===== Buttons ===== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .4s ease;
  z-index: 1;
}

.c-button::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.c-button:hover::after {
  transform: skewX(-10deg) scaleX(1);
}

.c-button--primary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.c-button--primary::after {
  background: var(--color-hover);
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left;
}

.c-button--primary:hover { color: var(--color-white); }

.c-button--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-navy);
}

.c-button--secondary::after {
  background: var(--color-navy);
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left;
}

.c-button--secondary:hover { color: var(--color-white); }

.c-button--light {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: var(--shadow-button);
}

.c-button--light::after {
  background: var(--color-hover);
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left;
}

.c-button--light:hover { color: var(--color-white); }

.c-button--pink {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.c-button--pink::after {
  background: #ee807e;
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left;
}

.c-button--pink:hover { color: var(--color-white); }

.c-button--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.c-button--outline-white::after {
  background: var(--color-hover);
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left;
}

.c-button--outline-white:hover { color: var(--color-white); }

/* Link style button */
.c-button--link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  font-family: inherit;
  transition: gap .3s ease;
}

.c-button--link:hover { gap: 0.8rem; color: var(--color-hover); }
.c-button--link::after { display: none; }

/* ===== Section Styles ===== */
.l-section {
  padding: 120px 0;
}

.l-section--surface {
  background: var(--color-surface);
}

.l-section--dark {
  background: linear-gradient(135deg, #004fab, #003f89);
  color: var(--color-white);
}

.l-section--clients {
  position: relative;
}


.l-section--dark .c-title01 { color: var(--color-white); }

.c-title01 {
  color: var(--color-navy);
  margin-bottom: 2.5rem;
  position: relative;
}

/* Section Title Smooth Scroll Reveal (Left-to-Right Wipe) for All Pages */
.c-title01__text {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-navy) 50%, rgba(0, 43, 93, 0.15) 60%, rgba(0, 43, 93, 0.05) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
  transform: translateX(-8px);
  transition: background-position 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.7s ease,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: background-position, opacity, transform;
}

.c-title01__text.is-revealed {
  background-position: 0% 0;
  opacity: 1;
  transform: translateX(0);
}

.l-section--dark .c-title01__text {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.l-section--dark .c-title01__text.is-revealed {
  background-position: 0% 0;
  opacity: 1;
}

.c-title01__eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.c-title01 p {
  color: var(--color-sub-text);
  max-width: 540px;
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.c-title01[style*="text-align:center"] p,
.c-title01[style*="text-align: center"] p,
.text-center .c-title01 p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}



/* ===== Card Grid ===== */
.c-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.c-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.c-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(0, 43, 93, 0.1);
  border-color: rgba(80, 124, 207, 0.25);
}

.c-card__img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  transition: transform .3s ease;
}

.c-card:hover .c-card__img {
  transform: translateY(-2px) scale(1.02);
}

.c-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.c-card p {
  color: var(--color-sub-text);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.c-card ul {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.c-card .c-button--link {
  margin-top: auto;
  align-self: flex-start;
}

.c-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.c-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* ===== Tags Section ===== */
.p-top-tags {
  padding: 60px 0;
}

.p-top-tags__content {
  background: var(--color-white);
  border-radius: 40px;
  padding: 3rem;
}

.p-top-tags__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.p-top-tags__header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}

.p-top-tags__divider {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.c-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.c-tag {
  display: inline-flex;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: border-color .2s ease, color .2s ease;
  min-height: 44px;
  align-items: center;
}

.c-tag:hover {
  border-color: var(--color-hover);
  color: var(--color-hover);
}

@media (max-width: 768px) {
  .p-top-tags__header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .p-top-tags__header h2 { white-space: normal; }
  .p-top-tags__divider { display: none; }
}

/* ===== Client List ===== */
.c-client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.c-client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 4px 4px 20px rgba(0,0,0,.04);
  transition: all .3s ease;
}

.c-client-item img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  transition: all .35s ease;
}

.c-client-item:hover {
  border-color: var(--color-hover);
  transform: translateY(-2px);
  box-shadow: 4px 6px 24px rgba(0,0,0,.08);
}

.c-client-item:hover img {
  transform: scale(1.03);
}

/* ===== News ===== */
.c-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.c-news-item {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 0.6rem;
  transition: box-shadow .3s ease, transform .3s ease;
}

.c-news-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.c-news-item__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.c-news-item__cat {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.c-news-item__date {
  color: var(--color-text-muted);
}

.c-news-item__title {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-navy);
  transition: color .2s ease;
}

.c-news-item__title:hover { color: var(--color-hover); }

@media (max-width: 1024px) {
  .c-news-grid { grid-template-columns: 1fr; }
}

/* ===== CTA Section ===== */
.p-top-cta {
  padding: 60px 0;
}

.p-top-cta__card {
  background: linear-gradient(135deg, #f0f3f9, #e4eaf3);
  border-radius: var(--radius-section);
  padding: 4rem 3rem;
  text-align: center;
}

.p-top-cta__card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.p-top-cta__card p {
  color: var(--color-sub-text);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

/* ===== Footer ===== */
.l-footer {
  background: var(--color-footer-bg);
  padding: 80px 0 20px;
  z-index: 2;
  position: relative;
}

.l-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.l-footer__content {
  display: flex;
  gap: 3rem;
}

.l-footer__company {
  width: 420px;
  flex-shrink: 0;
}

.l-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-top: -2.25rem;
  margin-bottom: 1.75rem;
}

.l-footer__logo img {
  height: 138px;
  width: auto;
  display: block;
}

.l-footer__address {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.l-footer__office {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.l-footer__office strong {
  color: var(--color-navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.l-footer__office span {
  color: var(--color-text-muted);
}

.l-footer__isms {
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--color-text-muted);
  opacity: .6;
  margin-bottom: 1rem;
}

.l-footer__navi {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.l-footer__navi__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sub-text);
  opacity: .5;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.l-footer__navi ul {
  display: grid;
  gap: 0.5rem;
}

.l-footer__navi a {
  font-size: 0.9rem;
  color: var(--color-text);
  transition: color .2s ease;
  padding: 0.4rem 0;
  display: inline-block;
}

.l-footer__navi a:hover { color: var(--color-hover); }

.l-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.l-footer__contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.l-footer__contact-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.l-footer__contact-bar .c-lang-switch {
  margin-left: auto;
}

.l-footer__contact-bar a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color .2s ease;
}

.l-footer__contact-bar a:hover {
  color: var(--color-hover);
}

.l-footer__sep {
  color: var(--color-border);
}

.c-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.c-lang-switch::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  opacity: 0.85;
  transition: opacity .2s ease;
}

.c-lang-switch:hover::before {
  opacity: 1;
}

.c-lang-switch__item {
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all .2s ease;
}

.c-lang-switch__item:hover {
  color: var(--color-navy);
}

.c-lang-switch__item.is-active {
  color: var(--color-navy);
  background: rgba(0, 43, 93, 0.08);
  box-shadow: 0 1px 3px rgba(0, 43, 93, 0.1);
  font-weight: 700;
}

.c-lang-switch__sep {
  color: var(--color-border);
  font-weight: 300;
  margin: 0 1px;
}

.l-footer__bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.l-footer__copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.l-footer__links {
  display: flex;
  gap: 1.5rem;
}

.l-footer__links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color .2s ease;
  padding: 0.2rem 0;
  display: inline-block;
}

.l-footer__links a:hover { color: var(--color-navy); }

@media (max-width: 1024px) {
  .l-header { height: 80px; }
  .l-header.is-active { height: 64px; }
  .l-header__inner { padding: 0 20px; }
  .l-header__logo { gap: 10px; font-size: 0.9rem; }
  .l-header__logo img { height: 40px; }
  .l-header.is-active .l-header__logo img { height: 32px; }
  .l-header.is-active .l-header__brand { font-size: 0.85rem; }
  .l-header__opener { display: block; }
  .l-header__top { display: none; }
  .l-navi {
    position: fixed;
    top: 0; left: 100%;
    width: 100%; height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 90px 24px 40px;
    background: var(--color-white);
    transition: left .35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .l-navi.is-open { left: 0; }
  .l-navi__list {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
  }
  .l-navi__list a { font-size: 1.05rem; padding: 0.5rem 0; width: 100%; }
  .l-navi__contact { margin-top: 1.25rem; width: 100%; text-align: center; }
  .l-footer__content { flex-direction: column; }
  .l-footer__company { width: 100%; }
  .l-footer__navi { grid-template-columns: repeat(2, 1fr); }
  .c-card-grid { grid-template-columns: repeat(2, 1fr); }
  .c-client-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .l-navi__mobile-extras {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 43, 93, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    width: 100%;
    font-size: 0.9rem;
    color: var(--color-text-muted);
  }
  .l-navi__mobile-extras a {
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
  }
  .l-navi__mobile-extras a:hover {
    color: var(--color-blue);
  }
  .l-navi__mobile-extras .c-lang-switch {
    margin-left: 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 43, 93, 0.08);
    font-size: 0.95rem;
  }
}

@media (max-width: 1200px) {
  .l-navi__list { gap: 0.5rem; }
  .l-navi__list a { font-size: 0.9rem; }
  .l-header__brand { font-size: 1rem; }
}

@media (max-width: 640px) {
  .l-footer__navi { grid-template-columns: 1fr; }
  .c-card-grid { grid-template-columns: 1fr; }
  .c-client-grid { grid-template-columns: repeat(2, 1fr); }
  .p-top-tags__content { padding: 1.5rem; border-radius: 24px; }
  .l-footer__inner { padding: 0 20px; }
  .l-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .l-keyvisual__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .l-keyvisual__actions .c-button {
    width: 100%;
  }
}

/* ===== Sub-page Keyvisual ===== */
.p-keyvisual {
  padding: 0 0 40px;
  background: var(--color-white);
}

.p-keyvisual__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.p-keyvisual__badge {
  display: inline-flex;
  padding: 0.4rem 1rem;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.p-keyvisual h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.p-keyvisual p {
  color: var(--color-sub-text);
  max-width: 540px;
  font-size: 1.05rem;
}

/* ===== Content Sections (Sub-pages) ===== */
.l-content-section {
  padding: 80px 0;
}

.l-content-section--surface {
  background: var(--color-surface);
}

.l-content-section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.l-content-section--dark .c-title01 { color: var(--color-white); }
.l-content-section--dark .c-title01 p { color: rgba(255,255,255,.8); }

.c-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.c-content-grid--reverse { direction: rtl; }
.c-content-grid--reverse > * { direction: ltr; }

.c-content-grid--3col { grid-template-columns: 1fr 1fr 1fr; gap: 0; }

.c-expert-iso {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.c-expert-iso img {
  width: 252px;
  height: auto;
  object-fit: contain;
  margin-right: 40px;
}

@media (max-width: 1024px) {
  .c-expert-iso {
    justify-content: center;
    margin-top: 1.5rem;
  }
  .c-expert-iso img {
    width: 240px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .c-expert-iso {
    margin-top: 1.5rem;
  }
  .c-expert-iso img {
    width: 220px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .c-content-grid,
  .c-content-grid--reverse,
  .c-content-grid--3col { grid-template-columns: 1fr; direction: ltr; }
  .c-content-grid--reverse > * { direction: ltr; }
}

/* ===== Profile Table ===== */
.c-profile-table {
  width: 100%;
  border-collapse: collapse;
}

.c-profile-table tr {
  border-bottom: 1px solid var(--color-border);
}

.c-profile-table td {
  padding: 1rem 0.75rem;
  font-size: 0.92rem;
  vertical-align: top;
}

.c-profile-table .c-profile-table__label {
  font-weight: 600;
  color: var(--color-navy);
  width: 30%;
  font-size: 0.88rem;
}

/* ===== Contact Form ===== */
.c-form {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
}

.c-form__row {
  display: grid;
  gap: 0.5rem;
}

.c-form__label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-navy);
}

.c-form__input {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-white);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.c-form__input:focus {
  outline: none;
  border-color: var(--color-hover);
  box-shadow: 0 0 0 3px rgba(80,124,207,.12);
}

textarea.c-form__input {
  min-height: 140px;
  resize: vertical;
}

/* ===== Tabs ===== */
.c-tabs {
  display: grid;
  gap: 2rem;
}

.c-tab-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.c-tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  margin-bottom: -1px;
}

.c-tab-btn:hover { color: var(--color-navy); }

.c-tab-btn.is-active {
  color: var(--color-navy);
  border-bottom-color: var(--color-navy);
}

.c-tab-panel { display: none; }
.c-tab-panel.is-active { display: block; }

/* ===== Tables ===== */
.c-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.c-table th,
.c-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.c-table th {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-surface);
}

.c-table tr:hover td {
  background: rgba(80,124,207,.04);
}

/* ===== Service Detail Blocks ===== */
.c-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
}

.c-service-block:last-child { border-bottom: none; }

.c-service-block--reverse { direction: rtl; }
.c-service-block--reverse > * { direction: ltr; }

.c-service-block__image {
  border-radius: var(--radius-section);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.c-service-block__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.c-service-block__image--full img {
  height: auto;
  object-fit: contain;
}

.c-service-block__content {
  display: grid;
  gap: 1rem;
}

.c-service-block__badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(80,124,207,.1);
  color: var(--color-blue);
  width: fit-content;
}

.c-service-block__content h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--color-navy);
}

.c-service-block__content p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.c-service-block__content ul {
  display: grid;
  gap: 0.4rem;
}

.c-service-block__content li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-sub-text);
  font-size: 0.9rem;
}

.c-service-block__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
}

@media (max-width: 768px) {
  .c-service-block,
  .c-service-block--reverse { grid-template-columns: 1fr; direction: ltr; }
  .c-service-block--reverse > * { direction: ltr; }
}

/* ===== Values (Why TIM) ===== */
.c-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.c-value-card {
  padding: 2rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 11rem;
  transition: box-shadow .3s ease, transform .3s ease;
}

.c-value-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.c-value-card h3 { font-size: 1.2rem; color: var(--color-navy); }
.c-value-card p { flex: 1; color: var(--color-text-muted); font-size: 0.92rem; }

@media (max-width: 768px) {
  .c-values-grid { grid-template-columns: 1fr; }
}

/* ===== Green Data Center ===== */
.c-phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.c-phase-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  position: relative;
  border-left: 3px solid var(--color-green);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

.c-phase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-left-color: #2ebd7a;
}

.c-phase-card__num {
  position: absolute;
  left: 0.75rem;
  top: 1.3rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.85rem;
}

.c-phase-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}

.c-phase-card__dur {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.c-phase-card p {
  color: var(--color-sub-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Timeline ===== */
.c-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.c-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-navy);
  opacity: 0.12;
}

.c-timeline__item {
  position: relative;
  padding-left: 76px;
  margin-bottom: 2.5rem;
}

.c-timeline__item:last-child {
  margin-bottom: 0;
}

.c-timeline__marker {
  position: absolute;
  left: 11px;
  top: 1.3rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--color-white), 0 0 0 6px rgba(0,43,93,.08);
}

.c-timeline__card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

.c-timeline__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.c-timeline__card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--color-navy);
}

.c-timeline__card p {
  color: var(--color-sub-text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.c-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.c-why-choose-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

.c-why-choose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.c-why-choose-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.c-why-choose-card p {
  color: var(--color-sub-text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.c-faq-list {
  display: grid;
  gap: 1.75rem;
}

.c-faq-item h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.c-faq-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .c-phase-grid { grid-template-columns: 1fr; gap: 2rem; }
  .c-why-choose-grid { grid-template-columns: 1fr; }
  .c-timeline { max-width: 100%; }
  .c-timeline__item { padding-left: 60px; }
  .c-timeline::before { left: 20px; }
  .c-timeline__marker { left: 5px; width: 30px; height: 30px; font-size: 0.75rem; }
}

/* ===== Overview ===== */
.c-overview-content {
  max-width: none;
}

.c-overview-content p {
  margin-bottom: 1rem;
  color: var(--color-sub-text);
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== Hero News Card ===== */
.c-hero-news {
  position: absolute;
  right: 0;
  bottom: -2rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  width: min(300px, 80%);
  display: grid;
  gap: 0.5rem;
  z-index: 2;
}

.c-hero-news__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.c-hero-news time {
  font-weight: 500;
  color: var(--color-navy);
  font-size: 0.85rem;
}

.c-hero-news a {
  font-weight: 500;
  color: var(--color-blue);
  font-size: 0.9rem;
}

.c-hero-news a:hover { color: var(--color-hover); }

/* ===== Contact Info ===== */
.c-contact-info {
  display: grid;
  gap: 2rem;
}

.c-contact-info__item {
  display: grid;
  gap: 0.3rem;
}

.c-contact-info__item h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.c-contact-info__item p,
.c-contact-info__item a {
  font-size: 1rem;
  color: var(--color-navy);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.c-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.c-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Title Reveal ===== */
.c-title-reveal {
  position: relative;
  overflow: hidden;
}

.c-title-reveal > span {
  display: block;
  position: relative;
}

/* ===== Hero pulse image ===== */
.c-hero-pulse {
  animation: pulse 5s ease-in-out infinite;
}

/* ===== Contact page map ===== */
.c-map {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: none;
}

/* ===== Case study grid ===== */
.c-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.c-case-grid h2 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin: 0.75rem 0 1rem;
  line-height: 1.4;
}

.c-case-grid p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.c-case-grid .c-button--link {
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .c-case-grid { grid-template-columns: 1fr; }
}

/* ===== Case study article ===== */
.c-article {
  max-width: 720px;
}

.c-article h2 {
  font-size: 1.6rem;
  color: var(--color-navy);
  margin: 2rem 0 1rem;
}

.c-article h3 {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin: 1.5rem 0 0.75rem;
}

.c-article p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.c-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.c-article li {
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

/* ===== Privacy/Security pages ===== */
.c-policy-content {
  max-width: 720px;
}

.c-policy-content h2 {
  font-size: 1.4rem;
  color: var(--color-navy);
  margin: 2rem 0 1rem;
}

.c-policy-content h3 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin: 1.5rem 0 0.75rem;
}

.c-policy-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.c-policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.c-policy-content li {
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

/* ===== Responsive for all pages ===== */
@media (max-width: 1024px) {
  .l-section { padding: 60px 0; }
  .l-content-section { padding: 60px 0; }
}

/* ===== Case Studies page ===== */
.c-case-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--color-border);
}

.c-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.c-case-card .c-case-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.c-case-card h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
}

.c-case-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== LOB Nav Mobile ===== */
@media (max-width: 768px) {
  .c-lob-nav { grid-template-columns: 1fr; }
}

/* ===== Services page extended ===== */
.c-services-wrap {
  display: grid;
  gap: 3rem;
}

/* ===== Nav Mobile Extras (Desktop Hidden) ===== */
@media (min-width: 1025px) {
  .l-navi__mobile-extras {
    display: none !important;
  }
}

/* ===== Preloader ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity .55s ease;
  pointer-events: none;
}
#loader.is-hidden {
  opacity: 0;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.loader__logo {
  width: 100px;
  height: auto;
}
.loader__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-blue);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== LOB Page Nav ===== */
.c-lob-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}
.c-lob-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  text-decoration: none;
  color: var(--color-navy);
  border-right: 1px solid var(--color-border);
  transition: background .2s ease;
}
.c-lob-nav__item:last-child {
  border-right: none;
}
.c-lob-nav__item:hover {
  background: rgba(80,124,207,.04);
}
.c-lob-nav__label {
  font-size: 1.1rem;
  font-weight: 600;
}
.c-lob-nav__arrow {
  font-size: 1.2rem;
  color: var(--color-blue);
  transition: transform .2s ease;
}
.c-lob-nav__item:hover .c-lob-nav__arrow {
  transform: translateX(4px);
}

/* ===== Scroll to Top ===== */
.c-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-navy);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, background .2s ease, color .2s ease;
}
.c-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-scroll-top:hover {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

/* ===== Misc ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ===== Form Status Alerts ===== */
.c-form-status {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all .3s ease;
  animation: fadeInStatus .3s ease-in-out;
}
@keyframes fadeInStatus {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.c-form-status--success {
  background-color: #e6f4ea;
  border: 1px solid #a8dab5;
  color: #137333;
}
.c-form-status--error {
  background-color: #fce8e6;
  border: 1px solid #fad2cf;
  color: #c5221f;
}
/* ===== Case Studies Minimalist Editorial Connected Grid ===== */
.c-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}

.c-case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow .3s ease, transform .3s ease, z-index .3s ease;
  position: relative;
  margin-right: -1px;
}

.c-case-card:hover {
  z-index: 2;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.c-case-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.c-case-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: rgba(80, 124, 207, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}

.c-case-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.c-case-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.c-case-card__lead {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.c-case-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.c-case-card__pillbox {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.75rem;
}

.c-case-card__pill {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--color-surface);
  color: var(--color-navy);
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(0,43,93,.06);
}

.c-case-card__footer {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,43,93,.06);
}

.c-case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-blue);
  transition: gap .2s ease, color .2s ease;
}

.c-case-card:hover .c-case-card__link {
  color: var(--color-navy);
  gap: 12px;
}

@media (max-width: 1024px) {
  .c-case-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .c-case-card {
    margin-right: 0;
  }
}

/* ===== Case Study Detail Articles ===== */
.c-article {
  max-width: calc((100% * 2 / 3));
  margin-bottom: 2.5rem;
}

.c-article h2 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.c-article p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.c-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.c-article li {
  color: var(--color-navy-dark);
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: justify;
}

.c-pdf-viewer {
  width: 100%;
  max-width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 43, 93, 0.04);
  margin: 2.5rem 0;
}

.c-pdf-viewer__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #f8f9fc;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.c-pdf-viewer__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}

.c-pdf-viewer__info svg {
  color: var(--color-blue);
  flex-shrink: 0;
}

.c-pdf-viewer__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.c-pdf-viewer__frame {
  width: 100%;
  height: 850px;
  min-height: 80vh;
  background: #f1f3f7;
  position: relative;
}

.c-pdf-viewer__frame iframe,
.c-pdf-viewer__frame embed {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.c-article-nav {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .c-article,
  .c-pdf-viewer,
  .c-article-nav {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .c-pdf-viewer__frame {
    height: 480px;
  }
  .c-pdf-viewer__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-pdf-viewer__actions {
    width: 100%;
  }
  .c-pdf-viewer__actions a {
    width: 100%;
    text-align: center;
  }
}

/* ===== Footer ISO Badges ===== */

.l-footer__iso {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.l-footer__iso img {
  height: 85px;
  width: auto;
  max-width: 350px;
  object-fit: contain;
}

/* ===== Post-Quantum Cryptography (PQC) Specific Styles ===== */
:root {
  --color-gold: #b48325;
  --color-gold-subtle: #d4a34b;
  --color-pqc-accent: #002b5d;
}

.l-keyvisual--pqc {
  background: linear-gradient(135deg, #f0f3f9 0%, #e8edf5 100%);
}
.l-keyvisual--pqc::before {
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(212, 163, 75, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(180, 131, 37, 0.05) 0%, transparent 60%);
}

.l-content-section--pqc-gold {
  background: var(--color-surface);
}

.c-pqc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-pqc-accent);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.c-formula-card {
  background: var(--color-navy-dark);
  border-radius: var(--radius-card);
  padding: 2.75rem;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 43, 93, 0.2);
  position: relative;
}

.c-formula-card__math {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #60a5fa;
  font-family: 'Outfit', monospace;
  margin: 1rem 0 1.5rem;
  display: inline-block;
  padding: 0.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 12px;
}

.c-formula-card__vars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.c-formula-card__var-item strong {
  display: inline-block;
  color: #60a5fa;
  font-size: 1.15rem;
  margin-right: 0.35rem;
}

.c-pqc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .c-pqc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.c-pqc-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  border: 1px solid var(--color-border);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  margin-right: -1px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, z-index .25s ease;
}

.c-pqc-card > p {
  flex-grow: 0;
  min-height: 48px;
}

.c-pqc-card:hover {
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(2, 132, 199, 0.3);
}

@media (max-width: 1024px) {
  .c-pqc-card {
    margin-right: 0;
  }
}

.c-pqc-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 0.6rem;
  margin-bottom: 0.75rem;
}

.c-pqc-card ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.c-pqc-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-sub-text);
  line-height: 1.55;
}

.c-pqc-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-pqc-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.c-roadmap-step {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  border-top: 4px solid var(--color-pqc-accent);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.c-roadmap-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -8px rgba(0, 43, 93, 0.1);
}

.c-roadmap-step__year {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-pqc-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.c-industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.c-industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(0, 43, 93, 0.1);
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all .2s ease;
}

.c-industry-pill:hover {
  border-color: var(--color-pqc-accent);
  background: rgba(2, 132, 199, 0.05);
  color: var(--color-pqc-accent);
}

/* ===== Structured Grid Boxes (Aligned 1:1 with 3 Background Columns) ===== */
.c-pqc-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  margin-top: 1.5rem;
}

.c-pqc-matrix-item {
  padding: 1.85rem 1.6rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.6rem;
  transition: box-shadow .3s ease, transform .3s ease, background-color .3s ease;
  position: relative;
}

.c-pqc-matrix-item:nth-child(3n) {
  border-right: none;
}

.c-pqc-matrix-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.c-pqc-matrix-item:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  z-index: 2;
}

.c-pqc-matrix-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-navy);
  border: 1px solid rgba(0, 43, 93, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
  margin-bottom: 0.25rem;
}

.c-pqc-matrix-item:hover .c-pqc-matrix-item__icon {
  transform: translateY(-2px);
  background: var(--color-navy);
  color: var(--color-white);
}

.c-pqc-matrix-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.c-pqc-matrix-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
}

.c-pqc-matrix-item__sub {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .c-pqc-matrix-grid {
    grid-template-columns: 1fr;
  }
  .c-pqc-matrix-item {
    border-right: none !important;
  }
  .c-pqc-matrix-item:last-child {
    border-bottom: none;
  }
}




