:root {
  --ink: #17202a;
  --muted: #5f6b7a;
  --line: #dbe2ea;
  --surface: #f5f7fa;
  --white: #ffffff;
  --blue: #174a7c;
  --blue-deep: #0d2d4d;
  --teal: #1d7f89;
  --gold: #e3a51a;
  --orange: #f15a24;
  --green: #174a34;
  --shadow: 0 18px 45px rgba(21, 34, 50, 0.14);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
}

.db-preview-hero {
  background: linear-gradient(110deg, #eef9f0 0%, #bfe8db 52%, #83d2bd 100%);
}

.db-preview-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.db-list-section {
  background: var(--surface);
}

.db-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.db-card {
  display: grid;
  grid-template-rows: 170px auto auto 1fr;
  min-height: 390px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(14, 42, 66, 0.08);
}

.db-card-image {
  display: block;
  background: #e8f1f2;
  overflow: hidden;
}

.db-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.db-card-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #0e2a42;
  background: linear-gradient(135deg, #dff8eb, #8fe2d3);
  font-size: 18px;
  font-weight: 900;
}

.db-card-meta {
  padding: 22px 24px 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.db-card strong {
  padding: 10px 24px 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.28;
}

.db-card em {
  padding: 12px 24px 24px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.db-toolbar {
  margin-bottom: 28px;
}

.db-row-list {
  display: grid;
  gap: 12px;
}

.db-row {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.db-row span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.db-row strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.db-row em {
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.db-row p {
  grid-column: 2 / 4;
  margin: -4px 0 0;
  color: var(--muted);
}

.db-detail-section {
  padding-top: 88px;
  padding-bottom: 88px;
  background: var(--surface);
}

.db-detail-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.db-detail-panel h1 {
  max-width: 780px;
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
}

.db-detail-meta {
  color: var(--muted);
  font-weight: 800;
}

.db-detail-image {
  margin: 34px 0;
  border-radius: 8px;
  overflow: hidden;
}

.db-detail-image img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
}

.db-detail-body {
  display: grid;
  gap: 18px;
  max-width: 780px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .db-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .db-row {
    grid-template-columns: 1fr;
  }

  .db-row em {
    text-align: left;
  }

  .db-row p {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .db-card-grid {
    grid-template-columns: 1fr;
  }

  .db-preview-section,
  .db-detail-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .db-detail-panel {
    padding: 32px 20px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr) minmax(120px, 180px);
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 96px;
  padding: 16px 6vw 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 32, 42, 0.16);
  pointer-events: auto;
  backdrop-filter: blur(12px);
}

.brand img {
  display: block;
  width: 110px;
  height: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 64px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0;
  min-height: 64px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  pointer-events: auto;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0 13px;
  white-space: nowrap;
  border-bottom: 4px solid transparent;
}

.legacy-nav {
  margin-left: 0;
}

.utility-links {
  position: absolute;
  top: 10px;
  right: 6vw;
  display: inline-flex;
  gap: 16px;
  color: #5f6b7a;
  font-size: 11px;
  font-weight: 800;
}

.utility-links a::before {
  content: "· ";
}

.utility-links a:hover {
  color: #f15a24;
}

.main-nav a:hover,
.main-nav a.is-active {
  border-bottom-color: #f15a24;
  background: #f7f8fa;
}

.mobile-subnav {
  display: none;
}

.nav-cta {
  min-height: 44px !important;
  margin-left: 10px;
  padding: 0 18px !important;
  color: var(--white);
  background: #174a7c;
  border-radius: 0;
  border-bottom: 0 !important;
}

.search-button {
  margin-left: auto;
  min-height: 44px;
  padding: 0 4px 0 28px;
  color: #111827;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  display: none;
  min-height: 260px;
  padding: 0;
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid rgba(23, 32, 42, 0.16);
  box-shadow: 0 18px 24px rgba(21, 34, 50, 0.14);
}

.mega-close {
  position: absolute;
  top: 26px;
  right: 5vw;
  width: 42px;
  height: 42px;
  color: #111827;
  background: transparent;
  border: 0;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.mega-close:hover {
  color: #f15a24;
}

.mega-menu.is-open {
  display: block;
}

.site-header.mega-suppressed .mega-menu {
  display: none !important;
}

.mega-panel {
  display: none;
}

.mega-panel.is-active {
  display: grid;
  grid-template-columns: minmax(260px, 315px) minmax(0, 760px);
  gap: 42px;
  max-width: 1180px;
  min-height: 260px;
  margin: 0 auto;
}

.mega-menu.is-open .mega-panel:not(.is-active) {
  display: none !important;
}


.site-header:has([data-menu="ihime"]:hover) [data-menu="ihime"],
.site-header:has([data-menu="certification"]:hover) [data-menu="certification"],
.site-header:has([data-menu="education"]:hover) [data-menu="education"],
.site-header:has([data-menu="solution"]:hover) [data-menu="solution"],
.site-header:has([data-menu="nabasi"]:hover) [data-menu="nabasi"],
.site-header:has([data-menu="community"]:hover) [data-menu="community"] {
  border-bottom-color: #f15a24;
  background: #f7f8fa;
}

.mega-context {
  min-height: 260px;
  padding: 30px;
  background: #143f42;
}

.mega-context p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.mega-context p span {
  display: inline-block;
  margin: 0 8px;
  color: #7d8794;
}

.mega-context h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.14;
}

.mega-context small {
  display: block;
  max-width: 245px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  align-content: start;
  gap: 0 62px;
  padding: 30px 0 28px;
  border-top: 1px solid rgba(23, 32, 42, 0.16);
}

.mega-grid.compact-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 0 70px;
}

.mega-grid.single-grid {
  grid-template-columns: minmax(260px, 420px);
}

.mega-grid a {
  display: block;
  min-height: auto;
  padding: 0 0 17px;
  color: #111827;
  border-left: 0;
}

.mega-grid a span {
  display: none;
}

.mega-grid a strong {
  display: block;
  margin-top: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.mega-grid a em {
  max-width: 330px;
  color: #5f6b7a;
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.mega-grid a:hover {
  background: transparent;
  color: #f15a24;
}

.mega-grid a:hover span,
.mega-grid a:hover em {
  color: #f15a24;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 190px 6vw 42px;
  overflow: hidden;
  color: #0d263f;
  background: #dff8ea;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(150, 255, 112, 0.86), transparent 28%),
    radial-gradient(circle at 68% 82%, rgba(36, 196, 178, 0.72), transparent 30%),
    linear-gradient(118deg, rgba(246, 255, 236, 0.98) 0%, rgba(213, 248, 224, 0.94) 34%, rgba(140, 239, 128, 0.84) 64%, rgba(25, 150, 132, 0.84) 100%),
    linear-gradient(148deg, transparent 0 58%, rgba(12, 64, 105, 0.22) 59% 100%);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.58) 0 26%, transparent 27%),
    linear-gradient(58deg, transparent 0 48%, rgba(255, 230, 113, 0.3) 49% 58%, transparent 59%),
    linear-gradient(38deg, transparent 0 64%, rgba(255, 255, 255, 0.24) 65% 78%, transparent 79%);
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 58%);
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #174a34;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(13, 38, 63, 0.76);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #0e2a42;
  background: #92f26d;
}

.button.secondary {
  color: #0d263f;
  border-color: rgba(13, 38, 63, 0.28);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.hero-panel {
  position: relative;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 960px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(13, 38, 63, 0.16);
  border-radius: 0;
}

.hero-panel div {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 22px;
}

.hero-panel span {
  color: rgba(13, 38, 63, 0.68);
}

.hero-solution {
  min-height: 460px;
  align-items: center;
  padding-top: 98px;
  padding-bottom: 10px;
}

.hero-solution .hero-media {
  background:
    radial-gradient(circle at 88% 16%, rgba(116, 255, 215, 0.7), transparent 30%),
    radial-gradient(circle at 22% 86%, rgba(151, 119, 255, 0.3), transparent 28%),
    linear-gradient(126deg, rgba(247, 255, 250, 0.98) 0%, rgba(219, 251, 242, 0.92) 42%, rgba(171, 231, 255, 0.72) 68%, rgba(78, 112, 221, 0.48) 100%),
    linear-gradient(32deg, transparent 0 55%, rgba(9, 33, 74, 0.2) 56% 100%);
}

.hero-solution .hero-content {
  max-width: 1180px;
  padding-bottom: 0;
}

.hero-solution h1 {
  max-width: 1180px;
  font-size: clamp(40px, 3.75vw, 54px);
  line-height: 1.08;
}

.hero-solution .hero-copy {
  max-width: 1120px;
  font-size: 18px;
  line-height: 1.65;
}

.hero-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1040px, 100%);
  margin-top: 0;
  border: 1px solid rgba(13, 38, 63, 0.18);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
}

.hero-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
}

