@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Spectral:wght@400;500;600;700&display=swap');

:root {
  --ink-900: #0b1220;
  --ink-700: #243043;
  --ink-500: #5b6678;
  --surface-100: #ffffff;
  --surface-200: #f7f8fb;
  --surface-300: #eef2f7;
  --accent-500: #149bb0;
  --accent-600: #0f6c7a;
  --accent-700: #0b4c58;
  --accent-200: #d6f3f6;
  --shadow-1: 0 10px 30px rgba(12, 18, 28, 0.08);
  --shadow-2: 0 24px 60px rgba(12, 18, 28, 0.16);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: var(--ink-700);
  background: radial-gradient(circle at top, #ffffff 0%, #f4f7fb 35%, #e7edf5 100%);
  font-family: "Manrope", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.planc-modern {
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Spectral", "Georgia", serif;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 3.2vw, 3.1rem); }
h2 { font-size: clamp(1.7rem, 2.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 1.9vw, 2rem); }

p {
  margin: 0 0 1.1em;
  color: var(--ink-700);
}

a {
  color: var(--accent-600);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--accent-700);
}

.container {
  max-width: var(--max-width);
}

.row {
  background: transparent;
}

.top {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.top .row {
  padding: 12px 0;
}

.top .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo img,
.logo svg {
  max-height: 44px;
  width: auto;
}

.nav {
  background: transparent;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  flex: 1;
  z-index: 1000;
}

.site-switcher {
  margin-left: auto;
}

.site-switcher-nav {
  justify-content: flex-end;
}

.site-switcher-nav ul {
  flex: 0;
  gap: 0;
}

.site-switcher-nav .site-switcher-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--ink-900);
  background: #ffffff;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-switcher-nav .site-switcher-toggle:hover,
.site-switcher-nav .site-switcher-toggle:focus {
  border-color: rgba(20, 155, 176, 0.5);
  color: var(--accent-700);
  box-shadow: 0 6px 18px rgba(14, 30, 37, 0.12);
}

.site-switcher-nav .site-switcher-menu {
  right: 0;
  left: auto;
}

.site-switcher-nav .site-switcher-menu {
  display: none;
}

.site-switcher-nav .site-switcher-item.open > .site-switcher-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-toggle {
  display: none;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
}

.nav-toggle-input {
  display: none;
}

.nav ul li {
  position: relative;
  display: inline-block;
}

.nav ul li a {
  display: block;
  padding: 6px 2px;
  border-radius: 0;
  color: var(--ink-900);
  font-weight: 600;
  font-family: "Manrope", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav ul li a:hover,
.nav ul li a:focus {
  background: transparent;
  color: var(--accent-700);
  border-bottom-color: var(--accent-600);
}

.nav ul ul {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  padding: 12px;
  min-width: 210px;
  background: var(--surface-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(148, 163, 184, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.5s;
  pointer-events: none;
}

.nav ul ul li {
  display: block;
}

.nav ul ul a {
  border-radius: 6px;
  font-family: "Manrope", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.95rem;
  padding: 8px 10px;
  color: var(--ink-700);
}

.nav ul li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s;
}

/* Robust nav dropdown (click-to-open) */
.nav ul li.has-children > a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.75rem;
  color: var(--ink-500);
}

.nav ul li > ul {
  display: none !important;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.nav ul li.open > ul {
  display: block !important;
}

.nav ul ul a:hover,
.nav ul ul a:focus {
  background: rgba(14, 165, 163, 0.12);
  color: var(--ink-900);
}
.nav ul li:focus-within > ul {
  display: block !important;
}

@media (max-width: 992px) {
  .nav ul li > ul {
    position: static;
    box-shadow: none;
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin-top: 8px;
    padding: 8px;
    width: 100%;
  }
}

.search {
  display: flex;
  justify-content: flex-end;
}

.search input[type=search],
.search input[type=text] {
  width: 100%;
  max-width: 260px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: var(--surface-100);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search input[type=search]:focus,
.search input[type=text]:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 163, 0.15);
}

.mid {
  padding: 2px 0 6px;
}

.content-container {
  margin-top: 2px;
}

.board,
.slideshow {
  padding: 2px 0 6px;
}

.board,
.slideshow {
  padding: 2px 0 6px;
  margin: 0;
}

.slideshow .row,
.slideshow .col-lg-12,
.slideshow .moduletable,
.slideshow .module {
  padding: 0;
  margin: 0;
}

.board .content-container,
.slideshow .content-container {
  margin-top: 0;
}

.board .container,
.slideshow .container {
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.08), rgba(14, 116, 144, 0.14));
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-2);
  max-width: var(--max-width);
  margin: 0 auto;
}

.slideshow .carousel-inner {
  overflow: hidden;
}

