:root {
  --cyan: #009dcc;
  --cyan-deep: #007ca4;
  --cyan-soft: #e8f6fa;
  --purple: #8b197d;
  --purple-deep: #6b155f;
  --ink: #172332;
  --muted: #5d6b7c;
  --line: #dbe4eb;
  --paper: #ffffff;
  --wash: #f4f7f9;
  --surface: #fbfcfd;
  --teal: #168a80;
  --shadow-sm: 0 5px 16px rgba(23, 35, 50, 0.06);
  --shadow: 0 14px 34px rgba(23, 35, 50, 0.10);
  --shadow-lg: 0 22px 52px rgba(23, 35, 50, 0.14);
  --radius-sm: 6px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.68;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  color: var(--paper);
  background: var(--purple);
}

body:not(.is-ready) {
  opacity: 0;
}

body.is-ready {
  opacity: 1;
  transition: opacity 0.45s ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 168, 232, 0.28);
  outline-offset: 3px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

section[id],
#main-content {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: 14px clamp(22px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: padding 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(24, 33, 47, 0.08);
}

.brand img {
  display: block;
  width: min(190px, 42vw);
  height: auto;
  transition: width 0.24s ease;
}

.site-header.is-scrolled .brand img {
  width: min(168px, 38vw);
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: clamp(10px, 1.8vw, 28px);
  width: 100%;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 700;
  color: var(--muted);
}

.nav a,
.nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 4px 2px;
  text-align: center;
  white-space: nowrap;
}

.nav a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  color: var(--cyan);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-dropdown > a {
  padding-right: 16px;
}

.nav-dropdown > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > a::before,
.nav-dropdown:focus-within > a::before {
  transform: translateY(-35%) rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 40;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(24, 33, 47, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.wide-menu {
  min-width: 280px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--paper);
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.language-toggle,
.filter,
.button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle {
  min-width: 48px;
  min-height: 40px;
  color: var(--paper);
  background: var(--ink);
  transition: transform 0.18s ease, background 0.18s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  background: var(--purple);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: min(620px, calc(100vh - 78px));
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(115deg, rgba(0, 168, 232, 0.08), transparent 36%),
    linear-gradient(295deg, rgba(138, 22, 143, 0.10), transparent 42%),
    var(--paper);
}

.hero-copy {
  max-width: 1180px;
}

.home-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  min-height: min(660px, calc(100vh - 78px));
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--cyan);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
}

.hero-service-panel {
  display: grid;
  gap: 16px;
  align-self: stretch;
  align-content: center;
}

.hero-service-panel a {
  display: grid;
  gap: 6px;
  min-height: 140px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--paper);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  animation: softFloat 5.8s ease-in-out infinite;
}

.hero-service-panel a:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-service-panel a:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-service-panel a:hover,
.hero-service-panel a:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(24, 33, 47, 0.18);
}

.hero-service-panel span {
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 900;
}

.hero-service-panel strong {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.hero-news {
  align-items: stretch;
  min-height: auto;
  padding-top: clamp(34px, 4.2vw, 58px);
  padding-bottom: clamp(36px, 4.8vw, 64px);
}

.hero-news .section-heading {
  margin-bottom: clamp(18px, 2.2vw, 28px);
}

.hero-news h2 {
  font-size: clamp(40px, 4.8vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  min-width: 0;
}

h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(34px, 5.8vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

html[lang="en"] h1 {
  max-width: 880px;
  white-space: normal;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: 0;
}

.about-title {
  max-width: none;
  font-size: clamp(36px, 4.1vw, 60px);
  white-space: nowrap;
}

h3 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--paper);
  background: var(--cyan);
  box-shadow: 0 14px 28px rgba(0, 168, 232, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.button.wide {
  width: 100%;
}

.ad-section {
  background:
    linear-gradient(115deg, rgba(0, 168, 232, 0.07), transparent 38%),
    linear-gradient(295deg, rgba(138, 22, 143, 0.09), transparent 45%),
    var(--wash);
}

.ad-carousel {
  display: grid;
  gap: 16px;
  min-height: 360px;
}

.ad-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  min-height: 0;
}

.ad-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 34%) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: 0;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: var(--shadow);
  text-decoration: none;
  animation: slideFadeIn 0.58s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.ad-card:nth-child(2) {
  animation-delay: 0.08s;
}

.ad-card:hover,
.ad-card:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(24, 33, 47, 0.2);
}