.hero-feature a {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 22px 24px;
  border-right: 1px solid rgba(13, 38, 63, 0.14);
  border-bottom: 1px solid rgba(13, 38, 63, 0.14);
}

.hero-map a:nth-child(3n),
.hero-feature a:last-child {
  border-right: 0;
}

.hero-map a:nth-child(n + 4) {
  border-bottom: 0;
}

.hero-feature span,
.solution-card span,
.industry-grid span,
.education-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card span {
  display: block;
  margin-bottom: 14px;
}

.solution-card.core-tfc span {
  margin-bottom: 24px;
}

.hero-feature strong {
  font-size: 21px;
}

.hero-feature em {
  color: rgba(13, 38, 63, 0.72);
  font-size: 14px;
  font-style: normal;
}

.section {
  padding: 44px 6vw;
}

.section-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-head.compact {
  max-width: 680px;
}

.wide-head {
  max-width: 1080px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
}

.proof-strip div {
  padding: 34px 28px;
  color: var(--white);
  background: #111b25;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.kinaxis-strip {
  background: #052e3b;
}

.kinaxis-strip div {
  background: #063947;
}

.platform-section {
  background: #ffffff;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.platform-grid article {
  min-height: 280px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(234, 255, 249, 0.9), rgba(255, 255, 255, 0.98));
}