.slideshow .carousel-item {
  display: none;
  width: 100%;
  margin: 0;
}

.slideshow .carousel-item.active,
.slideshow .carousel-item-next,
.slideshow .carousel-item-prev {
  display: block;
}


.slideshow .moduletable,
.slideshow .module {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slideshow img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
}

@media (max-width: 768px) {
  .slideshow,
  .board {
    padding: 0 !important;
  }

  .slideshow .container {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .slideshow .carousel,
  .slideshow .carousel-inner {
    border-radius: 0 !important;
  }

  .slideshow .carousel-item {
    display: none;
    width: 100%;
  }

  .slideshow .carousel-item.active {
    display: block;
  }

  .slideshow img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
  }

  .slideshow .carousel-caption {
    padding: 0 12px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  }
}

.slideshow .moduletable p,
.slideshow .module p {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.slideshow .carousel-caption h4,
.slideshow .carousel-caption h5,
.slideshow .carousel-caption p {
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(4, 33, 51, 0.55);
}

.slideshow .carousel-caption {
  background: transparent;
}

.tosl,
.tosl1 {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 2px 8px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border-radius: 26px;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.95), rgba(236, 242, 249, 0.9));
  box-shadow: 0 24px 60px rgba(12, 18, 28, 0.12);
}

.product-hero__eyebrow {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--ink-700);
  font-weight: 600;
}

.product-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 12px 0 14px;
  color: var(--ink-900);
}

.product-hero__lead {
  font-size: 1.15rem;
  color: var(--ink-700);
  max-width: 40rem;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.product-highlight {
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 6px 0;
  box-shadow: none;
}

.product-highlight strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.product-highlight span {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.product-hero__image {
  display: flex;
  justify-content: center;
}

.product-hero__image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(14, 30, 37, 0.2);
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .product-hero__image {
    order: -1;
  }
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(14, 30, 37, 0.18);
  color: var(--ink-900);
}

.btn-ghost:hover {
  background: rgba(14, 30, 37, 0.06);
  color: var(--ink-900);
}

.content,
.sidebar {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 2px;
}

.sidebar {
  position: sticky;
  top: 110px;
}

.breadcrumbs_block {
  margin-top: 20px;
  background: var(--surface-100);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-1);
  font-weight: 600;
}

.breadcrumbs_block a {
  color: var(--accent-600);
}

.bottom {
  background: #0b1220;
  color: #cbd5f5;
  padding: 44px 0 24px;
}

.bottom .row_black {
  background: transparent;
}

.footer_block {
  background: transparent;
  color: inherit;
  padding: 10px 0;
}

.footer_block a {
  color: #e2e8f0;
}

.footer_block a:hover {
  color: #7dd3fc;
}

.copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

.moduletable,
.module {
  margin-bottom: 18px;
}

.moduletable h3,
.module h3 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 12px;
}

.content .article-info dd {
  display: inline-block;
  margin-right: 12px;
  color: var(--ink-500);
}

.content .page-header h1,
.content .item-page h1 {
  margin-top: 0;
}