.ad-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 260px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.ad-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
}

.ad-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
}

.ad-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  order: -1;
  min-height: 160px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}

.ad-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.ad-card:hover .ad-visual img,
.ad-card:focus-visible .ad-visual img {
  transform: scale(1.05);
}

.ad-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ad-control {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: var(--cyan);
  border: 0;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.ad-dots {
  display: flex;
  gap: 8px;
}

.ad-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: var(--line);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.ad-dot.active {
  width: 28px;
  background: var(--purple);
}

.ad-track.is-changing,
.brand-grid.is-changing {
  animation: contentSwap 0.38s ease both;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 88px);
}

.tinted {
  background: var(--wash);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-summary {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: start;
}

.about-grid p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
}

.info-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  border-left: 4px solid var(--cyan);
  color: var(--ink);
  font-weight: 700;
}

.product-grid,
.service-grid,
.insight-grid,
.audience-grid,
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid article,
.service-grid article,
.insight-grid article,
.audience-grid article,
.brand-card,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-grid article:hover,
.service-grid article:hover,
.insight-grid article:hover,
.audience-grid article:hover,
.brand-card:hover,
.contact-card:hover {
  border-color: rgba(0, 168, 232, 0.45);
  box-shadow: 0 16px 34px rgba(24, 33, 47, 0.1);
  transform: translateY(-4px);
}

.audience-section {
  background: var(--paper);
}

.audience-grid article {
  min-height: 210px;
  padding: 24px;
  border-top: 4px solid var(--purple);
}

.audience-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--paper);
  background: var(--cyan);
  border-color: var(--cyan);
}

.past-news-summary {
  display: grid;
  gap: 4px;
  max-width: 360px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
}

.past-news-summary strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.past-news-summary span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.news-layout {
  display: flex;
  gap: 18px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 4px 18px;
  scroll-padding-left: 4px;
  scroll-snap-type: x proximity;
}

.news-layout::-webkit-scrollbar {
  height: 10px;
}

.news-layout::-webkit-scrollbar-track {
  background: rgba(217, 226, 235, 0.55);
  border-radius: 999px;
}

.news-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}

.news-viewport {
  overflow: hidden;
  border-top: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(24, 33, 47, 0.1);
}

.news-track {
  display: flex;
  transition: transform 0.42s ease;
}

