/* ========== Design System: 林涧蜗牛 Enterprise ========== */
:root {
  --ink: #0e1a24;
  --ink-soft: #1a2d3d;
  --forest: #1f4d3a;
  --forest-mid: #2a6b50;
  --moss: #3d7a5c;
  --primary: #1f4d3a;
  --primary-dark: #163828;
  --primary-light: #2a6b50;
  --primary-bg: rgba(31, 77, 58, 0.06);
  --secondary: #1a2d3d;
  --text-primary: #0e1a24;
  --text-secondary: #4a5c6a;
  --text-muted: #7a8a98;
  --bg-white: #ffffff;
  --bg-paper: #f7f8fa;
  --bg-light: #f0f2f5;
  --bg-stone: #e8ebef;
  --bg-gray: #eef0f3;
  --border: #d5dae2;
  --border-light: #e8ebef;
  --on-dark: #f5f7f9;
  --on-dark-muted: rgba(245, 247, 249, 0.68);
  --shadow-sm: 0 1px 2px rgba(14, 26, 36, 0.04);
  --shadow: 0 2px 8px rgba(14, 26, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 26, 36, 0.08);
  --shadow-lg: 0 16px 40px rgba(14, 26, 36, 0.1);
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --font-sans: "Plus Jakarta Sans", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --max-width: 1200px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 220ms;
  --gold: #b8a070;
  --gold-soft: rgba(184, 160, 112, 0.15);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.75;
  font-weight: 400;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-label::before {
  display: none;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* ========== Layout ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 112px 0;
  position: relative;
}

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

.section-ink {
  background: var(--ink);
  color: var(--on-dark);
}

.section-ink .section-title,
.section-ink .section-label {
  color: var(--on-dark);
}

.section-ink .section-subtitle {
  color: var(--on-dark-muted);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  border: 1px solid var(--forest);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-on-dark {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}

.btn-on-dark:hover {
  background: var(--bg-paper);
}

.btn-accent {
  background: var(--forest);
  color: #fff;
  border: 1px solid var(--forest);
}

.btn-accent:hover {
  background: var(--primary-dark);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 15px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ========== Header / Navigation ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  background: rgba(247, 248, 250, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background var(--duration) ease, border-color var(--duration) ease, color var(--duration) ease;
}

.header.on-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header.on-hero .logo-text,
.header.on-hero .nav-link,
.header.on-hero .mobile-toggle {
  color: rgba(255, 255, 255, 0.88);
}

.header.on-hero .logo-mark {
  color: #fff;
}

.header.on-hero .nav-link:hover,
.header.on-hero .nav-link.active {
  color: #fff;
}

.header.on-hero .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.header.on-hero .btn-primary:hover {
  background: var(--bg-paper);
}

.header.scrolled,
.header.scrolled.on-hero {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border-light);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.header.scrolled.on-hero .logo-text,
.header.scrolled.on-hero .nav-link,
.header.scrolled.on-hero .mobile-toggle {
  color: var(--text-secondary);
}

.header.scrolled.on-hero .logo-mark {
  color: var(--forest);
}

.header.scrolled.on-hero .nav-link:hover,
.header.scrolled.on-hero .nav-link.active {
  color: var(--forest);
}

.header.scrolled.on-hero .btn-primary {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  color: var(--forest);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.header.on-hero:not(.scrolled) .logo-mark img {
  filter: none;
}

.footer-brand .logo-mark img {
  filter: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-text span {
  color: inherit;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--duration) ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: transparent;
}

.nav-link.active {
  color: var(--forest);
}

.nav-link .arrow {
  font-size: 9px;
  opacity: 0.55;
  transition: transform var(--duration) ease;
}

.nav-item:hover .nav-link .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) ease, transform var(--duration) ease, visibility var(--duration);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--duration) ease;
}

.dropdown-item:hover {
  background: var(--bg-paper);
  color: var(--ink);
}

.dropdown-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-weight: 600;
}