ul.pagination {
  display: inline-flex;
  gap: 6px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

ul.pagination li a {
  color: var(--ink-700);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: background-color 0.2s ease, color 0.2s ease;
}

ul.pagination li a.active {
  background-color: var(--accent-500);
  color: #fff;
  border-color: var(--accent-500);
}

ul.pagination li a:hover:not(.active) {
  background-color: rgba(148, 163, 184, 0.2);
}

.btn,
button,
input[type=submit],
input[type=button] {
  border-radius: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(11, 76, 88, 0.12);
  background: var(--accent-600);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn,
.btn:visited,
a.btn,
.btn a,
.btn span,
button,
input[type=submit],
input[type=button] {
  color: #fff;
}

.btn:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
  background: var(--accent-700);
}

input,
textarea,
select {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px;
}

.table_col1,
.table_s1,
.table_s2,
.table_topic,
.table_services {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.table_col1 th,
.table_s1 th,
.table_s2 th,
.table_topic th {
  background: #e0f2f1;
  color: var(--ink-900);
  padding: 12px;
}

.table_col1 td,
.table_s1 td,
.table_s2 td,
.table_topic td {
  background: #ffffff;
  padding: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.table_s2 tr:nth-of-type(2n-1) td,
.table_topic tr:nth-of-type(2n-1) td {
  background: #f0f9ff;
}

.references {
  font-family: "Spectral", "Georgia", serif;
  line-height: 1.6;
  margin: 20px;
  font-style: italic;
}

.references li {
  margin-bottom: 12px;
}

.container_area {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.container_area .item {
  margin: 0;
}

.area-item {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 30, 37, 0.08);
  box-shadow: 0 10px 28px rgba(14, 30, 37, 0.08);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #e9f6f7;
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(20, 155, 176, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.area-text {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1.05rem;
}

.area-text a {
  color: inherit;
}

.area-text-normal {
  color: var(--ink-500);
  font-size: 0.98rem;
}

.area-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(14, 30, 37, 0.16);
  border-color: rgba(20, 155, 176, 0.35);
}

.founders-leaders {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.founder-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(14, 30, 37, 0.08);
  box-shadow: 0 12px 28px rgba(14, 30, 37, 0.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.founder-card img {
  width: 170px !important;
  height: 226px !important;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9eef5, #f6f8fb);
  border: 1px solid rgba(14, 30, 37, 0.08);
  box-shadow: 0 10px 20px rgba(14, 30, 37, 0.12);
}

.founder-meta strong {
  display: block;
  color: var(--ink-900);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.founder-meta span {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.contact-form-card {
  margin-top: 24px;
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-700);
}

.contact-form label .label-text,
.contact-form label .required {
  display: inline;
}

.contact-form label .label-text {
  margin-right: 6px;
}

.contact-form label .required {
  margin-left: 0;
}
.form-note {
  margin-top: 4px;
  margin-bottom: 12px;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.contact-message {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  padding: 28px;
}

.contact-message__header h2 {
  margin: 0 0 6px;
}

.contact-message__sub {
  margin: 0 0 18px;
  color: var(--ink-500);
}

.contact-message__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-weight: 600;
  color: var(--ink-700);
}

.field__req {
  color: #ef4444;
  margin-left: 4px;
}

.contact-message__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-message__note {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.contact-message input,
.contact-message textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 12px 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-alert {
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.form-alert.is-success {
  background: #ecfdf3;
  border-color: #86efac;
  color: #166534;
}

.form-alert.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px;
  font-weight: 500;
}

.contact-form button {
  align-self: flex-start;
}

.required {
  color: #ef4444;
  margin-left: 4px;
}

.hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-200);
  color: var(--accent-700);
  font-size: 12px;
  margin-left: 6px;
  cursor: help;
}

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.site-switcher {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.site-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--ink-700);
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-weight: 600;
  cursor: pointer;
}

.site-switcher__menu {
  display: block;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  background: var(--surface-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(148, 163, 184, 0.2);
  min-width: 200px;
  padding: 8px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.8s;
  pointer-events: none;
}

.site-switcher__menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--ink-700);
}

.site-switcher__menu a:hover {
  background: rgba(14, 165, 163, 0.12);
  color: var(--accent-700);
}

.site-switcher.is-open .site-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s;
}

.site-switcher:hover .site-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s;
}
.fade-in {
  animation: fade-in-up 0.8s ease both;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .top {
    position: relative;
  }

  .top .row {
    align-items: center;
  }
  .sidebar {
    position: static;
    margin-top: 24px;
  }

  .nav ul {
    gap: 8px 10px;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: static;
    background: var(--surface-100);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-1);
    margin-top: 10px;
  }

  #nav-toggle:checked ~ .row .nav ul {
    display: flex;
  }

  .nav ul li {
    width: 100%;
  }

  .site-switcher {
    margin-left: 0;
    width: 100%;
    display: none;
  }

  #nav-toggle:checked ~ .row .nav .site-switcher {
    display: block;
  }

  .site-switcher__menu {
    position: static;
    margin-top: 8px;
    box-shadow: none;
    border: 1px solid rgba(148, 163, 184, 0.2);
    width: 100%;
  }

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

@media (max-width: 768px) {
  .search {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav ul ul {
    position: relative;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .container_area {
    grid-template-columns: 1fr;
  }
}
.article-info .hits,
.article-info .article-hits,
.article-info .hit-count,
.hits,
.hit-count {
  display: none !important;
}

.section-block {
  padding: 28px 0;
}

.section-muted {
  background: #f6f8fb;
  border-radius: 26px;
  padding: 32px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.featured-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  color: inherit;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.featured-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #f1f5f9;
}

.featured-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.featured-card span {
  color: var(--ink-500);
}

.featured-card .card-cta {
  color: var(--accent-700);
  font-weight: 600;
}

.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(14, 30, 37, 0.16);
}

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

.solution-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  text-align: left;
}

.solution-card h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.solution-card p {
  color: var(--ink-500);
  margin: 0;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e9f6f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.solution-icon img {
  width: 26px;
  height: 26px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.support-card {
  background: transparent;
  border-radius: 0;
  padding: 6px 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  box-shadow: none;
}

.support-card img {
  width: 36px;
  height: 36px;
}

@media (max-width: 900px) {
  .section-muted {
    padding: 24px 16px;
  }
  .featured-card img {
    height: 160px;
  }
}
