@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

: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: .6s;
}

.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: 4px;
}

.l-navi__dropdown-menu {
  position: fixed;
  left: 0;
  width: 100%;
  top: var(--header-height);
  background: rgba(250,250,250,.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99;
}

.l-header.is-active .l-navi__dropdown-menu { top: 76px; }

.l-navi__dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-header:has(.l-navi__dropdown-menu.is-open) {
  background: rgba(250,250,250,.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 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: rgba(250,250,250,.98);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.l-navi__dropdown-group:hover .l-navi__subdropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.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-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-top: none;
    background: transparent;
    backdrop-filter: none;
  }
  .l-navi__dropdown-inner {
    flex-direction: column;
    padding: 0.5rem 0 0.5rem 1rem;
    gap: 0.25rem;
  }
  .l-navi__dropdown-inner a + a {
    border-left: none;
  }
  .l-navi__dropdown-inner a,
  .l-navi__dropdown-group > a {
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
  }
  .l-navi__subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
  }
}

/* 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 6%;
  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;
}

@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 (Value Pills + Rack) ===== */
.l-keyvisual__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-value-pills {
  background: #f2f4f8;
  border-radius: 10px;
  border: 1px solid rgba(0,43,93,.06);
  overflow: hidden;
}

.c-value-pills__vents {
  height: 24px;
  background: repeating-linear-gradient(
    to bottom,
    #dce0e8 0px,
    #dce0e8 4px,
    transparent 4px,
    transparent 9px
  );
  border-top: 1px solid rgba(0,43,93,.05);
}

.c-value-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 0.01em;
}

/* ===== Server Rack ===== */
.c-rack {
  width: 300px;
  background: #001f45;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0,43,93,.35),
    0 0 0 1px rgba(80,124,207,.15),
    0 0 40px rgba(80,124,207,.08);
  overflow: hidden;
  position: relative;
}

.c-rack::before,
.c-rack::after {
  content: '';
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.08) 0px,
    rgba(255,255,255,.08) 4px,
    transparent 4px,
    transparent 10px
  );
  pointer-events: none;
  z-index: 1;
}

.c-rack::before { left: 10px; }
.c-rack::after { right: 10px; }

.c-rack__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-rack__link:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.c-rack__item {
  display: grid;
  grid-template-columns: 9px 1fr auto 1fr 9px;
  gap: 10px;
  align-items: center;
  padding: 16px 28px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
  position: relative;
}

.c-rack__item:nth-child(odd) {
  background: rgba(255,255,255,.025);
}

.c-rack__item:nth-child(even) {
  background: rgba(0,0,0,.1);
}

.c-rack__link:hover .c-rack__item {
  background: rgba(80,124,207,.28);
  transform: translateX(6px) translateY(-3px);
  box-shadow:
    0 8px 32px rgba(80,124,207,.3),
    0 0 0 1px rgba(80,124,207,.2);
  padding-left: 28px;
}

.c-rack__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251,191,36,.5);
  animation: rack-pulse 2s ease-in-out infinite;
}

.c-rack__line {
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
}

.c-rack__label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: color .3s ease;
}

.c-rack__link:hover .c-rack__label {
  color: #8bc4ff;
}

.c-rack__link:hover .c-rack__dot {
  transform: scale(1.4);
  box-shadow: 0 0 16px rgba(251,191,36,.8);
}

@keyframes rack-pulse {
  0%, 100% { opacity: 1; box-shadow: inherit; }
  50% { opacity: .35; filter: brightness(1.4); }
}


@media (max-width: 1024px) {
  .l-keyvisual { margin-top: -80px; padding: 0 0 10%; text-align: center; }
  .l-keyvisual__inner { grid-template-columns: 1fr; gap: 0; padding-top: 80px; }
  .l-keyvisual__title { max-width: 100%; }
  .l-keyvisual__title p { max-width: 100%; }
  .l-keyvisual__actions { justify-content: center; }
  .c-rack { display: none; }
  .l-keyvisual__side { 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;
}

.c-title01__text {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.4;
}

.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;
}

/* ===== Stats / Results ===== */
.l-results {
  background: #3a3f49;
  color: var(--color-white);
  padding: 80px 0;
}

.l-results__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.l-results__item {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
  width: calc(33.33% - 16px);
  min-width: 200px;
  transition: background .3s ease, box-shadow .3s ease;
}

.l-results__item:hover {
  background: rgba(255,255,255,.12);
  box-shadow: 0 4px 32px 8px rgba(0,0,0,.2);
}

.l-results__value {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 700;
  display: block;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: #8ab4ff;
}

.l-results__label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

/* ===== 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: 2rem;
  border: 1px solid var(--color-border);
  transition: transform .3s ease, box-shadow .3s ease;
}

.c-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.c-card__img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.c-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(80,124,207,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-blue);
}

.c-card h3 {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.c-card p {
  color: var(--color-sub-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.c-card ul {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.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: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.l-footer__logo img {
  height: 100px;
  width: auto;
}

.l-footer__address {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.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-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.l-footer__copy {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.l-footer__links {
  display: flex;
  gap: 1.5rem;
}

.l-footer__links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color .2s ease;
  padding: 0.4rem 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: 100px 40px 40px;
    background: var(--color-white);
    transition: left .4s ease;
    z-index: 105;
  }
  .l-navi.is-open { left: 0; }
  .l-navi__list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
  }
  .l-navi__list a { font-size: 1.1rem; padding: 0.5rem 0; }
  .l-navi__contact { margin-top: 1rem; }
  .l-footer__content { flex-direction: column; }
  .l-footer__company { width: 100%; }
  .l-footer__navi { grid-template-columns: repeat(2, 1fr); }
  .l-results__item { width: calc(50% - 16px); }
  .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: grid;
    gap: 0.7rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    width: 100%;
    font-size: 0.9rem;
    color: var(--color-text-muted);
  }
  .l-navi__mobile-extras a {
    color: var(--color-blue);
    text-decoration: underline;
    padding: 0.4rem 0;
  }
  .l-navi__mobile-extras .c-lang-switch { margin-left: 0; }
}

@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; }
  .l-results__item { width: 100%; }
  .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; }
}

/* ===== 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;
  gap: 1rem;
}
@media (max-width: 768px) {
  .c-expert-iso {
    flex-direction: column;
    align-items: center;
  }
  .c-expert-iso img {
    max-width: 100%;
    height: auto;
  }
}

@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-text-muted);
  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 ===== */
.l-navi__mobile-extras { display: none; }

/* ===== Language Switcher ===== */
.c-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.c-lang-switch__item {
  padding: 0.5rem 0.6rem;
  border-radius: 3px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.c-lang-switch__item.is-active {
  color: var(--color-navy);
  background: rgba(0,33,67,.06);
}
.c-lang-switch__item:not(.is-active):hover {
  color: var(--color-hover);
}
.c-lang-switch__sep {
  color: var(--color-border);
  font-weight: 300;
}
@media (max-width: 768px) {
  .c-lang-switch { margin-left: 0; }
}

/* ===== 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; }