.platform-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.platform-grid h3 {
  margin-top: 70px;
  font-size: 26px;
}

.platform-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.solutions-section {
  background: #f3f7fb;
}

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

.home-core-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.guide-section {
  background: var(--white);
}

.resource-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.resource-head a {
  margin-bottom: 12px;
  color: #174a7c;
  font-weight: 900;
  white-space: nowrap;
}

.resource-head a::after {
  content: " →";
}

.home-resource-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 0.86fr;
  gap: 18px;
}

.home-resource-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(21, 34, 50, 0.06);
}

.home-resource-card small,
.home-resource-card h3,
.home-resource-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.home-resource-card small {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-resource-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.home-resource-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.resource-thumb {
  display: block;
  height: 132px;
  background: #dcecf5;
}

.resource-news {
  background:
    linear-gradient(90deg, rgba(5, 46, 59, 0.72), rgba(5, 46, 59, 0.16)),
    url("./assets/apics.jpg") center / cover;
}

.resource-library {
  background:
    linear-gradient(90deg, rgba(14, 29, 44, 0.64), rgba(14, 29, 44, 0.1)),
    url("./assets/hero.jpg") center / cover;
}

.resource-forecast {
  background:
    radial-gradient(circle at 18% 70%, rgba(241, 90, 36, 0.8), transparent 18%),
    linear-gradient(135deg, #eaf5ff, #c9e2f8 48%, #08394a);
}

.resource-column {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, #0e4c5a, #79d4c2);
}

.home-resource-list {
  display: grid;
  align-content: stretch;
  background: var(--white);
  border-top: 1px solid rgba(23, 32, 42, 0.28);
}

.home-resource-list a {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 32, 42, 0.2);
}

.home-resource-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-resource-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 0 28px 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(21, 34, 50, 0.06);
}

