﻿:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #333333;
  --muted: #607080;
  --line: rgba(15, 45, 82, 0.12);
  --accent: #ff8a00;
  --accent-deep: #d86f00;
  --accent-soft: rgba(255, 138, 0, 0.14);
  --teal: #00b8b0;
  --dark: #0f2d52;
  --shadow: 0 24px 60px rgba(15, 45, 82, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Trebuchet MS", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at top left, rgba(0, 184, 176, 0.08), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(15, 45, 82, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 42%, #f4f6f8 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 65%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 20;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1360px, calc(100% - 24px));
  margin: 0 auto 24px;
  padding-top: 0;
  position: relative;
  z-index: 25;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 22px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(248, 240, 231, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(21, 32, 43, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  border-radius: 0 0 36px 36px;
  position: sticky;
}

.topbar::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: -18px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 1) 0%, rgba(248, 240, 231, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
  z-index: -1;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 115, 63, 0) 0%, rgba(217, 115, 63, 0.38) 22%, rgba(31, 109, 116, 0.28) 78%, rgba(31, 109, 116, 0) 100%);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-symbol {
  display: none;
}

.brand-full {
  height: 82px;
  width: auto;
}

.nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  color: var(--muted);
  position: relative;
}

.nav-item {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  padding: 8px 10px;
  border-radius: 16px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--accent-deep);
  background: linear-gradient(180deg, rgba(247, 227, 212, 0.92) 0%, rgba(242, 214, 192, 0.88) 100%);
  box-shadow: inset 0 0 0 1px rgba(217, 115, 63, 0.18), 0 10px 22px rgba(143, 63, 30, 0.08);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -2px;
  width: calc(100% - 24px);
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after,
.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 240px;
  max-height: 220px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(248, 240, 231, 0.97) 100%);
  border: 1px solid rgba(24, 33, 41, 0.1);
  box-shadow: 0 20px 40px rgba(21, 32, 43, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 40;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: left;
  line-height: 1.25;
  font-size: 0.88rem;
  color: var(--ink);
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.submenu a + a {
  margin-top: 4px;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a.is-active,
.submenu a[aria-current="location"] {
  background: linear-gradient(90deg, rgba(217, 115, 63, 0.12) 0%, rgba(217, 115, 63, 0.06) 100%);
  color: var(--accent-deep);
  transform: translateX(2px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.lang-switch a,
.lang-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  color: var(--muted);
  gap: 6px;
  font-weight: 700;
}

.lang-switch .active {
  background: var(--dark);
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #cf8a61 100%);
  color: white;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(143, 63, 30, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(143, 63, 30, 0.32);
}

.button-outline,
.button-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-ghost:hover,
.button-outline:hover {
  background: rgba(255, 255, 255, 0.7);
}

.button-highlight {
  background: linear-gradient(135deg, #c55b2b 0%, #dd8a5e 100%);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 34px rgba(143, 63, 30, 0.3);
}

.button-highlight:hover {
  background: linear-gradient(135deg, #b44f24 0%, #d77748 100%);
  color: #fff;
  box-shadow: 0 20px 38px rgba(143, 63, 30, 0.36);
}

.hero,
.section,
.footer {
  border-radius: var(--radius);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 42px;
  background: linear-gradient(160deg, rgba(255, 250, 242, 0.94) 0%, rgba(247, 239, 230, 0.94) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy h1,
.section-heading h2,
.signal-card h3,
.academy-aside h3,
.contact-copy h2,
.quiz-card h3 {
  font-family: "Bitter", Georgia, serif;
  line-height: 1.04;
}

.hero-copy h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--teal);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 24px;
}

.slogan-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
}

.quote-box {
  margin-top: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(21, 32, 43, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.quote-box strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.05rem;
}

.quote-box span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

.slogan-box span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 18px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto 12%;
  height: 180px;
  background: linear-gradient(135deg, rgba(31, 109, 116, 0.18), rgba(217, 115, 63, 0.08));
  filter: blur(24px);
}

.hero-panel-visual,
.section-visual-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-panel-visual {
  padding: 12px;
}

.section-visual-frame {
  margin-bottom: 22px;
  padding: 16px;
}

.section-visual-frame-dark {
  background: rgba(10, 18, 24, 0.42);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-diagram {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.hero-table-card {
  padding: 18px;
}

.table-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.table-card-head strong {
  font-size: 1.1rem;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.content-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(247, 237, 228, 0.96);
  border-bottom: 1px solid rgba(21, 32, 43, 0.08);
}

.content-table tbody td {
  padding: 16px;
  vertical-align: top;
  color: var(--muted);
  border-top: 1px solid rgba(21, 32, 43, 0.08);
}

.content-table tbody td:first-child {
  color: var(--dark);
  font-weight: 700;
  width: 20%;
}

.compact-table tbody td:first-child {
  width: 18%;
}

.start-guide-frame {
  display: grid;
  gap: 18px;
}

.start-guide-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.start-guide-head h3 {
  margin: 8px 0 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.start-guide-head p:last-child {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
}

.start-guide-topics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.start-guide-topic {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.start-guide-topic:hover {
  transform: translateY(-1px);
}

.start-guide-topic.active {
  background: var(--dark);
  color: white;
}

.start-guide-table-wrap {
  overflow-x: auto;
}

.impact-table {
  background: rgba(255, 255, 255, 0.96);
}

.impact-table thead th {
  background: rgba(239, 228, 214, 0.98);
}

.academy-menu-table tbody td:first-child {
  width: 31%;
}

.academy-menu-table tbody td:last-child {
  line-height: 1.7;
}

.academy-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.academy-plan-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 242, 234, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(21, 32, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.academy-plan-card h3 {
  margin: 10px 0 12px;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.08;
}

.academy-plan-card p {
  color: var(--muted);
}

.academy-plan-card-premium {
  background: linear-gradient(180deg, rgba(24, 33, 41, 0.96) 0%, rgba(31, 109, 116, 0.94) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(13, 21, 27, 0.22);
}

.academy-plan-card-premium h3,
.academy-plan-card-premium p,
.academy-plan-card-premium li {
  color: rgba(255, 255, 255, 0.9);
}

.academy-plan-card-premium .eyebrow {
  color: rgba(240, 200, 178, 0.92);
}

.academy-compare-table tbody td:first-child {
  width: 22%;
}

.academy-menu-split {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
}

.panel-grid article,
.service-card,
.service-detail,
.signal-card,
.case-card,
.timeline-step,
.academy-card,
.aside-panel,
.insight-card,
.quiz-card,
.contact-form,
.contact-metric {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(249, 242, 234, 0.76) 100%);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 44px rgba(21, 32, 43, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
}

.panel-grid article {
  padding: 20px;
  border-radius: 24px;
  animation: riseIn 700ms ease both;
}

.panel-grid article:nth-child(2) {
  animation-delay: 100ms;
}

.panel-grid article:nth-child(3) {
  animation-delay: 180ms;
}

.panel-grid article:nth-child(4) {
  animation-delay: 280ms;
}

.panel-grid .metric-card {
  grid-column: span 2;
}

.panel-grid span,
.case-card span,
.academy-card span,
.timeline-step span {
  color: var(--teal);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-grid strong,
.academy-card h3,
.case-card h3 {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.1rem;
}

.panel-grid p,
.case-card p,
.academy-card p,
.section-heading p,
.signal-card p,
.aside-panel p,
.insight-card p,
.contact-copy p {
  color: var(--muted);
}

.accent {
  background: linear-gradient(180deg, rgba(21, 32, 43, 0.9) 0%, rgba(31, 109, 116, 0.92) 100%);
  color: white;
}

.accent span,
.accent p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-preview {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(241, 201, 177, 0.7));
}

.home-gateway {
  position: relative;
  overflow: hidden;
}

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

.gateway-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(249, 242, 234, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(21, 32, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.gateway-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.2rem;
}

.gateway-card p {
  color: var(--muted);
  min-height: 74px;
}

.gateway-card a {
  color: var(--accent-deep);
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  margin: 18px 0 0;
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 14px 6px;
  animation: slideTicker 28s linear infinite;
}

.ticker-chip {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--dark);
  white-space: nowrap;
}

.section {
  margin-top: 22px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.78) 0%, rgba(250, 244, 237, 0.74) 100%);
  box-shadow: 0 20px 60px rgba(21, 32, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 38px;
  background: linear-gradient(160deg, rgba(255, 250, 242, 0.96) 0%, rgba(236, 228, 217, 0.92) 100%);
  box-shadow: 0 22px 62px rgba(21, 32, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.page-hero-copy h1 {
  margin: 8px 0 16px;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.04;
}

.page-hero-copy p {
  color: var(--muted);
  max-width: 58ch;
}

.page-hero-aside {
  display: grid;
  gap: 16px;
}

.page-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(249, 242, 234, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(21, 32, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.page-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

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

.stat-box {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.stat-box strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.service-tabs,
.quiz-categories,
.insight-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-tab,
.filter,
.quiz-category {
  padding: 12px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.quiz-category strong,
.quiz-topic-button strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.quiz-category span,
.quiz-topic-button span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-tab.active,
.filter.active,
.quiz-category.active {
  background: var(--dark);
  color: white;
}

.quiz-category.active span,
.quiz-topic-button.active span {
  color: rgba(255, 255, 255, 0.8);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 26px;
  margin-top: 18px;
  border-radius: 28px;
}

.service-copy h3 {
  margin: 8px 0 12px;
  font-size: 2rem;
}

.service-copy p {
  color: var(--muted);
}

.service-points,
.service-sectors,
.signal-card ul,
.aside-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-points li,
.service-sectors li,
.signal-card li,
.aside-panel li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.signal-card,
.quiz-card,
.contact-form {
  padding: 24px;
  border-radius: 24px;
}

.dark-section {
  background: linear-gradient(180deg, #172029 0%, #111923 100%);
  color: white;
}

.dark-section .section-heading p,
.dark-section .section-heading .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.case-grid,
.academy-cards,
.insight-grid,
.contact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card,
.academy-card,
.insight-card,
.contact-metric {
  padding: 22px;
  border-radius: 24px;
}

.case-card ul,
.insight-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

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

.timeline-step {
  position: relative;
  padding: 24px;
  border-radius: 24px;
}

.timeline-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-weight: 700;
}

.academy-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.academy-process-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin-bottom: 24px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(21, 32, 43, 0.94) 0%, rgba(31, 109, 116, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 52px rgba(21, 32, 43, 0.16);
}

.academy-process-banner .eyebrow,
.academy-process-banner h3,
.academy-process-banner p {
  color: #f7f2ec;
}

.academy-process-banner .eyebrow {
  opacity: 0.82;
}

.academy-process-banner h3 {
  margin: 10px 0 10px;
  font-size: 1.5rem;
}

.academy-process-banner p {
  margin: 0;
}

.academy-process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-process-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 242, 236, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.academy-journey-step {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 240, 231, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(21, 32, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.academy-journey-step h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
}

.academy-journey-step p {
  margin: 0;
  color: var(--muted);
}

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

.academy-cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.academy-card.highlight {
  background: linear-gradient(180deg, rgba(31, 109, 116, 0.9), rgba(21, 32, 43, 0.92));
  color: white;
}

.academy-card.highlight p,
.academy-card.highlight span {
  color: rgba(255, 255, 255, 0.78);
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card strong {
  font-size: 1.15rem;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.insight-card a {
  color: var(--accent-deep);
  font-weight: 700;
}

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

.knowledge-feature-section {
  align-items: stretch;
}

.feature-story-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 250, 242, 0.96) 0%, rgba(247, 239, 230, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.feature-story-card h3 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.06;
}

.feature-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-story-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 32, 43, 0.08);
}

.feature-story-body {
  color: var(--muted);
  line-height: 1.75;
}

.feature-story-card--compact h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.feature-story-card.is-placeholder {
  background: linear-gradient(160deg, rgba(250, 244, 237, 0.96) 0%, rgba(242, 231, 220, 0.96) 100%);
}

.article-detail-section[hidden] {
  display: none;
}

.article-detail-shell {
  display: grid;
  gap: 22px;
}

.article-detail-shell .feature-story-card {
  gap: 20px;
}

.article-detail-breadcrumb {
  color: var(--muted);
  font-size: 0.95rem;
}

.article-detail-body {
  display: grid;
  gap: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.article-detail-body p,
.article-detail-body ul {
  margin: 0;
}

.article-detail-list {
  padding-left: 22px;
}

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

.daily-preview {
  display: grid;
  align-content: start;
  gap: 16px;
}

.daily-insight-stream {
  display: grid;
  gap: 14px;
}

.daily-insight-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.daily-insight-item strong {
  font-size: 1.08rem;
}

.daily-insight-item p {
  color: var(--muted);
}

.daily-insight-item a {
  color: var(--accent-deep);
  font-weight: 700;
}

.monthly-focus-section {
  display: grid;
  gap: 22px;
}

.monthly-spotlight {
  display: grid;
}

.quiz-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 20px;
}

.quiz-categories {
  align-content: start;
  display: grid;
}

.quiz-selector,
.quiz-assessment {
  display: grid;
  gap: 18px;
}

.quiz-selector-copy p:last-child {
  margin-bottom: 0;
}

.quiz-topic-list {
  display: grid;
  gap: 12px;
}

.quiz-mode-list,
.quiz-level-list {
  display: grid;
  gap: 12px;
}

.quiz-selector-block {
  display: grid;
  gap: 12px;
}

.quiz-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiz-chip {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.quiz-chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.quiz-chip.active {
  background: var(--dark);
  color: white;
}

.quiz-level-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 32, 43, 0.08);
}

.quiz-level-note strong {
  display: block;
  margin-bottom: 6px;
}

.quiz-level-note span {
  color: var(--muted);
}

.quiz-topic-button {
  text-align: left;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.quiz-topic-button:hover,
.quiz-category:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.quiz-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.quiz-options {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.quiz-option {
  text-align: left;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.quiz-option:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.quiz-result {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
}

.quiz-result.success {
  background: rgba(31, 109, 116, 0.12);
  color: var(--ink);
}

.quiz-score-card {
  display: grid;
  gap: 14px;
}

.quiz-score-card strong {
  font-size: 1.3rem;
}

.quiz-score-meter {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(21, 32, 43, 0.08);
}

.quiz-score-fill {
  height: 100%;
  border-radius: 999px;
}

.quiz-score-card--basic strong {
  color: #b94a48;
}

.quiz-score-card--intermediate strong {
  color: #9c7a15;
}

.quiz-score-card--advanced strong {
  color: #2f7d49;
}

.quiz-score-fill--basic {
  background: linear-gradient(90deg, #cf5f5a 0%, #e8877f 100%);
}

.quiz-score-fill--intermediate {
  background: linear-gradient(90deg, #d6b33b 0%, #eacb63 100%);
}

.quiz-score-fill--advanced {
  background: linear-gradient(90deg, #3f9e5f 0%, #66c285 100%);
}

.quiz-actions--stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiz-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quiz-recommendation-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 32, 43, 0.08);
}

.quiz-recommendation-card strong {
  font-size: 1.05rem;
}

.quiz-recommendation-card p {
  margin: 0;
  color: var(--muted);
}

.quiz-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-cta-panel {
  align-content: start;
}

.contact-cta-panel strong {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.contact-cta-panel p {
  color: var(--muted);
}

.contact-cta-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-cta-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.contact-cta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(217, 115, 63, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-metrics {
  margin-top: 20px;
}

/* 2026 Premium palette refresh */
.site-shell {
  width: min(1420px, calc(100% - 24px));
}

.topbar {
  background: linear-gradient(180deg, rgba(15, 45, 82, 0.98) 0%, rgba(11, 34, 63, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(15, 45, 82, 0.18);
}

.topbar::before {
  background: linear-gradient(180deg, rgba(15, 45, 82, 1) 0%, rgba(15, 45, 82, 0.94) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar::after {
  background: linear-gradient(90deg, rgba(0, 184, 176, 0) 0%, rgba(0, 184, 176, 0.7) 30%, rgba(255, 138, 0, 0.68) 70%, rgba(255, 138, 0, 0) 100%);
}

.nav {
  color: rgba(255, 255, 255, 0.84);
}

.nav-link {
  color: rgba(255, 255, 255, 0.84);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 184, 176, 0.18) 0%, rgba(0, 184, 176, 0.12) 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 184, 176, 0.36), 0 10px 24px rgba(0, 184, 176, 0.12);
}

.nav-link::after {
  background: var(--teal);
}

.submenu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 45, 82, 0.1);
  box-shadow: 0 24px 44px rgba(15, 45, 82, 0.14);
}

.submenu a:hover {
  background: rgba(0, 184, 176, 0.08);
  color: var(--dark);
}

.lang-switch {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-switch .active {
  background: #ffffff;
  color: var(--dark);
}

.button {
  background: linear-gradient(135deg, #ff8a00 0%, #ff9f2f 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(255, 138, 0, 0.26);
}

.button:hover {
  box-shadow: 0 20px 38px rgba(255, 138, 0, 0.34);
}

.button-outline,
.button-ghost {
  color: var(--dark);
  border: 1px solid rgba(15, 45, 82, 0.14);
}

.topbar .button-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.topbar .button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-highlight {
  background: linear-gradient(135deg, #00b8b0 0%, #14d1c9 100%);
  box-shadow: 0 18px 34px rgba(0, 184, 176, 0.24);
}

.hero,
.page-hero {
  background: linear-gradient(135deg, rgba(15, 45, 82, 0.98) 0%, rgba(9, 30, 55, 0.96) 55%, rgba(15, 45, 82, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 68px rgba(15, 45, 82, 0.22);
}

.hero-copy h1,
.page-hero-copy h1,
.hero-copy .hero-text,
.page-hero-copy p,
.page-hero-copy .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.hero .slogan-box,
.hero .quote-box {
  color: #ffffff;
}

.hero-copy .hero-text,
.page-hero-copy p,
.hero .slogan-box,
.hero .quote-box {
  color: rgba(255, 255, 255, 0.82);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section .eyebrow {
  color: var(--teal);
}

.hero .button-ghost,
.page-hero .button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero .button-ghost:hover,
.page-hero .button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel-visual,
.section-visual-frame,
.page-card,
.signal-card,
.case-card,
.timeline-step,
.academy-card,
.aside-panel,
.insight-card,
.quiz-card,
.contact-form,
.contact-metric,
.gateway-card,
.panel-grid article,
.feature-story-card,
.feature-preview {
  background: #ffffff;
  border: 1px solid rgba(15, 45, 82, 0.08);
  box-shadow: 0 18px 42px rgba(15, 45, 82, 0.08);
  backdrop-filter: none;
}

.section {
  background: #f4f6f8;
  border: 1px solid rgba(15, 45, 82, 0.06);
  box-shadow: 0 18px 44px rgba(15, 45, 82, 0.06);
}

.section:nth-of-type(odd):not(.dark-section) {
  background: #ffffff;
}

.dark-section {
  background: linear-gradient(180deg, #0f2d52 0%, #0a2340 100%);
}

.accent,
.metric-card.accent {
  background: linear-gradient(180deg, #0f2d52 0%, #00b8b0 100%);
  color: #ffffff;
}

.hero-photo-card,
.page-hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 280px;
  background: #0f2d52;
  box-shadow: 0 24px 48px rgba(15, 45, 82, 0.22);
}

.hero-photo-card img,
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card::after,
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 45, 82, 0.74) 0%, rgba(15, 45, 82, 0.3) 52%, rgba(0, 184, 176, 0.16) 100%);
}

.hero-photo-overlay,
.page-hero-photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(15, 45, 82, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-photo-overlay .eyebrow,
.page-hero-photo-overlay .eyebrow {
  color: var(--teal);
}

.hero-photo-overlay strong,
.page-hero-photo-overlay strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.hero-photo-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.content-table thead {
  background: rgba(15, 45, 82, 0.06);
}

.content-table th {
  color: var(--dark);
}

.content-table td {
  color: var(--ink);
}

.stat-box strong,
.impact-stat strong,
.hero-points-draft strong {
  color: var(--teal);
}

.footer {
  background: #0f2d52;
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover,
.gateway-card a,
.feature-story-link,
.insight-card a {
  color: var(--teal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid rgba(15, 45, 82, 0.12);
}

.contact-metric strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 36px;
  margin: 22px 0 48px;
  background: #16212a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.narrow {
  max-width: 680px;
}

@keyframes slideTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .topbar,
  .hero,
  .page-hero,
  .service-detail,
  .split-section,
  .academy-process-banner,
  .academy-layout,
  .quiz-shell,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 28px;
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topbar-actions {
    margin-left: auto;
  }

  .case-grid,
  .gateway-grid,
  .stat-strip,
  .timeline,
  .contact-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 18px, 1280px);
    margin: 12px auto;
  }

  .hero,
  .page-hero,
  .section,
  .footer {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .panel-grid,
  .gateway-grid,
  .case-grid,
  .academy-cards,
  .academy-journey,
  .knowledge-signal-grid,
  .insight-grid,
  .quiz-recommendation-grid,
  .stat-strip,
  .timeline,
  .contact-metrics {
    grid-template-columns: 1fr;
  }

  .feature-preview {
    grid-column: span 1;
  }

  .brand-full {
    height: 48px;
  }

  .button,
  .service-tab,
  .quiz-category,
  .filter {
    width: 100%;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .submenu {
    left: 0;
    right: 0;
    top: calc(100% - 2px);
    transform: translateY(8px);
    width: auto;
  }

  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu {
    transform: translateY(0);
  }

  .lang-switch {
    justify-content: center;
  }

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


