@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=Montserrat:wght@600;700&family=Inter:wght@400;600&display=swap');

:root {
  /* VI V2.0 主色系 */
  --brand-blue: #003B8E;        /* 北斗深空蓝 - 主色 60% */
  --brand-blue-dark: #002A6E;   /* 深空蓝深色变体 */
  --brand-blue-light: #00A3FF;  /* 星控科技蓝 - 辅助色 25% */
  --brand-accent: #00E5C7;      /* 北斗光青 - 点缀色 10% */
  --brand-dark: #0F172A;        /* 近黑 */
  --brand-dark-2: #0A1B3A;      /* 深空蓝黑 */

  /* VI V2.0 中性色系 */
  --gray-50: #F5F8FC;           /* 云端白 */
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #8A9BB8;          /* 银河灰 */
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #1F2937;          /* 深灰 */
  --gray-800: #1E293B;
  --white: #FFFFFF;
  --slate-300: #94A3B8;
  --slate-400: #94A3B8;
  --slate-500: #64748B;

  /* VI V2.0 标准渐变 */
  --gradient-tech: linear-gradient(135deg, #003B8E, #00A3FF);       /* 科技渐变 */
  --gradient-data: linear-gradient(135deg, #00A3FF, #00E5C7);      /* 数据渐变 */
  --gradient-deep: linear-gradient(180deg, #0A1B3A, #003B8E);      /* 深空渐变 */

  /* 阴影规范 */
  --shadow-card: 0 2px 8px rgba(0, 59, 142, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 59, 142, 0.12);

  /* 字体 */
  --font-cn: 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  --font-en: 'Montserrat', 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-cn);
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============ Container ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Navbar ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.7);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient-tech);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-logo-text .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.navbar-logo-text .sub {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--slate-500);
  font-family: var(--font-en);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.navbar-links a:hover, .navbar-links a.active {
  color: var(--brand-blue);
}

.navbar-phone {
  background: var(--gradient-tech);
  color: white !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.navbar-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.navbar-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gray-600);
  border-radius: 2px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 80vh;
  background: var(--gradient-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,163,255,0.25) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,229,199,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,163,255,0.08) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,199,0.3);
  background: rgba(0,229,199,0.08);
  color: var(--brand-accent);
  font-size: 13px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 8px var(--brand-accent);
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--brand-blue-light);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-400);
  margin-bottom: 32px;
  max-width: 600px;
}

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

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gradient-tech);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,59,142,0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--brand-accent);
}

.btn-outline-dark {
  background: white;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-outline-dark:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

/* ============ Section ============ */
.section {
  padding: 80px 0;
}

.section-gray { background: var(--gray-50); }

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

.section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-blue-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

/* ============ Stats ============ */
.stats-strip {
  background: var(--brand-dark-2);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-value {
  font-size: 36px;
  font-weight: 900;
  color: white;
}

.stat-value .suffix {
  color: var(--brand-accent);
}

.stat-label {
  font-size: 14px;
  color: var(--slate-400);
  margin-top: 4px;
}

/* ============ Feature Cards ============ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,59,142,0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============ Solution Card ============ */
.solution-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.solution-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-blue-light);
}

.solution-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(0,163,255,0.1);
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.solution-card .desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.65;
}

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

.solution-points li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
  padding: 6px 12px;
  background: var(--gray-50);
  border-radius: 8px;
}

.solution-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
}

/* ============ Advantage Strip ============ */
.advantage-strip {
  background: var(--gradient-deep);
  padding: 60px 0;
}

.advantage-strip .grid-3 > div {
  text-align: center;
  color: white;
}

.advantage-strip .icon-lg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--brand-accent);
}

.advantage-strip h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantage-strip p {
  font-size: 14px;
  color: var(--slate-400);
}

/* ============ CTA ============ */
.cta-box {
  background: var(--gradient-deep);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(0,163,255,0.15);
  filter: blur(60px);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(0,229,199,0.1);
  filter: blur(60px);
}