.solution-card::before {
  content: "";
  display: block;
  height: 118px;
  margin: 0 -28px 28px;
  background:
    radial-gradient(circle at 86% 22%, rgba(146, 242, 109, 0.72), transparent 20%),
    linear-gradient(135deg, #123f48, #86dfe0);
}

.solution-card:nth-child(1)::before {
  background:
    linear-gradient(90deg, rgba(5, 46, 59, 0.72), rgba(5, 46, 59, 0.24)),
    url("./assets/apics.jpg") center / cover;
}

.solution-card:nth-child(2)::before {
  background:
    linear-gradient(90deg, rgba(14, 29, 44, 0.64), rgba(14, 29, 44, 0.18)),
    url("./assets/hero.jpg") center / cover;
}

.solution-card:nth-child(3)::before {
  background:
    radial-gradient(circle at 18% 70%, rgba(241, 90, 36, 0.8), transparent 18%),
    linear-gradient(135deg, #eaf5ff, #c9e2f8 48%, #08394a);
}

.solution-card:nth-child(4)::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(241, 90, 36, 0.72), transparent 18%),
    linear-gradient(135deg, #fff7ed, #e2f6ef 48%, #1b6b75);
}

.solution-card:nth-child(5)::before {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, #0e4c5a, #79d4c2);
}

.solution-card:nth-child(6)::before {
  background:
    linear-gradient(90deg, rgba(5, 46, 59, 0.72), rgba(5, 46, 59, 0.12)),
    url("./assets/forecast-pro.jpg") center / cover;
}

.solution-card.core-nabasi::before,
.solution-card:nth-child(1).core-nabasi::before,
.solution-card:nth-child(2).core-nabasi::before,
.solution-card:nth-child(3).core-nabasi::before,
.solution-card:nth-child(4).core-nabasi::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(241, 90, 36, 0.72), transparent 18%),
    linear-gradient(135deg, #fff7ed, #e2f6ef 48%, #1b6b75);
}

.solution-card.core-education::before,
.solution-card:nth-child(1).core-education::before,
.solution-card:nth-child(2).core-education::before,
.solution-card:nth-child(3).core-education::before,
.solution-card:nth-child(4).core-education::before {
  background:
    linear-gradient(90deg, rgba(14, 29, 44, 0.64), rgba(14, 29, 44, 0.18)),
    url("./assets/hero.jpg") center / cover;
}

.solution-card.core-certification::before,
.solution-card:nth-child(1).core-certification::before,
.solution-card:nth-child(2).core-certification::before,
.solution-card:nth-child(3).core-certification::before,
.solution-card:nth-child(4).core-certification::before {
  background:
    linear-gradient(90deg, rgba(5, 46, 59, 0.72), rgba(5, 46, 59, 0.24)),
    url("./assets/apics.jpg") center / cover;
}

.solution-card.core-tfc::before,
.solution-card:nth-child(1).core-tfc::before,
.solution-card:nth-child(2).core-tfc::before,
.solution-card:nth-child(3).core-tfc::before,
.solution-card:nth-child(4).core-tfc::before {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, #102a43, #1d7f89 55%, #92f26d);
}

.solution-card h3 {
  margin-top: auto;
  font-size: 28px;
}

.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(21, 34, 50, 0.12);
}

.primary-card {
  color: var(--white);
  background: #052e3b;
  border-color: #052e3b;
}

.primary-card p {
  color: rgba(255, 255, 255, 0.74);
}

.dark-band {
  color: var(--white);
  background: #0e1d2c;
}

.kinaxis-dark {
  background:
    radial-gradient(circle at 90% 8%, rgba(30, 203, 176, 0.36), transparent 34%),
    linear-gradient(135deg, #081827 0%, #102a4a 58%, #0c4150 100%);
}

.dark-band .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.industry-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.industry-grid h3 {
  margin-top: 72px;
  font-size: 26px;
}

.industry-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.education-blue {
  background: var(--white);
}

.education-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 40px;
  align-items: stretch;
}

.education-copy {
  padding: 34px;
  color: var(--white);
  background: #052e3b;
}

.education-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.education-copy .inline-links a {
  color: #92f26d;
}

.education-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.education-list a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 24px;
  background: var(--surface);
}

.education-list strong {
  font-size: 24px;
}

.consulting-blue {
  background: #eef2f6;
}

.about-blue {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 36px 56px;
  align-items: start;
  background: var(--white);
}