.dropdown-item span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.mobile-toggle:hover {
  background: var(--bg-gray);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 99;
  padding: 24px 28px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-submenu {
  display: none;
  padding: 0 0 16px 12px;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 24px;
}

/* ========== Hero — Full-bleed enterprise ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroReveal 1.4s var(--ease-out) forwards;
}

@keyframes heroReveal {
  from {
    transform: scale(1.08);
    opacity: 0.7;
  }

  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 26, 36, 0.92) 0%, rgba(14, 26, 36, 0.72) 45%, rgba(14, 26, 36, 0.55) 100%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(31, 77, 58, 0.18) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 28px 80px;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}

.hero-content {
  max-width: 560px;
  margin: 0;
  animation: heroCopy 0.9s var(--ease-out) 0.15s both;
}

@keyframes heroCopy {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(184, 160, 112, 0.6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #fff;
}

.hero-accent {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

.hero-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(184, 160, 112, 0.45), transparent);
  z-index: -1;
}

.hero h1 .highlight {
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
}

.hero-lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 520px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-metric span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.hero-metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Hero dashboard panel */
.hero-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(20px);
  animation: heroCopy 0.9s var(--ease-out) 0.35s both;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-panel-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.hero-panel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-stat {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.panel-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.panel-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.panel-stat-change {
  font-size: 12px;
  color: #4ade80;
  font-weight: 500;
}

.hero-panel-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  height: var(--h);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px 2px 0 0;
  transition: height 0.6s var(--ease-out);
}

.chart-bar.active {
  background: linear-gradient(to top, var(--forest), var(--moss));
}

.panel-pipeline {
  display: flex;
  align-items: center;
  gap: 0;
}

.pipeline-step {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pipeline-step.done {
  color: rgba(255, 255, 255, 0.65);
}

.pipeline-step.active {
  color: var(--gold);
  font-weight: 600;
}

.pipeline-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 8px;
  min-width: 12px;
}

.hero-visual,
.hero-badge,
.hero-stats,
.hero-float-card,
.hero-image-wrapper {
  display: none;
}

/* ========== Partner bar — marquee ========== */
.partner-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  overflow: hidden;
}

.partner-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.partner-bar-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 8px;
}

.partner-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.partner-marquee-track {
  display: flex;
  width: max-content;
  animation: partnerMarquee 28s linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
  animation-play-state: paused;
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-marquee-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex-shrink: 0;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 28px;
}

.partner-logo-item img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 1;
  transition: opacity var(--duration) ease, transform var(--duration) ease;
}

.partner-logo-item:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.partner-logo-item--combo {
  gap: 6px;
}

.partner-logo-item--combo span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity var(--duration) ease;
}

.partner-logo-item--meta span {
  color: #0081FB;
}

.partner-logo-item--tiktok span {
  color: #FE2C55;
}

.partner-logo-item--combo:hover span {
  opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .partner-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 24px 40px;
  }

  .partner-marquee-group {
    padding-right: 0;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

/* ========== Manifesto ========== */
.manifesto {
  padding: 96px 0;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--border-light);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.manifesto-aside .section-label {
  text-align: left;
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.manifesto-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.manifesto-body p strong {
  color: var(--ink);
  font-weight: 600;
}

.manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-top: 8px;
  transition: gap var(--duration) ease;
}

.manifesto-link:hover {
  gap: 12px;
}

/* ========== Trust / Stats strip ========== */
.trust-strip {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}

/* ========== Pain Points ========== */
.pain-section {
  background: var(--bg-paper);
}

.pain-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.pain-header-main .section-label {
  text-align: left;
  margin-bottom: 16px;
}

.pain-title {
  text-align: left;
  margin-bottom: 0;
  max-width: 480px;
}

.pain-header-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 420px;
  margin: 0;
  padding-bottom: 4px;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.pain-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--duration) ease,
    box-shadow var(--duration) ease,
    transform var(--duration) ease;
}

.pain-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pain-card-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.pain-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 18px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
}

.pain-card-icon svg {
  width: 20px;
  height: 20px;
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.pain-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

/* Solution bridge */
.solution-bridge {
  margin-top: 8px;
}

.solution-bridge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 44px;
  background: var(--ink);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.solution-bridge-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(31, 77, 58, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 30% 80% at 0% 100%, rgba(184, 160, 112, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.solution-bridge-text {
  position: relative;
  flex: 1;
  min-width: 0;
}

.solution-bridge-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.solution-bridge-text h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.solution-bridge-text p {
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.65;
  max-width: 480px;
}

.solution-bridge-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}

.solution-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 340px;
}

.solution-pills span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Legacy pain grid (other pages) */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.pain-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  transition: background var(--duration) ease;
}