.cta-box-inner {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 16px;
  color: var(--slate-400);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============ About Intro ============ */
.about-intro {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 24px;
}

.about-intro-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ============ Page Banner ============ */
.page-banner {
  background: var(--gradient-deep);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,163,255,0.15) 0%, transparent 70%);
}

.page-banner-inner {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 16px;
  color: var(--slate-400);
}

/* ============ Timeline ============ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 48px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item .dot {
  position: absolute;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--brand-blue-light);
}

.timeline-item:nth-child(odd) .dot {
  right: -7px;
}

.timeline-item:nth-child(even) .dot {
  left: -7px;
}

.timeline-year {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============ Values ============ */
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

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

.value-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,59,142,0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============ Qualifications ============ */
.qual-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.qual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray-600);
}

.qual-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
}

/* ============ Products ============ */
.product-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-tech);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============ Service Card ============ */
.service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 8px 24px rgba(0,229,199,0.08);
}

.service-card .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  background: rgba(0,229,199,0.1);
  color: #00B894;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.service-card .desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.65;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  padding: 4px 0;
}

.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  flex-shrink: 0;
}

/* ============ Tech Grid ============ */
.tech-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.tech-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-card);
}

.tech-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,59,142,0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tech-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============ Scene Tags ============ */
.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.scene-tag {
  padding: 10px 24px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 14px;
  color: var(--gray-600);
  transition: all 0.2s;
}

.scene-tag:hover {
  border-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

/* ============ Promise ============ */
.promise-card {
  text-align: center;
  padding: 32px;
}

.promise-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,229,199,0.1);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.promise-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.promise-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.contact-info-item .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,59,142,0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .label {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-info-item .value {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
}

.contact-form {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
}

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

.contact-form .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 0 3px rgba(0,163,255,0.1);
}

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

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

.news-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.news-card-body {
  padding: 24px;
}

.news-card .category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  background: rgba(0,163,255,0.1);
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .summary {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .date {
  font-size: 12px;
  color: var(--gray-300);
}

/* ============ News Detail ============ */
.news-detail {
  max-width: 800px;
  margin: 0 auto;
}

.news-detail-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.news-detail-header .category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  background: rgba(0,163,255,0.1);
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.news-detail-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.news-detail-header .meta {
  font-size: 14px;
  color: var(--gray-500);
}

.news-detail-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-700);
}

.news-detail-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 32px 0 16px;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-body img {
  border-radius: 12px;
  margin: 24px 0;
}

/* ============ 404 ============ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: 96px;
  font-weight: 900;
  color: var(--brand-blue);
  opacity: 0.3;
}

.error-page p {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ============ Footer ============ */
.footer {
  background: var(--brand-dark-2);
  color: var(--slate-400);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-qr {
  text-align: center;
}

.footer-qr img {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  background: white;
  padding: 4px;
  margin-bottom: 10px;
}

.footer-qr p {
  font-size: 13px;
  color: var(--slate-400);
  line-height: 1.5;
}

.footer-qr .qr-title {
  font-size: 12px;
  color: var(--brand-accent);
  margin-bottom: 4px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient-tech);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-brand .name {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-about .slogan {
  font-size: 13px;
  color: var(--gray-500);
}

.footer h3 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-400);
  margin-bottom: 12px;
}

.footer-contact .icon-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brand-blue-light);
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: var(--gray-600);
}