.news-slide-card {
  display: grid;
  grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  flex: 0 0 100%;
  min-height: 330px;
  padding: clamp(20px, 2.8vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
}

.news-slide-card img {
  display: block;
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-slide-card time {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.news-slide-card h3 {
  max-width: 760px;
  margin: 10px 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.news-slide-card p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
}

.news-slide-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 17px;
  font-weight: 900;
}

.news-arrow {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 58px;
  color: var(--paper);
  background: rgba(24, 33, 47, 0.88);
  border: 0;
  border-radius: 8px;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.news-arrow:hover,
.news-arrow:focus-visible {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  transform: translateY(-2px);
}

.news-carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.news-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: var(--line);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.news-dot.active {
  width: 30px;
  background: var(--purple);
}

.news-layout::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 999px;
}

.news-feature,
.news-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-feature:hover,
.news-list article:hover {
  border-color: rgba(0, 168, 232, 0.45);
  box-shadow: 0 16px 34px rgba(24, 33, 47, 0.1);
  transform: translateY(-4px);
}

.news-feature {
  flex: 0 0 min(760px, 82vw);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.75fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  min-height: 330px;
  padding: clamp(24px, 4vw, 42px);
  border-top: 5px solid var(--cyan);
}

.news-feature-copy {
  min-width: 0;
}

.news-feature-image {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 240px;
  margin: 0;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(0, 168, 232, 0.08), rgba(138, 22, 143, 0.06)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-feature-image img {
  display: block;
  width: 100%;
  max-width: 260px;
  max-height: 300px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.news-feature:hover .news-feature-image img {
  transform: scale(1.03);
}

.news-feature time,
.news-list time,
.insight-grid time {
  display: block;
  margin: 12px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.news-feature h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.news-feature p {
  max-width: 740px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 19px;
}

.news-feature a {
  color: var(--cyan);
  font-weight: 900;
}

.news-list {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  align-items: stretch;
}

.news-list article {
  flex: 0 0 min(520px, 78vw);
  min-height: 330px;
  padding: 20px;
}

.news-list-item.has-media {
  display: grid;
  grid-template-columns: minmax(130px, 34%) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.news-feature,
.news-list article {
  scroll-snap-align: start;
}

.news-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-list h3 {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.news-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.news-list a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
}

.content-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--purple);
  background: rgba(138, 22, 143, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.product-grid article {
  min-height: 180px;
  padding: 22px;
}

.service-grid article {
  min-height: 230px;
  padding: 22px;
  border-top: 4px solid var(--cyan);
}

.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--purple);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.product-grid p,
.service-grid p,
.insight-grid p,
.brand-card p {
  margin: 0;
  color: var(--muted);
}

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

.insight-grid article {
  min-height: 280px;
  padding: 24px;
  border-top: 4px solid var(--teal);
}

.insight-grid h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.insight-grid p {
  min-height: 78px;
  font-size: 17px;
}

.brand-heading {
  align-items: start;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--muted);
  background: var(--wash);
  border: 1px solid var(--line);
}

.filter.active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.brand-card {
  min-height: 270px;
  padding: 18px;
  animation: slideFadeIn 0.5s ease both;
}

.brand-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.brand-page-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: var(--cyan);
  border: 0;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.brand-page-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: min(520px, 70vw);
}

.brand-page-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: var(--line);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.brand-page-dot.active {
  width: 28px;
  background: var(--purple);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 72px;
  margin-bottom: 16px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 10px 22px rgba(0, 168, 232, 0.14);
  transform: translateY(-1px);
}

.brand-logo.with-label {
  justify-content: flex-start;
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.brand-logo.with-label img {
  max-width: 42%;
}

.brand-logo-label {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.brand-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.brand-tags span {
  padding: 4px 8px;
  color: var(--purple);
  background: rgba(138, 22, 143, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.contact-section .eyebrow {
  color: #7de4da;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-intro h2 {
  max-width: 820px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
}

.contact-intro p {
  max-width: 920px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.68;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding-left: 18px;
  color: var(--paper);
  border-left: 4px solid var(--cyan);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 900;
}

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

.contact-card a:not(.button),
.contact-card span {
  color: var(--ink);
  font-weight: 800;
}

.about-page-hero {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(115deg, rgba(0, 168, 232, 0.08), transparent 36%),
    linear-gradient(295deg, rgba(138, 22, 143, 0.10), transparent 42%),
    var(--paper);
}

.about-page-hero h1 {
  max-width: none;
  font-size: clamp(42px, 5.6vw, 86px);
  white-space: nowrap;
}

html[lang="en"] .about-page-hero h1 {
  font-size: clamp(34px, 4.2vw, 62px);
}

.about-page-hero p {
  max-width: 980px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.about-page-grid article h2 {
  max-width: none;
  font-size: clamp(34px, 4vw, 56px);
}

.about-page-grid article p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.85;
}

.about-page-info {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--wash);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  font-size: 19px;
  font-weight: 800;
}

.about-page-info strong {
  font-size: 26px;
}

.contact-page-hero {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(115deg, rgba(0, 168, 232, 0.08), transparent 36%),
    linear-gradient(295deg, rgba(138, 22, 143, 0.10), transparent 42%),
    var(--paper);
}

.contact-page-hero h1 {
  font-size: clamp(48px, 7vw, 90px);
}

.contact-page-hero p {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 26px);
}

.product-news-hero {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(115deg, rgba(0, 168, 232, 0.08), transparent 36%),
    linear-gradient(295deg, rgba(138, 22, 143, 0.10), transparent 42%),
    var(--paper);
}

.product-news-hero h1 {
  font-size: clamp(48px, 7vw, 90px);
}

.product-news-hero p:not(.eyebrow) {
  max-width: 920px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.8vw, 26px);
}

.product-news-section {
  background: var(--wash);
}

.product-news-list {
  display: grid;
  gap: 22px;
}

.product-news-card {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 47, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-news-card:hover {
  border-color: rgba(0, 168, 232, 0.45);
  box-shadow: 0 20px 46px rgba(24, 33, 47, 0.12);
  transform: translateY(-4px);
}

.product-news-card img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-news-card time {
  display: block;
  margin: 12px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.product-news-card h2 {
  max-width: none;
  margin: 14px 0 12px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.product-news-card p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-news-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.contact-info-panel,
.inquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  padding: clamp(22px, 3vw, 34px);
}

.contact-info-panel h2,
.inquiry-form h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-info-panel dl {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
}

.contact-info-panel div {
  display: grid;
  gap: 4px;
}

.contact-info-panel dt {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.contact-info-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.map-frame {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

.contact-guidance-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-guidance-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.8;
}

.contact-guidance-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.inquiry-form .field-label {
  color: var(--ink);
  font-size: 18px;
}

.inquiry-form label span {
  color: var(--muted);
  font-size: 14px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
}

.inquiry-form input:focus-visible,
.inquiry-form textarea:focus-visible {
  border-color: var(--cyan);
  outline: 3px solid rgba(0, 168, 232, 0.18);
  outline-offset: 0;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  padding: 12px 14px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px !important;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--cyan);
}

.consent-field span {
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.form-status.is-success {
  color: #08775b;
}

.form-status.is-error {
  color: #a52a2a;
}

.compact-actions {
  margin-top: 24px;
}

.member-status-panel {
  display: grid;
  gap: 9px;
  padding: 14px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple);
  border-radius: 8px;
}

.member-status-panel strong {
  color: var(--ink);
  font-size: 18px;
}

.member-status-panel span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 22px clamp(18px, 6vw, 88px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(0, 168, 232, 0.08), transparent 42%),
    linear-gradient(300deg, rgba(138, 22, 143, 0.08), transparent 46%),
    var(--wash);
}

.error-shell {
  width: min(100%, 720px);
  padding: clamp(28px, 6vw, 64px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.error-brand {
  display: inline-flex;
  margin-bottom: clamp(36px, 7vw, 64px);
}

.error-brand img {
  width: min(210px, 60vw);
  height: auto;
}

.error-shell h1 {
  white-space: normal;
}

.error-shell > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes contentSwap {
  from {
    opacity: 0.45;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Public-site visual system refinement. */
.site-header {
  border-bottom-color: rgba(23, 35, 50, 0.09);
  box-shadow: 0 1px 0 rgba(23, 35, 50, 0.03);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(23, 35, 50, 0.09);
}

.nav {
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  color: var(--cyan-deep);
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(23, 35, 50, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.dropdown-menu a {
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--cyan-deep);
}

.nav-toggle,
.language-toggle {
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--cyan-deep);
  border-color: rgba(0, 124, 164, 0.38);
  box-shadow: var(--shadow-sm);
}

.language-toggle {
  background: var(--ink);
}

.language-toggle:hover,
.language-toggle:focus-visible {
  background: var(--cyan-deep);
  box-shadow: var(--shadow-sm);
}

.hero,
.about-page-hero,
.contact-page-hero,
.product-news-hero {
  background: var(--wash);
  border-bottom: 1px solid var(--line);
}

.hero-news {
  background: #f7fafb;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
}

h1 {
  line-height: 1.08;
}

h2 {
  line-height: 1.18;
}

.eyebrow {
  color: var(--purple-deep);
  font-weight: 750;
}

.hero-text,
.section-summary,
.about-grid p,
.about-page-grid article p,
.contact-page-hero p,
.product-news-hero p:not(.eyebrow) {
  color: var(--muted);
}

.section {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

.section-heading {
  margin-bottom: clamp(26px, 3vw, 38px);
}

.button {
  min-height: 46px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button.primary {
  background: var(--cyan-deep);
  box-shadow: 0 10px 24px rgba(0, 124, 164, 0.20);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #006c90;
  box-shadow: 0 14px 30px rgba(0, 108, 144, 0.24);
}

.button.secondary {
  background: var(--paper);
  border-color: rgba(23, 35, 50, 0.14);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--cyan-deep);
  border-color: rgba(0, 124, 164, 0.38);
  box-shadow: var(--shadow);
}

.hero-service-panel a,
.ad-card {
  background: #17384a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-service-panel a:nth-child(even),
.ad-card:nth-child(even) {
  background: #422b45;
  border-top-color: #b64aa5;
}

.ad-card::after {
  display: none;
}

.ad-visual {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
}

.ad-control,
.brand-page-button {
  background: var(--cyan-deep);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ad-control:hover,
.ad-control:focus-visible,
.brand-page-button:hover,
.brand-page-button:focus-visible {
  background: var(--purple-deep);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-grid article,
.service-grid article,
.insight-grid article,
.audience-grid article,
.brand-card,
.contact-card,
.news-feature,
.news-list article,
.product-news-card,
.contact-info-panel,
.inquiry-form,
.about-page-info,
.error-shell {
  border-color: rgba(23, 35, 50, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.product-grid article:hover,
.service-grid article:hover,
.insight-grid article:hover,
.audience-grid article:hover,
.brand-card:hover,
.contact-card:hover,
.news-feature:hover,
.news-list article:hover,
.product-news-card:hover {
  border-color: rgba(0, 124, 164, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.news-viewport {
  border-top-color: var(--cyan-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.news-slide-card {
  border-color: rgba(23, 35, 50, 0.10);
}

.news-slide-card img,
.news-thumb,
.news-feature-image,
.product-news-card img,
.brand-logo,
.map-frame {
  border-color: rgba(23, 35, 50, 0.10);
  border-radius: var(--radius);
}

.news-arrow {
  background: rgba(23, 35, 50, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.news-arrow:hover,
.news-arrow:focus-visible {
  background: var(--cyan-deep);
}

.section-link {
  color: var(--cyan-deep);
  background: var(--paper);
  border-color: rgba(23, 35, 50, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.section-link:hover,
.section-link:focus-visible {
  background: var(--cyan-deep);
  border-color: var(--cyan-deep);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.content-tag,
.brand-tags span {
  color: var(--purple-deep);
  background: rgba(139, 25, 125, 0.08);
  font-weight: 750;
}

.filter {
  color: var(--muted);
  background: var(--surface);
  border-color: rgba(23, 35, 50, 0.12);
  border-radius: var(--radius);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter:hover,
.filter:focus-visible {
  color: var(--cyan-deep);
  border-color: rgba(0, 124, 164, 0.34);
  box-shadow: var(--shadow-sm);
}

.filter.active {
  background: var(--ink);
  border-color: var(--ink);
}

.contact-section {
  background: #172737;
  border-top: 4px solid var(--cyan-deep);
}

.contact-section .eyebrow {
  color: #85d8d0;
}

.contact-details {
  border-left-color: var(--cyan);
}

.site-footer {
  background: var(--surface);
  border-top-color: rgba(23, 35, 50, 0.10);
}

@media (hover: hover) {
  .button:hover,
  .ad-card:hover,
  .brand-logo:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .hero,
  .about-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .ad-carousel {
    min-height: auto;
  }

  .ad-track {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .service-grid,
  .insight-grid,
  .audience-grid,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-layout {
    display: flex;
  }

  .news-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .news-arrow {
    width: 44px;
    height: 60px;
    font-size: 36px;
  }

  .news-feature {
    grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.85fr);
  }

  .news-slide-card {
    grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
  }

  .news-list-item.has-media {
    grid-template-columns: minmax(120px, 34%) minmax(0, 1fr);
  }

  .about-page-grid {
    grid-template-columns: 1fr;
  }

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

  .product-news-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 16px;
    padding-bottom: 4px;
  }

  .dropdown-menu {
    left: 0;
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: translate(0, 0);
  }

  h1,
  .about-page-hero h1,
  .about-title {
    white-space: normal;
  }

  html[lang="en"] .about-page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .section-heading,
  .brand-heading {
    display: block;
  }

  .about-title {
    white-space: normal;
  }

  .about-page-hero h1 {
    white-space: normal;
  }

  .filters {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .nav-dropdown {
    display: grid;
    justify-items: start;
  }

  .dropdown-menu,
  .wide-menu {
    position: static;
    min-width: min(100%, 280px);
    margin-top: 4px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .product-grid,
  .service-grid,
  .insight-grid,
  .audience-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .ad-carousel {
    min-height: auto;
  }

  .ad-card {
    grid-template-columns: 1fr;
  }

  .news-list-item.has-media {
    grid-template-columns: 1fr;
  }

  .news-feature {
    grid-template-columns: 1fr;
    flex-basis: 88vw;
  }

  .news-carousel {
    grid-template-columns: 1fr;
  }

  .news-arrow {
    position: absolute;
    z-index: 3;
    top: 42%;
  }

  .news-arrow[data-news-prev] {
    left: 8px;
  }

  .news-arrow[data-news-next] {
    right: 8px;
  }

  .news-slide-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 18px 34px;
  }

  .news-slide-card img {
    max-height: 220px;
  }

  .news-list article {
    flex-basis: 82vw;
  }

  .news-thumb {
    max-height: 180px;
  }

  .ad-visual {
    min-height: 84px;
  }
}

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

  .brand img,
  .site-header.is-scrolled .brand img {
    width: min(170px, 48vw);
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    width: 100%;
    max-height: calc(100vh - 88px);
    padding: 14px 0 6px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    font-size: 17px;
  }

  .nav-ready .nav:not(.is-open) {
    display: none;
  }

  .nav a,
  .nav-dropdown > a {
    min-height: 44px;
    padding: 10px 4px;
  }

  .nav-dropdown {
    display: grid;
    align-content: start;
  }

  .dropdown-menu,
  .wide-menu {
    position: static;
    min-width: 0;
    max-width: none;
    margin: 0 0 8px;
    padding: 4px 0 4px 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 15px;
  }

  .hero-news,
  .about-page-hero,
  .contact-page-hero,
  .product-news-hero {
    padding-top: clamp(38px, 8vw, 64px);
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
  }

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

  .language-toggle,
  .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .hero-news h2,
  .about-page-hero h1,
  .contact-page-hero h1,
  .product-news-hero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero-news {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .hero-news .section-heading {
    margin-bottom: 12px;
  }

  .hero-news h2 {
    font-size: 42px;
  }

  .section-heading .section-link {
    margin-top: 18px;
  }

  .news-slide-card h3 {
    margin: 6px 0;
    font-size: 27px;
    line-height: 1.06;
  }

  .news-slide-card {
    gap: 12px;
    padding: 16px 14px 20px;
  }

  .news-slide-card img {
    max-height: 150px;
  }

  .news-slide-card time {
    margin: 4px 0;
    font-size: 14px;
  }

  .news-slide-card p {
    font-size: 15px;
    line-height: 1.35;
  }

  .news-slide-card a {
    margin-top: 8px;
    font-size: 16px;
  }

  .product-news-card h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .site-footer {
    display: grid;
    justify-content: stretch;
  }

  .contact-guidance-actions {
    grid-template-columns: 1fr;
  }
}