.pain-item:last-child {
  border-right: none;
}

.pain-item:hover {
  background: var(--bg-white);
  border-color: var(--border);
  box-shadow: none;
  transform: none;
}

.pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  width: 100%;
  justify-content: flex-start;
}

.pain-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 0;
}

.pain-item p strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}

.solution-banner {
  text-align: left;
  padding: 40px 0 0;
  background: none;
  border-radius: 0;
  color: var(--ink);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.solution-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
  margin-bottom: 0;
  font-weight: 600;
}

.solution-banner p {
  font-size: 14px;
  opacity: 1;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ========== Ecosystem flow ========== */
.ecosystem {
  padding: 112px 0;
}

.ecosystem-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.eco-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.eco-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.eco-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 10px;
}

.eco-step p {
  font-size: 13px;
  color: var(--on-dark-muted);
  line-height: 1.65;
}

.eco-connector {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 52px;
  flex-shrink: 0;
}

/* ========== Services bento ========== */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.services-bento .service-card--featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  padding: 44px 40px;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.services-bento .service-card--featured h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  margin-bottom: 16px;
}

.services-bento .service-card--featured p {
  color: var(--on-dark-muted);
  font-size: 15px;
  flex: 1;
  max-width: 480px;
}

.services-bento .service-card--featured .service-number {
  color: var(--gold);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(184, 160, 112, 0.35);
  border-radius: var(--radius-sm);
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  list-style: none;
}

.service-highlights li {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  margin-top: auto;
  transition: gap var(--duration) ease;
}

.services-bento .service-card--featured .service-link {
  color: var(--gold);
}

.service-link:hover {
  gap: 12px;
}

.services-bento .service-card:not(.service-card--featured) {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}

.services-bento .service-card:not(.service-card--featured):hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.services-bento .service-card:not(.service-card--featured) h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.services-bento .service-card:not(.service-card--featured) p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* ========== Services ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.service-card {
  background: var(--bg-white);
  border-radius: 0;
  padding: 36px 28px;
  border: none;
  transition: background var(--duration) ease;
  position: relative;
  overflow: visible;
}

.service-card::before {
  display: none;
}

.service-card:not(.service-card--featured):hover {
  box-shadow: none;
  transform: none;
  background: var(--bg-paper);
  border-color: transparent;
}

.service-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  opacity: 1;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
}

.service-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  display: none;
  font-size: 20px;
  margin-bottom: 0;
  background: none !important;
  color: var(--forest) !important;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== Platform showcase ========== */