/* ============ Icons ============ */
.icon-svg {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

/* ============ Animations ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* ============ Mobile Menu ============ */
.mobile-menu {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.show {
  max-height: 400px;
  padding: 8px 0 16px;
}

.mobile-menu nav {
  display: flex !important;
  flex-direction: column;
  gap: 4px !important;
  padding: 0 24px !important;
}

.mobile-menu nav a {
  display: block;
  padding: 12px 16px !important;
  border-radius: 8px;
  font-size: 15px !important;
  color: var(--gray-600) !important;
  transition: all 0.2s;
  min-height: 44px;
  display: flex !important;
  align-items: center;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  background: rgba(0, 59, 142, 0.06);
  color: var(--brand-blue) !important;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.navbar-toggle span {
  transition: all 0.3s;
}

/* ============ Responsive - Tablet ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }

  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 20px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 28px; }

  .cta-box { padding: 48px 32px; }
  .page-banner { padding: 64px 0 48px; }
  .page-banner h1 { font-size: 30px; }
}

/* ============ Responsive - Mobile ============ */
@media (max-width: 768px) {
  /* Container & Spacing */
  .container { padding: 0 16px; }
  .navbar-inner { padding: 0 16px; height: 56px; }
  .stats-grid { padding: 0 16px; }

  /* Navbar */
  .navbar-links { display: none; }
  .navbar-phone { display: none; }
  .navbar-toggle { display: flex; }
  .navbar-logo-icon { width: 32px; height: 32px; border-radius: 7px; }
  .navbar-logo-text .name { font-size: 15px; }
  .navbar-logo-text .sub { font-size: 9px; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero-inner { padding: 40px 0; max-width: 100%; }
  .hero h1 { font-size: 26px; line-height: 1.25; }
  .hero-subtitle { font-size: 16px; }
  .hero-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; margin-bottom: 20px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1; min-height: 44px; font-size: 14px; padding: 10px 20px; }

  /* Section */
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 12px; letter-spacing: 1.5px; }
  .section-desc { font-size: 14px; }

  /* Stats */
  .stats-strip { padding: 32px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 8px 4px; }
  .stat-value { font-size: 24px; }
  .stat-label { font-size: 12px; }

  /* Grids */
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .news-grid { grid-template-columns: 1fr; }

  /* Cards */
  .feature-card { padding: 24px 20px; border-radius: 12px; }
  .feature-card .icon-box { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 16px; }
  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 13px; }

  .solution-card { padding: 24px 20px; border-radius: 12px; }
  .solution-card h3 { font-size: 17px; }
  .solution-card .desc { font-size: 13px; }
  .solution-points { gap: 6px; }
  .solution-points li { font-size: 12px; padding: 5px 10px; }
  .solution-outcome { font-size: 12px; padding: 5px 12px; }

  /* Advantage Strip */
  .advantage-strip { padding: 40px 0; }
  .advantage-strip .icon-lg { width: 40px; height: 40px; margin-bottom: 12px; }
  .advantage-strip h3 { font-size: 16px; }
  .advantage-strip p { font-size: 13px; }
  .advantage-strip .grid-3 > div { padding: 16px 8px; }

  /* CTA */
  .cta-box { padding: 32px 20px; border-radius: 16px; }
  .cta-box h2 { font-size: 20px; }
  .cta-box p { font-size: 14px; margin-bottom: 24px; }
  .cta-box .btn { width: 100%; min-height: 44px; }

  /* Page Banner */
  .page-banner { padding: 48px 0 36px; }
  .page-banner h1 { font-size: 24px; }
  .page-banner p { font-size: 14px; }

  /* Timeline */
  .timeline::before { left: 16px; }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 40px;
    padding-right: 0;
    padding-bottom: 32px;
  }
  .timeline-item .dot { left: 10px !important; right: auto !important; width: 12px; height: 12px; }
  .timeline-year { font-size: 20px; }
  .timeline-item h3 { font-size: 16px; }
  .timeline-item p { font-size: 13px; }

  /* Value Cards (About page) */
  .about-intro-title { font-size: 22px; }
  .about-intro-text { font-size: 14px; line-height: 1.8; }

  .value-card { padding: 24px 20px; border-radius: 12px; }
  .value-card .icon-box { width: 44px; height: 44px; border-radius: 12px; }
  .value-card h3 { font-size: 16px; }
  .value-card p { font-size: 13px; }

  /* Qualifications */
  .qual-grid { gap: 8px; }
  .qual-badge { font-size: 12px; padding: 8px 14px; border-radius: 8px; }

  /* Product Cards */
  .product-card { padding: 24px 20px; border-radius: 12px; }
  .product-card .icon-box { width: 40px; height: 40px; }
  .product-card h3 { font-size: 15px; }
  .product-card p { font-size: 13px; }

  /* Tech Cards */
  .tech-card { padding: 24px 20px; border-radius: 12px; }
  .tech-card .icon-box { width: 40px; height: 40px; }
  .tech-card h3 { font-size: 15px; }
  .tech-card p { font-size: 13px; }

  /* Service Cards */
  .service-card { padding: 24px 20px; border-radius: 12px; }
  .service-card h3 { font-size: 16px; }
  .service-card .desc { font-size: 13px; }
  .service-card li { font-size: 13px; }

  /* Promise Cards */
  .promise-card { padding: 24px 20px; border-radius: 12px; }
  .promise-card .icon-box { width: 40px; height: 40px; }
  .promise-card h3 { font-size: 15px; }
  .promise-card p { font-size: 13px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card { padding: 24px 20px; border-radius: 12px; }
  .contact-info-item { padding: 16px 0; gap: 12px; }
  .contact-info-item .icon-box { width: 36px; height: 36px; }
  .contact-info-item .value { font-size: 14px; }
  .contact-info-item .label { font-size: 12px; }
  .contact-form { padding: 24px 20px; border-radius: 12px; }
  .contact-form h3 { font-size: 18px !important; }
  .contact-form .form-input,
  .contact-form .form-textarea {
    font-size: 16px; /* iOS prevents zoom on focus */
    padding: 12px 14px;
  }
  .contact-form .form-textarea { min-height: 100px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-qr { text-align: center; }
  .footer-qr img { width: 100px; height: 100px; }
  .footer-qr h3 { font-size: 15px; }
  .footer-qr p { font-size: 12px; }
  .footer-about { font-size: 13px; line-height: 1.7; }
  .footer-bottom { padding: 16px; }
  .footer-bottom p { font-size: 12px; }

  /* Buttons - ensure touch target */
  .btn { min-height: 44px; font-size: 14px; padding: 10px 24px; }
}

/* ============ Responsive - Small Phone ============ */
@media (max-width: 480px) {
  .hero { min-height: 65vh; }
  .hero h1 { font-size: 22px; }
  .hero-subtitle { font-size: 14px; }
  .hero-desc { font-size: 13px; }
  .hero-badge { font-size: 11px; padding: 5px 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .section { padding: 32px 0; }
  .section-title { font-size: 20px; }
  .section-header { margin-bottom: 24px; }

  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-value { font-size: 22px; }

  .cta-box { padding: 24px 16px; border-radius: 12px; }
  .cta-box h2 { font-size: 18px; }

  .page-banner h1 { font-size: 20px; }
  .page-banner { padding: 40px 0 28px; }
}

/* ============ Market Insight ============ */
.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.market-stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.market-stat-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 8px 24px rgba(0, 59, 142, 0.1);
  transform: translateY(-2px);
}

.market-stat-value {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  background: var(--gradient-tech);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.market-stat-value span {
  font-size: 18px;
  font-weight: 600;
}

.market-stat-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 8px;
}

.driver-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-tech);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

/* ============ Risk Management Flow ============ */
.risk-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.risk-phase {
  flex: 1;
  min-width: 220px;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 12px 12px 12px 12px;
  border: 1px solid var(--gray-200);
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.risk-phase:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 8px 24px rgba(0, 59, 142, 0.1);
  transform: translateY(-4px);
}

.risk-phase-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-deep);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