.about-blue .section-head,
.about-blue .about-statement,
.about-blue .intro-grid,
.about-blue .values-panel {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.about-blue .section-head {
  max-width: none;
  margin-bottom: 0;
}

.about-blue .section-head h2 {
  max-width: 840px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.24;
}

.about-blue .section-head p:not(.eyebrow) {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.75;
}

.about-blue .intro-grid,
.about-blue .values-panel {
  grid-column: 1 / -1;
}

.intro-grid,
.service-grid,
.nabasi-grid {
  display: grid;
  gap: 18px;
}

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

.about-statement {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 28px 30px;
  background: var(--surface);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.statement-label {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-statement h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(26px, 2.55vw, 36px);
  line-height: 1.22;
  font-weight: 800;
}

.purpose-line {
  margin-bottom: 0;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
}

.intro-grid article,
.service-card,
.nabasi-grid a {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.values-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-panel strong {
  font-size: 22px;
}

.values-panel ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-panel li {
  min-height: 96px;
  padding: 16px;
  background: var(--surface);
  border-left: 4px solid var(--orange);
  font-weight: 900;
}

.values-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.about-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin-top: 26px;
}

.about-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.band {
  background: var(--surface);
}

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

.service-card {
  min-height: 260px;
}

.service-card a {
  display: inline-block;
  margin-top: 18px;
  margin-right: 14px;
  color: var(--blue);
  font-weight: 800;
}

.inline-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.inline-links a {
  display: inline-flex;
  margin: 0;
  color: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: start;
}

.split > div:first-child p:not(.eyebrow),
.section-head p:not(.eyebrow),
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 34, 50, 0.06);
}

.process-list span {
  grid-row: span 2;
  color: var(--teal);
  font-size: 26px;
  font-weight: 900;
}