.showcase {
  padding: 112px 0;
  background: var(--bg-paper);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-content .section-label {
  text-align: left;
  margin-bottom: 20px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.showcase-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.showcase-feature-icon {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.showcase-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.showcase-feature span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.showcase-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-card {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
}

.showcase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.showcase-card-badge {
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-sm);
}

.showcase-card-metric .label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.showcase-card-metric .value {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.showcase-card-breakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.breakdown-row .neg {
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
}

.breakdown-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.breakdown-row .pos {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

.showcase-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.showcase-stat-pill {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.showcase-stat-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.showcase-stat-pill span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ========== Testimonials ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.testimonial-card--featured {
  background: var(--ink);
  border-color: transparent;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 28px;
  font-style: normal;
}

.testimonial-card--featured .testimonial-text {
  color: var(--on-dark-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-avatar {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.testimonial-author cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.testimonial-card--featured .testimonial-author cite {
  color: #fff;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-card--featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.45);
}

/* ========== Advantages ========== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  background: var(--bg-paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: border-color var(--duration) ease;
}

.advantage-card:hover {
  box-shadow: none;
  border-color: var(--border);
}

.advantage-card.featured {
  background: var(--ink);
  color: var(--on-dark);
  border: none;
  grid-column: 1 / -1;
  display: block;
  padding: 44px 40px;
}

.advantage-card.featured .adv-icon {
  margin-bottom: 16px;
}

.advantage-card.featured h3,
.advantage-card.featured p,
.advantage-card.featured .adv-label {
  color: var(--on-dark);
}

.advantage-card.featured p {
  color: var(--on-dark-muted);
  max-width: 720px;
}

.advantage-card.featured .adv-icon {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.adv-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.advantage-card.featured .adv-label {
  color: rgba(255, 255, 255, 0.55);
}

.adv-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-bg);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 600;
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== Scenarios ========== */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scenario-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.scenario-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  filter: grayscale(0.15) contrast(1.05);
}

.scenario-card:hover img {
  transform: scale(1.03);
}

.scenario-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 26, 36, 0.92) 0%, rgba(14, 26, 36, 0.35) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.scenario-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.scenario-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* ========== CTA ========== */
.cta-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(31, 77, 58, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 28px;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.cta-inner p {
  font-size: 16px;
  color: var(--on-dark-muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.35) !important;
  margin-bottom: 0 !important;
  max-width: none !important;
}

.cta-inner .btn-accent {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  padding: 15px 36px;
  font-size: 15px;
}

.cta-inner .btn-accent:hover {
  background: var(--bg-paper);
}

/* ========== Footer ========== */
.footer {
  background: #0a1219;
  color: rgba(255, 255, 255, 0.58);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-mark {
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-col h4 {
  font-size: 13px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  padding: 6px 0;
  transition: color var(--duration) ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
}

/* ========== Page Header ========== */
.page-header {
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 64px;
  background: var(--ink);
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(31, 77, 58, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184, 160, 112, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
  max-width: 640px;
}

.page-header p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--on-dark-muted);
  max-width: 640px;
  margin: 0;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--duration) ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ========== Detail Pages ========== */
.detail-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--border-light);
  margin-bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.detail-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.detail-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: var(--primary-bg) !important;
  color: var(--forest) !important;
}

.detail-card-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.detail-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.detail-card .desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 10px 14px;
  background: var(--bg-paper);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.feature-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  margin-top: 7px;
}

.value-box {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--ink);
  border-radius: var(--radius-sm);
  border-left: none;
}

.value-box strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.value-box span {
  font-size: 14px;
  color: var(--on-dark-muted);
  line-height: 1.65;
}

/* Advantage Detail */
.adv-block {
  margin-bottom: 56px;
}

.adv-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.adv-block-num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  flex-shrink: 0;
  letter-spacing: 0.06em;
}

.adv-block-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.adv-block-body {
  padding-left: 68px;
}

.adv-block-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.adv-block-body ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.adv-block-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 14px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.adv-block-body ul li::before {
  content: '—';
  color: var(--forest);
  font-weight: 500;
  flex-shrink: 0;
}

.adv-highlight {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 48px;
  color: #fff;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.adv-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(31, 77, 58, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.adv-highlight>* {
  position: relative;
}

.adv-highlight-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.adv-highlight h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.adv-highlight-desc {
  color: var(--on-dark-muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 640px;
}

.adv-highlight-item-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.adv-summary {
  text-align: center;
  padding: 44px 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.adv-summary p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.adv-summary p:last-child {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
}

.adv-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-highlight-item {
  text-align: left;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.adv-highlight-item strong {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.adv-highlight-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Solution Page */
.solution-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}

.solution-block:nth-child(even) {
  direction: rtl;
}

.solution-block:nth-child(even)>* {
  direction: ltr;
}

.solution-block-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.solution-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 0.7s var(--ease-out);
}

.solution-block:hover .solution-block-image img {
  transform: scale(1.03);
}

.solution-block-content .section-label {
  text-align: left;
  margin-bottom: 12px;
}

.solution-block-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 600;
}

.solution-block-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-block-cta {
  margin-top: 28px;
}

.solution-tag {
  padding: 6px 14px;
  background: var(--bg-paper);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border-light);
  letter-spacing: 0.02em;
  transition: border-color var(--duration) ease, color var(--duration) ease;
}

.solution-tag:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* About Page */
.about-hero {
  text-align: left;
  padding: 40px 0 20px;
  max-width: 720px;
}

.about-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 24px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.45;
}

.about-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: none;
  margin: 0 0 16px;
}

.about-cover {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}

.about-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.pillar-item {
  padding: 32px 20px;
  background: var(--bg-white);
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}

.pillar-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.pillar-item i {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 14px;
  display: block;
}

.pillar-item h4 {
  font-size: 14px;
  font-weight: 600;
}

.pillars-intro {
  text-align: center;
  margin: 64px 0 0;
}

.pillars-intro h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.pillars-intro p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.value-card {
  text-align: left;
  padding: 28px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}

.value-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.value-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-bg);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 0 16px;
}

.value-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  background: transparent;
  border: none;
}