.risk-phase h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.risk-phase p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
}

.risk-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 24px;
  color: var(--brand-blue-light);
  font-weight: 700;
}

/* ============ Core Values ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-item {
  padding: 28px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s;
}

.value-item:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 8px 24px rgba(0, 59, 142, 0.1);
  transform: translateY(-4px);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-tech);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.value-tag {
  font-size: 12px;
  color: var(--brand-blue-light);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.value-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ============ Solution Outcome ============ */
.solution-outcome {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0, 163, 255, 0.1);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============ Tech Pillars ============ */
.pillar-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-tech);
}

.pillar-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 12px 32px rgba(0, 59, 142, 0.12);
  transform: translateY(-4px);
}

.pillar-metric {
  margin-bottom: 20px;
}

.pillar-value {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  background: var(--gradient-data);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
}

/* ============ Risk Method Cards ============ */
.risk-method-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.risk-method-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 8px 24px rgba(0, 59, 142, 0.1);
  transform: translateY(-2px);
}

.method-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 6px;
  background: var(--gradient-tech);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.risk-method-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.risk-method-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
}

.method-example {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 13px;
  color: var(--gray-600);
  border-left: 3px solid var(--brand-accent);
}

/* ============ Risk Matrix Table ============ */
.risk-matrix-table {
  margin-top: 40px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.matrix-title {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--gray-200);
  margin: 0;
}