.process-list strong {
  font-size: 20px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.nabasi {
  background: #0f2338;
  color: var(--white);
}

.nabasi .section-head p:not(.eyebrow),
.nabasi-grid p {
  color: rgba(255, 255, 255, 0.74);
}

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

.nabasi-grid a {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.nabasi-grid .wide {
  grid-column: span 2;
  background: rgba(29, 127, 137, 0.22);
}

.page-hero {
  padding: 118px 6vw 22px;
  color: #0d263f;
  background:
    radial-gradient(circle at 82% 8%, rgba(146, 242, 109, 0.82), transparent 26%),
    linear-gradient(118deg, rgba(246, 255, 236, 0.98), rgba(206, 246, 229, 0.9) 48%, rgba(25, 150, 132, 0.65));
}

.page-hero h1 {
  max-width: 820px;
}

body:has(.tfc-longform) .page-hero {
  padding-bottom: 8px;
}

.page-content {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: 44px;
  padding: 80px 6vw;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 6vw;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(13, 38, 63, 0.1);
}

.breadcrumb-trail a {
  color: var(--muted);
}

.breadcrumb-trail span::before,
.breadcrumb-trail strong::before {
  margin-right: 10px;
  color: rgba(13, 38, 63, 0.35);
  content: "/";
}

.breadcrumb-trail strong {
  color: var(--ink);
}

.course-tabs {
  position: sticky;
  top: 80px;
  z-index: 14;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(13, 38, 63, 0.1);
  border-bottom: 1px solid rgba(13, 38, 63, 0.12);
  box-shadow: 0 12px 24px rgba(21, 34, 50, 0.05);
}

.course-tabs a {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 58px;
  padding: 9px 14px;
  color: rgba(13, 38, 63, 0.58);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.course-tabs a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  background: transparent;
  content: "";
}

.course-tabs span {
  margin-bottom: 4px;
  color: rgba(13, 38, 63, 0.34);
  font-size: 12px;
  font-weight: 900;
}

.course-tabs a:hover,
.course-tabs a.is-active {
  color: var(--blue);
}

.course-tabs a.is-active::after {
  background: var(--blue);
}

.course-layout {
  grid-template-columns: minmax(0, 1220px);
  justify-content: center;
  padding-top: 32px;
  background: var(--white);
}

.topic-page {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.topic-shell {
  padding: 42px;
}

.topic-detail h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.topic-detail > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.page-menu {
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  font-weight: 800;
}

.page-menu a:hover {
  background: var(--white);
}

.detail-panel {
  padding: 4px 48px 48px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.detail-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.detail-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.detail-section h3 {
  margin-bottom: 14px;
}

.detail-section p {
  color: var(--muted);
}

.module-list,
.content-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.module-list div,
.content-cards div {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  gap: 26px;
  padding: 22px 0;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.module-list strong,
.content-cards strong {
  display: block;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 18px;
}

.module-list span,
.content-cards span {
  display: block;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.tfc-longform {
  display: grid;
  gap: 0;
  padding: 4px 48px 48px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tfc-longform .detail-section {
  margin-top: 34px;
  padding: 28px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.tfc-longform .detail-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.tfc-longform .detail-section h3 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
}

.course-layout:has(.tfc-longform) {
  grid-template-columns: minmax(0, 1220px);
  padding-top: 32px;
  background: var(--white);
}

.tfc-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.tfc-copy h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.tfc-copy p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.85;
}

.tfc-figure {
  overflow: hidden;
  margin: 0;
  border-radius: 6px;
}

.tfc-figure img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.tfc-wide-list,
.tfc-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 0;
}

.tfc-wide-list li,
.tfc-steps li {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  gap: 26px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tfc-wide-list strong,
.tfc-steps strong {
  color: var(--ink);
  font-size: 18px;
}

.tfc-wide-list span,
.tfc-steps span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.tfc-longform .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.tfc-longform .check-list li {
  padding: 18px 20px;
  color: var(--muted);
  line-height: 1.65;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table div {
  min-height: 96px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data-table div:nth-child(3n) {
  border-right: 0;
}

.data-table strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #0e2a42;
  background: #e7fbdc;
  border: 1px solid rgba(14, 42, 66, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

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

.info-grid div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-grid strong {
  display: block;
  margin-bottom: 8px;
}

.info-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.secondary.light {
  background: var(--white);
}

.request-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.request-form label,
.request-form span {
  display: grid;
  gap: 8px;
}

.request-form span {
  font-size: 14px;
  font-weight: 900;
}

.board-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.board-toolbar a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.board-toolbar .is-active {
  color: #0e2a42;
  background: #92f26d;
  border-color: #92f26d;
}

.board-list {
  display: grid;
  gap: 14px;
}

.board-list a {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.board-list span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.board-list strong {
  font-size: 22px;
}

.board-list em {
  color: var(--muted);
  font-style: normal;
}

.resources {
  background: var(--surface);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-list a {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.resource-list strong {
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 22px;
  color: #334155;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-info strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-info span {
  display: block;
}

.contact-form label,
.contact-form span {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #2f3d4d;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 6vw;
  color: rgba(255, 255, 255, 0.72);
  background: #101820;
}

.site-footer img {
  width: 124px;
  filter: brightness(1.08);
}

.site-footer p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 0 4vw;
    gap: 10px;
  }

  .main-nav {
    justify-self: center;
    font-size: 14px;
  }

  .main-nav a {
    padding: 0 10px;
  }

  .proof-strip,
  .service-grid,
  .nabasi-grid,
  .solution-grid,
  .home-core-grid,
  .home-guide-grid,
  .home-resource-layout,
  .industry-grid,
  .platform-grid,
  .education-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-resource-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    border-top: 0;
  }

  .home-resource-list a {
    border-top: 1px solid rgba(23, 32, 42, 0.2);
  }

  .values-panel,
  .about-note {
    grid-template-columns: 1fr;
  }

  .values-panel ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industry-grid {
    border-left: 0;
  }

  .industry-grid article {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .split,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    min-height: 68px;
    padding: 0 20px;
    justify-content: space-between;
  }

  .utility-links {
    display: none;
  }

  .brand img {
    width: 108px;
  }

  .brand {
    justify-self: auto;
    min-height: 56px;
    margin-left: auto;
    padding: 0;
    order: 2;
  }

  .nav-toggle {
    display: block;
    order: 1;
    min-width: 56px;
    height: 56px;
    background: transparent;
    border-color: rgba(13, 38, 63, 0.16);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: auto;
  }

  .search-button {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    justify-self: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    min-height: auto;
    background: rgba(255, 255, 255, 0.98);
    border: 0;
    border-bottom: 1px solid rgba(13, 38, 63, 0.12);
    border-radius: 0;
    box-shadow: 0 18px 30px rgba(21, 34, 50, 0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-subnav {
    display: none;
    gap: 0;
    padding: 2px 0 12px 16px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-subnav.is-open {
    display: grid;
  }

  .main-nav a.is-mobile-expanded {
    color: #f15a24;
    border-bottom-color: transparent;
  }

  .mobile-subnav a {
    min-height: 34px;
    padding: 0;
    color: #5f6b7a;
    border-bottom: 0;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-subnav a::before {
    margin-right: 8px;
    color: #9aa6b2;
    content: "·";
  }

  .mobile-subnav a:hover {
    color: #f15a24;
    background: transparent;
  }

  .nav-cta {
    margin-top: 12px;
    padding: 13px 16px;
    text-align: center;
    border-bottom: 0;
  }

  .mega-menu {
    display: none !important;
  }

  .hero {
    min-height: 460px;
    padding: 118px 20px 28px;
  }

  .hero-solution {
    min-height: 400px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 12px;
  }

  .hero-solution .hero-content {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-solution h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.12;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-solution .hero-copy {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.7;
  }

  .about-statement,
  .about-statement h3 {
    max-width: 100%;
  }

  .about-statement h3 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.18;
  }

  .about-blue {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-panel,
  .hero-feature,
  .proof-strip,
  .intro-grid,
  .service-grid,
  .nabasi-grid,
  .values-panel ul,
  .resource-list,
  .solution-grid,
  .home-core-grid,
  .home-guide-grid,
  .home-resource-layout,
  .industry-grid,
  .platform-grid,
  .education-layout {
    grid-template-columns: 1fr;
  }

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

  .resource-head a {
    margin-bottom: 0;
  }

  .home-resource-list {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-panel,
  .hero-feature {
    margin-top: 52px;
  }

  .hero-feature a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 38, 63, 0.14);
  }

  .hero-map a:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(13, 38, 63, 0.14);
  }

  .hero-map a:last-child {
    border-bottom: 0;
  }

  .proof-strip {
    padding-left: 0;
    padding-right: 0;
  }

  .solution-card,
  .industry-grid article,
  .platform-grid article {
    min-height: auto;
  }

  .industry-grid h3,
  .platform-grid h3 {
    margin-top: 40px;
  }

  .section {
    padding: 36px 20px;
  }

  .nabasi-grid .wide {
    grid-column: auto;
  }

  .process-list div {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }

  .page-hero {
    padding: 92px 20px 22px;
  }

  body:has(.tfc-longform) .page-hero {
    padding-bottom: 8px;
  }

  .course-tabs {
    top: 68px;
    display: flex;
    gap: 0;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .course-tabs a {
    min-width: 138px;
    min-height: 64px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .breadcrumb-trail {
    padding: 13px 20px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .page-content {
    grid-template-columns: 1fr;
    padding: 56px 20px;
  }

  .course-layout {
    padding-top: 26px;
  }

  .course-layout:has(.tfc-longform) {
    padding-top: 26px;
  }

  .tfc-longform {
    gap: 18px;
    padding: 4px 20px 28px;
  }

  .tfc-longform .detail-section {
    padding: 24px 0 0;
  }

  .tfc-longform .detail-section:first-child {
    padding-top: 0;
  }

  .tfc-intro,
  .module-list div,
  .content-cards div,
  .tfc-wide-list li,
  .tfc-steps li,
  .tfc-longform .check-list {
    grid-template-columns: 1fr;
  }

  .tfc-intro {
    gap: 28px;
  }

  .tfc-copy h2 {
    font-size: 34px;
  }

  .tfc-copy p,
  .tfc-wide-list span,
  .tfc-steps span {
    font-size: 16px;
  }

  .tfc-figure img {
    min-height: 260px;
  }

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