.vm-card {
  padding: 44px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.vm-card.vision {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.vm-card.mission {
  background: var(--bg-white);
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 600;
}

.vm-card.vision h3 {
  color: #fff;
}

.vm-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.vm-card.vision p {
  color: rgba(255, 255, 255, 0.75);
}

/* Contact perks */
.contact-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.contact-perk {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
}

.contact-perk:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.contact-perk-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-bg);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.contact-perk h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-perk p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-meta {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
}

.contact-form-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* IP page */
.ip-section-certs {
  padding-top: 72px;
}

.ip-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.ip-cert-item {
  min-width: 0;
}

.ip-cert-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
}

.ip-cert-name {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.ip-protect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.ip-protect-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.ip-protect-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-bg);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 16px;
}

.ip-protect-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ip-protect-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.ip-contact {
  text-align: center;
  padding: 24px 32px;
  background: var(--ink);
  border-radius: var(--radius-md);
  color: var(--on-dark-muted);
}

.ip-contact p {
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.ip-contact a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--duration) ease;
}

.ip-contact a:hover {
  color: #fff;
}

/* Page bottom links */
.page-bottom-cta {
  text-align: center;
  padding: 64px 0;
}

.page-bottom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  font-weight: 600;
}

.page-bottom-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.page-bottom-cta .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  padding: 48px;
  background: var(--ink);
  border-radius: var(--radius-md);
  color: #fff;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-features {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-form {
  padding: 48px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease;
  background: var(--bg-white);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.brand-quote {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  padding-left: 28px;
  border-left: 2px solid var(--forest);
}

.brand-quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.brand-quote-attr {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ========== Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .hero-content,
  .hero-media img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-bento {
    grid-template-columns: 1fr 1fr;
  }

  .services-bento .service-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

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

  .pain-card:nth-child(4),
  .pain-card:nth-child(5) {
    grid-column: span 1;
  }

  .pain-item:nth-child(3) {
    border-right: none;
  }

  .pain-item:nth-child(n+4) {
    border-top: 1px solid var(--border);
  }

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

  .ecosystem-flow {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .eco-connector {
    display: none;
  }

  .eco-step {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 1024px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-buttons,
  .hero-metrics {
    justify-content: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-panel {
    max-width: 480px;
    margin: 0 auto;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .pain-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pain-title {
    max-width: none;
  }

  .pain-header-desc {
    max-width: none;
  }

  .solution-bridge-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 28px;
  }

  .solution-bridge-actions {
    align-items: flex-start;
    width: 100%;
  }

  .solution-pills {
    justify-content: flex-start;
    max-width: none;
  }

  .hero-inner {
    padding: var(--header-height) 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .detail-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .adv-block-body {
    padding-left: 0;
  }

  .solution-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .solution-block:nth-child(even) {
    direction: ltr;
  }

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

  .adv-highlight-grid {
    grid-template-columns: 1fr;
  }

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

  .vision-mission {
    grid-template-columns: 1fr;
  }

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

  .advantage-card.featured {
    grid-column: 1 / -1;
  }

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

  .scenarios-grid .scenario-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

  .pain-cards {
    grid-template-columns: 1fr;
  }

  .pain-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    align-items: flex-start;
  }

  .pain-item:last-child {
    border-bottom: none;
  }

  .pain-icon {
    width: 36px;
    border-bottom: none;
    padding-bottom: 0;
    flex-shrink: 0;
  }

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

  .partner-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .partner-marquee {
    width: 100%;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .eco-step {
    flex: 0 0 100%;
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
    padding: 0;
  }

  .eco-step-num {
    grid-row: 1 / 3;
    margin-bottom: 0;
    padding-top: 2px;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .detail-card {
    padding: 32px 0;
  }

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

  .contact-info,
  .contact-form {
    padding: 28px;
  }

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

  .ip-cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ip-protect-grid {
    grid-template-columns: 1fr;
  }

  .adv-highlight {
    padding: 32px 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-brand {
    margin-bottom: 20px;
  }

  .page-header {
    text-align: left;
    padding-bottom: 48px;
  }

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

  .scenarios-grid .scenario-card:last-child {
    aspect-ratio: 3/4;
  }

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

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

  .solution-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .ip-cert-grid {
    grid-template-columns: 1fr;
  }

  .page-bottom-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}