.risk-table {
  width: 100%;
  border-collapse: collapse;
}

.risk-table th {
  padding: 14px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.risk-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.risk-table tr:last-child td {
  border-bottom: none;
}

.risk-level {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.risk-level-high {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}

.risk-level-medium {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
}

/* ============ Insurance Flow ============ */
.insurance-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.insurance-step {
  flex: 1;
  min-width: 180px;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.3s;
}

.insurance-step:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 8px 24px rgba(0, 59, 142, 0.1);
  transform: translateY(-2px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-data);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 14px;
}

.insurance-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.insurance-step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-500);
}

.insurance-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--gradient-deep);
  border-radius: 12px;
}

.result-value {
  font-size: 42px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: var(--brand-accent);
  line-height: 1;
}

.result-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* ============ Responsive for New Sections ============ */
@media (max-width: 1024px) {
  .market-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .risk-flow { flex-direction: column; gap: 16px; }
  .risk-arrow { display: none; }
  .insurance-flow { flex-wrap: wrap; }
  .insurance-step { min-width: calc(33% - 16px); }
  .pillar-card { padding: 28px 20px; }
}

@media (max-width: 768px) {
  .market-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .market-stat-card { padding: 20px 12px; }
  .market-stat-value { font-size: 26px; }
  .market-stat-value span { font-size: 14px; }
  .market-stat-label { font-size: 12px; }

  .driver-num { width: 36px; height: 36px; font-size: 16px; }

  .risk-flow { flex-direction: column; gap: 12px; }
  .risk-phase { padding: 24px 20px; }
  .risk-phase-num { width: 40px; height: 40px; font-size: 16px; }
  .risk-phase h3 { font-size: 16px; }
  .risk-phase p { font-size: 13px; }
  .risk-arrow { display: none; }

  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .value-item { padding: 20px 16px; }
  .value-icon { width: 44px; height: 44px; font-size: 17px; }
  .value-item h3 { font-size: 15px; }
  .value-tag { font-size: 11px; }
  .value-desc { font-size: 12px; }

  .pillar-card { padding: 24px 20px; }
  .pillar-value { font-size: 22px; }
  .pillar-card h3 { font-size: 17px; }
  .pillar-card p { font-size: 13px; }

  .risk-method-card { padding: 24px 20px; }
  .method-badge { font-size: 12px; padding: 3px 10px; }
  .risk-method-card h3 { font-size: 16px; }
  .risk-method-card p { font-size: 13px; }
  .method-example { font-size: 12px; padding: 10px 12px; }

  .matrix-title { padding: 16px 16px; font-size: 14px; }
  .risk-table th { padding: 10px 12px; font-size: 12px; }
  .risk-table td { padding: 10px 12px; font-size: 12px; }

  .insurance-flow { flex-direction: column; gap: 12px; }
  .insurance-step { min-width: 100%; padding: 24px 20px; }
  .step-num { width: 40px; height: 40px; font-size: 14px; }
  .insurance-step h3 { font-size: 15px; }
  .insurance-step p { font-size: 12px; }

  .insurance-result { flex-direction: column; gap: 8px; padding: 20px 16px; }
  .result-value { font-size: 32px; }
  .result-label { font-size: 14px; }
}

@media (max-width: 480px) {
  .market-stats { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .market-stat-value { font-size: 22px; }
  .risk-matrix-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .risk-table { min-width: 400px; }
  .insurance-result { padding: 16px 12px; }
  .result-value { font-size: 26px; }
}
