/* ============================================================
   Ziyoukan Pro - 页面共享样式 pages.css
   提取并统一自各页面模板的内联样式：
   - research-hero 头部 Hero（网格纹理 + 数据面板，规范绿色/金强调）
   - 政务深蓝 / 金色共享组件（founder / timeline / service / copyright / contact / panel）
   - 各页面独有组件（按页归档）
   依赖：style.css（ziyoukan-style）后加载，变量在此统一定义
   ============================================================ */

/* ---- 设计变量（与页面原内联一致，确保组件正常） ---- */
:root {
  --gov-navy: #1B2A4A;
  --gov-navy-dark: #0F2044;
  --gov-gold: #B8860B;
  --gov-gold-light: #D4A843;
  --gov-royal: #1E3A5F;
  --gov-red: #8B1A2B;
  --gov-title: #1A2332;
  --gov-body: #4A5568;
  --gov-assist: #718096;
  --gov-border: #E2E8F0;
  --gov-bg: #F8F9FA;
  --gov-white: #FFFFFF;
  --gov-radius: 16px;
  --gov-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --gov-shadow-hover: 0 4px 12px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
  --gov-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   统一页面容器与区块间距
   ============================================================ */
.page-main { overflow: hidden; }
.page-section { padding: 80px 0; background: var(--gov-bg); }
.page-section.page-alt { background: var(--gov-white); }
.page-section.page-deep { background: var(--gov-navy); color: #fff; }
.page-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* 统一区块标题（左竖线金色装饰） */
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.center { text-align: center; }
.section-head .sec-label {
  display: inline-block; font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gov-gold); font-weight: 700; margin-bottom: 12px;
}
.section-head .sec-title {
  font-family: 'PingFang SC','Microsoft YaHei','SimHei',sans-serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--gov-title);
  letter-spacing: -0.01em; line-height: 1.3; margin: 0;
}
.section-head .sec-desc { font-size: 1rem; color: var(--gov-assist); margin-top: 12px; line-height: 1.75; }
.page-section.page-deep .section-head .sec-title { color: #fff; }
.page-section.page-deep .section-head .sec-desc { color: rgba(255,255,255,0.6); }

/* ============================================================
   统一卡片网格与特性卡片（article + h3 语义化）
   ============================================================ */
.page-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.page-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.page-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  background: var(--gov-white);
  border: 1px solid var(--gov-border);
  border-radius: var(--gov-radius);
  padding: 32px;
  box-shadow: var(--gov-shadow);
  transition: box-shadow var(--gov-transition), transform var(--gov-transition);
  display: flex; flex-direction: column;
}
.feature-card:hover { box-shadow: var(--gov-shadow-hover); transform: translateY(-4px); }
.feature-card .fc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--gov-gold), var(--gov-royal));
  color: #fff;
}
.feature-card .fc-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.feature-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--gov-title); margin: 0 0 12px; padding-left: 14px; border-left: 3px solid var(--gov-gold); line-height: 1.4; }
.feature-card .fc-desc { font-size: 1rem; color: var(--gov-body); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.feature-card .fc-link {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: .92rem; font-weight: 600; color: var(--gov-gold); text-decoration: none;
  transition: gap var(--gov-transition);
}
.feature-card .fc-link:hover { gap: 10px; color: var(--gov-navy); text-decoration: none; }
.feature-card .fc-link::after { content: '\2192'; font-size: 1rem; }

/* ============================================================
   统一按钮（主：金色填充 / 次：金色描边）
   ============================================================ */
.page-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 10px; font-size: 1rem; font-weight: 700;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all var(--gov-transition); letter-spacing: .3px;
}
.page-btn-primary { background: var(--gov-gold); color: #fff; box-shadow: 0 4px 12px rgba(184,134,11,0.3); }
.page-btn-primary:hover { background: #9A6F09; box-shadow: 0 6px 16px rgba(184,134,11,0.4); color: #fff; text-decoration: none; }
.page-btn-secondary { background: transparent; color: var(--gov-gold); border-color: var(--gov-gold); }
.page-btn-secondary:hover { background: var(--gov-gold); color: #fff; text-decoration: none; }
.page-btn-light { background: #fff; color: var(--gov-navy); }
.page-btn-light:hover { background: rgba(255,255,255,0.9); text-decoration: none; }

/* ============================================================
   共享组件（原各页内联，已统一去重；research-hero 为规范绿色版）
   ============================================================ */
.gov-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
}

.gov-btn-secondary:hover {
  border-color: var(--gov-gold);
  color: var(--gov-gold-light);
  text-decoration: none;
}

.gov-copyright-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(184,134,11,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--gov-gold);
}

.gov-copyright-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gov-title);
  margin-bottom: 8px;
}

.gov-copyright-box p {
  font-size: 0.875rem;
  color: var(--gov-body);
  line-height: 1.8;
  margin: 0;
}

.gov-cta .gov-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gov-founder {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.gov-founder-bio {
  font-size: 0.95rem;
  color: var(--gov-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.gov-founder-bio p { margin-bottom: 14px; }

.gov-founder-bio p:last-child { margin-bottom: 0; }

.gov-founder-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gov-border);
}

.gov-founder-contact .gov-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gov-bg);
  border-radius: 6px;
  color: var(--gov-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.gov-founder-contact .gov-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gov-body);
  margin-bottom: 10px;
}

.gov-founder-contact .gov-contact-row:last-child { margin-bottom: 0; }

.gov-founder-contact a {
  color: var(--gov-gold);
  text-decoration: none;
}

.gov-founder-contact a:hover { text-decoration: underline; }

.gov-founder-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gov-title);
  margin-bottom: 4px;
  line-height: 1.3;
}

.gov-founder-photo {
  background: var(--gov-bg);
  border: 1px solid var(--gov-border);
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gov-founder-photo .gov-photo-placeholder {
  text-align: center;
  color: var(--gov-assist);
}

.gov-founder-photo .gov-photo-placeholder .gov-photo-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 12px;
}

.gov-founder-photo .gov-photo-placeholder span {
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.gov-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gov-founder-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gov-gold);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.gov-section,
.gov-section-alt,
.gov-section-deep {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'SimHei', sans-serif;
}

.gov-section-alt {
  padding: 80px 0;
  background: var(--gov-bg);
}

.gov-section-deep {
  padding: 80px 0;
  background: var(--gov-navy);
  color: #FFFFFF;
}

.gov-section-deep .gov-section-header .gov-h2 {
  color: #FFFFFF;
  border-left-color: var(--gov-gold-light);
}

.gov-section-deep .gov-section-header .gov-sub {
  color: rgba(255,255,255,0.6);
}

.gov-section-header .gov-h2 {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'SimHei', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gov-title);
  letter-spacing: -0.01em;
  line-height: 1.3;
  padding-left: 20px;
  border-left: 3px solid var(--gov-gold);
  margin: 0;
}

.gov-section-header .gov-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gov-gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.gov-section-header .gov-sub {
  font-size: 1rem;
  color: var(--gov-assist);
  margin-top: 12px;
  line-height: 1.75;
  padding-left: 23px;
}

.gov-service-card {
  background: var(--gov-white);
  border: 1px solid var(--gov-border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gov-service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.gov-service-desc {
  font-size: 1rem;
  color: var(--gov-body);
  line-height: 1.75;
  margin-bottom: 20px;
  min-height: 3.5em;
}

.gov-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gov-bg);
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--gov-gold);
}

.gov-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gov-gold);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.gov-service-link::after {
  content: '\2192';
  font-size: 1rem;
}

.gov-service-link:hover {
  gap: 10px;
  color: var(--gov-navy);
  text-decoration: none;
}

.gov-service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gov-title);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--gov-gold);
  line-height: 1.3;
}

.gov-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1020px;
  margin: 0 auto;
}

.gov-tl-card {
  background: var(--gov-white);
  border: 1px solid var(--gov-border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

.gov-tl-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gov-title);
  margin-bottom: 8px;
  line-height: 1.4;
}

.gov-tl-card p {
  font-size: 1rem;
  color: var(--gov-body);
  line-height: 1.75;
  margin: 0;
}

.gov-tl-content {
  flex: 0 0 50%;
  padding: 0 48px;
}

.gov-tl-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--gov-gold);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px var(--gov-gold);
  z-index: 1;
}

.gov-tl-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
}

.gov-tl-item.left { flex-direction: row; }

.gov-tl-item.left .gov-tl-year { justify-content: flex-end; }

.gov-tl-item.right { flex-direction: row-reverse; }

.gov-tl-item.right .gov-tl-year { justify-content: flex-start; }

.gov-tl-item:last-child { margin-bottom: 0; }

.gov-tl-year {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  padding: 0 48px;
}

.gov-tl-year span {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gov-navy);
  letter-spacing: -0.02em;
  line-height: 1;
}




.research-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1F1A 0%, #0B2520 30%, #0D2B25 70%, #0A221D 100%);
}

.research-hero .glow-bl {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.06), transparent 70%);
  bottom: -200px; left: -150px;
  pointer-events: none;
  z-index: 0;
}

.research-hero .rh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: linear-gradient(90deg, rgba(184,134,11,0.2), rgba(154,111,9,0.2));
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #D4B87A;
  margin-bottom: 24px;
}

.research-hero .rh-badge .dot {
  width: 7px; height: 7px;
  background: #D4A843;
  border-radius: 50%;
  animation: rh-pulse 2s ease-in-out infinite;
}

.research-hero .rh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.research-hero .rh-breadcrumb .current { color: #D4A843; }

.research-hero .rh-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.research-hero .rh-breadcrumb a:hover { color: rgba(255,255,255,0.7); }

.research-hero .rh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #B8860B, #9A6F09);
  color: #fff;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(184,134,11,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.research-hero .rh-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(184,134,11,0.5);
  color: #fff;
  text-decoration: none;
}

.research-hero .rh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}

.research-hero .rh-btn-secondary:hover {
  border-color: rgba(184,134,11,0.5);
  color: #D4A843;
  text-decoration: none;
}

.research-hero .rh-container {
  position: relative;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 60px;
  z-index: 1;
}

.research-hero .rh-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.research-hero .rh-desc {
  font-size: 16px;
  color: #B0B0C0;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.research-hero .rh-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.research-hero .rh-left h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.research-hero .rh-left h1 .h1-accent {
  background: linear-gradient(135deg, #D4A843, #E0B95A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.research-hero .rh-left h1 .highlight {
  background: linear-gradient(135deg, #D4A843, #E0B95A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.research-hero .rh-panel {
  background: rgba(20, 35, 60, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.research-hero .rh-panel .footer-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.research-hero .rh-panel .info-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.research-hero .rh-panel .info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.research-hero .rh-panel .info-row:last-of-type { border-bottom: none; }

.research-hero .rh-panel .info-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #D4A843;
  line-height: 1;
  text-align: right;
}

.research-hero .rh-panel .panel-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.research-hero .rh-panel .panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.research-hero .rh-panel .panel-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.research-hero .rh-panel .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #00C853;
  background: rgba(0,200,83,0.12);
  padding: 2px 10px;
  border-radius: 4px;
  margin-top: 4px;
}

.research-hero .rh-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(184,134,11,0.08), transparent 60%);
  border-radius: 16px;
  pointer-events: none;
}

.research-hero::after {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.1), transparent 70%);
  top: -300px; right: -200px;
  pointer-events: none;
  z-index: 0;
}

.research-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .research-hero .rh-grid { grid-template-columns: 1fr; gap: 40px; }
  .research-hero .rh-panel { max-width: 100%; }
  .research-hero .rh-container { padding: 100px 20px 40px; }
}


/* ============================================================
   各页面独有组件
   ============================================================ */


/* ===== front-page.php ===== */

.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e27 0%, #0f172a 30%, #1e3a5f 65%, #0f172a 100%);
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(234,179,8,0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(59,130,246,0.06) 0%, transparent 40%);
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234,179,8,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,179,8,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(234,179,8,0.06), transparent 70%);
  top: -150px; right: -100px;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.06), transparent 70%);
  bottom: -100px; left: -80px;
}

.hero-metrics {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(234,179,8,0.15);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

.hero-metrics .metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-metrics .metric-row:last-child { border-bottom: none; }

.hero-metrics .metric-name {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.hero-metrics .metric-number {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-metrics .metric-tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
  background: rgba(16,185,129,0.12);
  color: #34d399;
}

.hero-metrics .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
}

.expert-section {
  position: relative;
}

.expert-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234,179,8,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.expert-image-wrapper {
  position: relative;
  display: inline-block;
}

.expert-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f59e0b, #2563eb, #f59e0b);
  opacity: 0.3;
  z-index: -1;
  animation: rotateGradient 6s linear infinite;
}

@keyframes rotateGradient {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.service-card-premium {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a5f, #f59e0b);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-premium:hover {
  border-color: #fcd34d;
  box-shadow: 0 24px 80px rgba(234,179,8,0.08);
  transform: translateY(-8px);
}

.service-card-premium:hover::before { opacity: 1; }

.service-card-premium .s-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card-premium .s-icon.navy { background: linear-gradient(135deg, #1e3a5f, #1e40af); }

.service-card-premium .s-icon.amber { background: linear-gradient(135deg, #d97706, #f59e0b); }

.service-card-premium .s-icon.teal { background: linear-gradient(135deg, #0d9488, #059669); }

.insight-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.insight-card:hover {
  border-color: #fcd34d;
  box-shadow: 0 20px 60px rgba(234,179,8,0.10);
  transform: translateY(-6px);
}

.tech-grid-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-grid-item:hover {
  border-color: #fcd34d;
  box-shadow: 0 12px 40px rgba(234,179,8,0.08);
  transform: translateY(-4px);
}

.tech-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.stats-section-home {
  background: linear-gradient(135deg, #0a0e27, #0f172a, #1e3a5f) !important;
  position: relative;
  overflow: hidden;
}

.stats-section-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(234,179,8,0.04), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(59,130,246,0.04), transparent 50%);
}

.stat-home-card {
  text-align: center;
  padding: 32px 16px;
  position: relative;
  z-index: 1;
}

.stat-home-card .stat-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.stat-home-card .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-separator {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  align-self: center;
}

.cta-premium {
  background: linear-gradient(135deg, #0a0e27, #1e3a5f) !important;
  position: relative;
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234,179,8,0.10), transparent 70%);
  border-radius: 50%;
}

.cta-premium::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
  border-radius: 50%;
}

.form-section-home {
  background: #f8fafc;
}

.form-card-home {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.tools-section-home {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.tools-section-home::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tools-section-home::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(234,179,8,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tool-card-mini {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tool-card-mini:hover {
  border-color: #fcd34d;
  box-shadow: 0 8px 28px rgba(234,179,8,0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.tool-card-mini .tool-icon-mini {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  font-weight: 700;
  color: #fff;
}

.tool-icon-mini.seo   { background: linear-gradient(135deg,#d97706,#f59e0b); }

.tool-icon-mini.dev   { background: linear-gradient(135deg,#1e3a5f,#2563eb); }

.tool-icon-mini.net   { background: linear-gradient(135deg,#059669,#10b981); }

.tool-icon-mini.media { background: linear-gradient(135deg,#7c3aed,#8b5cf6); }

.tool-card-mini .tool-text-mini { flex: 1; }

.tool-card-mini .tool-name-mini {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  display: block;
}

.tool-card-mini .tool-desc-mini {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

.tool-card-mini .tool-badge-mini {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(16,185,129,0.1);
  color: #10b981;
  flex-shrink: 0;
}

.tool-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-section-home {
  background: #fff;
  position: relative;
}

.pricing-card-home {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card-home.featured {
  border-color: #fcd34d;
  box-shadow: 0 8px 40px rgba(234,179,8,0.10);
  transform: scale(1.02);
}

.pricing-card-home.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.pricing-card-home:hover {
  border-color: #fcd34d;
  box-shadow: 0 20px 60px rgba(234,179,8,0.10);
  transform: translateY(-6px);
}

.pricing-card-home.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.pricing-card-home .pricing-badge-featured {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  letter-spacing: 0.5px;
}

.pricing-card-home .plan-name {
  font-size: 14px;
  font-weight: 700;
  color: #d4a853;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-card-home .plan-price {
  font-size: 44px;
  font-weight: 900;
  color: #1e3a5f;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.pricing-card-home .plan-unit {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.pricing-card-home .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-card-home .plan-features li {
  font-size: 13px;
  color: #475569;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card-home .plan-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
}

.pricing-card-home .plan-features li:last-child { border-bottom: none; }

.pricing-card-home .plan-cta {
  display: block;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}


/* ===== page-about.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-ai.php ===== */

.ai-section-label {

  text-align: center; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;

  color: #A29BFE; margin-bottom: 12px;

}

.ai-section-title {

  text-align: center; font-size: clamp(24px, 3vw, 36px); font-weight: 800;

  color: #fff; margin-bottom: 16px;

}

.ai-section-desc {

  text-align: center; color: rgba(255,255,255,0.6); font-size: 15px;

  max-width: 560px; margin: 0 auto 48px; line-height: 1.7;

}

.ai-tools-grid {

  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;

}

.ai-tool-card {

  background: rgba(255,255,255,0.04); border: 1px solid rgba(139,92,246,0.2);

  border-radius: 14px; padding: 28px 24px;

  transition: all 0.3s ease; text-decoration: none; display: block;

}

.ai-tool-card:hover {

  background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.4);

  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(139,92,246,0.15);

}

.ai-tool-icon {

  width: 44px; height: 44px; border-radius: 10px;

  background: linear-gradient(135deg, #7c3aed, #6d28d9);

  display: flex; align-items: center; justify-content: center;

  margin-bottom: 16px; font-size: 20px;

}

.ai-tool-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }

.ai-tool-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }

.ai-tool-card .tool-tag {

  display: inline-block; font-size: 11px; padding: 3px 10px;

  border-radius: 12px; background: rgba(139,92,246,0.15);

  color: #B8B0FE; border: 1px solid rgba(139,92,246,0.3);

}

.ai-articles-grid {

  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;

}

.ai-article-card {

  background: #fff; border-radius: 14px; overflow: hidden;

  border: 1px solid #e5e7eb; transition: all 0.3s ease;

  display: flex; flex-direction: column;

}

.ai-article-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }

.ai-article-card .article-thumb {

  height: 160px; background: linear-gradient(135deg, #1a1040, #2d1b69);

  display: flex; align-items: center; justify-content: center;

  font-size: 40px; color: rgba(255,255,255,0.15);

}

.ai-article-card .article-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.ai-article-card .article-cat { font-size: 11px; color: #A29BFE; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }

.ai-article-card h3 { font-size: 15px; font-weight: 700; color: #1e3a5f; margin-bottom: 8px; line-height: 1.5; flex: 1; }

.ai-article-card .article-meta { font-size: 12px; color: #9ca3af; margin-top: auto; padding-top: 12px; border-top: 1px solid #f3f4f6; }

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-ai-detection.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-blog.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-cases.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-contact.php ===== */

.contact-body {

  padding: 80px 0;

  background: #f8fafc;

}

.contact-grid {

  display: grid;

  grid-template-columns: 1fr 420px;

  gap: 48px;

  align-items: start;

}

.form-panel {

  background: #fff;

  border: 1px solid #e2e8f0;

  border-radius: 24px;

  padding: 48px 40px;

  box-shadow: 0 4px 24px rgba(0,0,0,0.04);

}

.form-panel h2 {

  font-size: 26px; font-weight: 800; color: #0f172a; margin-bottom: 8px;

}

.form-panel > p { font-size: 15px; color: #64748b; margin-bottom: 32px; }

.form-group { margin-bottom: 24px; }

.form-group label {

  display: block; font-size: 14px; font-weight: 600;

  color: #1e293b; margin-bottom: 8px;

}

.form-group label span { color: #ef4444; margin-left: 2px; }

.form-input {

  width: 100%; padding: 12px 16px;

  border: 1.5px solid #e2e8f0; border-radius: 10px;

  font-size: 15px; color: #0f172a;

  transition: border-color 0.3s, box-shadow 0.3s;

  background: #fff;

  box-sizing: border-box;

}

.form-input:focus {

  outline: none;

  border-color: #FF9800;

  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);

}

.form-input::placeholder { color: #94a3b8; }

select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

textarea.form-input { resize: vertical; min-height: 130px; }

.form-submit {

  width: 100%; padding: 16px;

  background: linear-gradient(135deg, #FF9800, #FFB74D);

  color: #0a0e27; font-size: 16px; font-weight: 700;

  border: none; border-radius: 10px; cursor: pointer;

  transition: all 0.3s;

  margin-top: 8px;

}

.form-submit:hover { background: linear-gradient(135deg, #FFB74D, #f0cb6b); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,168,83,0.3); }

.form-privacy { font-size: 13px; color: #94a3b8; text-align: center; margin-top: 16px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.info-card {

  background: #fff; border: 1px solid #e2e8f0;

  border-radius: 20px; padding: 28px;

  transition: all 0.3s;

}

.info-card:hover { border-color: #FF9800; box-shadow: 0 8px 40px rgba(212,168,83,0.08); transform: translateY(-4px); }

.info-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.info-icon-wrap {

  width: 48px; height: 48px; border-radius: 12px;

  display: flex; align-items: center; justify-content: center;

  flex-shrink: 0;

}

.info-icon-wrap.navy { background: linear-gradient(135deg, #1e3a5f, #1e40af); }

.info-icon-wrap.amber { background: linear-gradient(135deg, #d97706, #f59e0b); }

.info-icon-wrap.teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }

.info-icon-wrap svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.5; }

.info-card-header h3 { font-size: 16px; font-weight: 700; color: #0f172a; }

.info-card p { font-size: 14px; color: #64748b; line-height: 1.7; }

.info-card a { color: #1e3a5f; font-weight: 600; text-decoration: none; }

.info-card a:hover { color: #FF9800; }

.faq-contact { padding: 80px 0; background: #fff; }

.faq-contact h2 { font-size: 28px; font-weight: 800; color: #0f172a; text-align: center; margin-bottom: 48px; }

.faq-item {

  border: 1px solid #e2e8f0; border-radius: 14px;

  margin-bottom: 12px; overflow: hidden;

  transition: border-color 0.3s;

}

.faq-item:hover { border-color: #FF9800; }

.faq-q {

  width: 100%; background: none; border: none;

  padding: 20px 24px; font-size: 16px; font-weight: 600;

  color: #1e293b; text-align: left; cursor: pointer;

  display: flex; justify-content: space-between; align-items: center;

}

.faq-icon { color: #FF9800; font-size: 12px; transition: transform 0.3s; }

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; }

.faq-item.open .faq-a { max-height: 400px; }

.faq-a p { padding: 0 24px 20px; font-size: 15px; color: #64748b; line-height: 1.7; }

@media (max-width: 900px) {

  .contact-grid { grid-template-columns: 1fr; }

  .form-panel { padding: 32px 24px; }

}

@media (max-width: 600px) {

}

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-gov-sites.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-pricing.php ===== */

.pricing-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 24px;

  max-width: 960px;

  margin: 0 auto;

}

.pricing-card {

  background: #fff; border-radius: 16px; padding: 36px 32px;

  border: 1px solid #e5e7eb;

  position: relative;

  transition: box-shadow 0.3s ease;

}

.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.pricing-card.featured {

  border: 2px solid #FF9800;

  box-shadow: 0 8px 32px rgba(212,168,83,0.15);

}

.pricing-card .card-badge {

  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);

  background: linear-gradient(135deg, #FF9800, #FFB74D);

  color: #0a0e27; font-size: 12px; font-weight: 700;

  padding: 4px 20px; border-radius: 20px; white-space: nowrap;

  letter-spacing: 1px;

}

.pricing-card .price-label { font-size: 13px; color: #6b7280; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }

.pricing-card .price-main {

  font-size: 48px; font-weight: 900; color: #1e3a5f;

  line-height: 1; margin-bottom: 4px;

}

.pricing-card .price-sub { font-size: 14px; color: #9ca3af; margin-bottom: 24px; }

.pricing-card h3 { font-size: 20px; font-weight: 700; color: #1e3a5f; margin-bottom: 10px; }

.pricing-card .desc { font-size: 14px; color: #6b7280; line-height: 1.7; margin-bottom: 24px; }

.pricing-card .feature-list { list-style: none; padding: 0; margin: 0 0 28px; }

.pricing-card .feature-list li {

  font-size: 14px; color: #374151; padding: 7px 0;

  border-bottom: 1px solid #f3f4f6;

  display: flex; align-items: flex-start; gap: 8px;

}

.pricing-card .feature-list li::before {

  content: '✓'; color: #10b981; font-weight: 700; flex-shrink: 0; margin-top: 1px;

}

.pricing-card .card-cta {

  display: block; text-align: center; padding: 13px 24px;

  border-radius: 8px; font-size: 15px; font-weight: 600;

  text-decoration: none; transition: all 0.25s ease;

}

.pricing-card.featured .card-cta {

  background: linear-gradient(135deg, #1e3a5f, #0f172a);

  color: #FF9800; border: 1px solid rgba(212,168,83,0.4);

}

.pricing-card.featured .card-cta:hover {

  background: linear-gradient(135deg, #0f172a, #1e3a5f);

  box-shadow: 0 4px 20px rgba(212,168,83,0.25);

}

.pricing-card .card-cta.secondary {

  background: #f8fafc; color: #1e3a5f; border: 1px solid #e5e7eb;

}

.pricing-card .card-cta.secondary:hover { background: #1e3a5f; color: #fff; }

.process-grid {

  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 24px;

}

.process-step {

  text-align: center; padding: 28px 20px;

  background: #fff; border-radius: 12px;

  border: 1px solid #e5e7eb;

}

.process-step .step-num {

  width: 40px; height: 40px; border-radius: 50%;

  background: linear-gradient(135deg, #1e3a5f, #0f172a);

  color: #FF9800; font-size: 16px; font-weight: 800;

  display: flex; align-items: center; justify-content: center;

  margin: 0 auto 16px;

}

.process-step h4 { font-size: 15px; font-weight: 700; color: #1e3a5f; margin-bottom: 8px; }

.process-step p { font-size: 13px; color: #6b7280; line-height: 1.6; }

.faq-item { border-bottom: 1px solid #e5e7eb; padding: 20px 0; }

.faq-item:last-child { border-bottom: none; }

.faq-item .q { font-size: 15px; font-weight: 600; color: #1e3a5f; margin-bottom: 10px; }

.faq-item .a { font-size: 14px; color: #6b7280; line-height: 1.7; }

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-seo.php ===== */

.seo-viz {

  background: rgba(124,45,18,0.6);

  border: 1px solid rgba(251,146,60,0.2);

  border-radius: 16px;

  padding: 28px;

  position: relative;

  z-index: 1;

  backdrop-filter: blur(10px);

}

.seo-viz .viz-header {

  font-size: 11px;

  color: rgba(255,255,255,0.3);

  margin-bottom: 20px;

  letter-spacing: 1px;

  text-transform: uppercase;

}

.seo-viz .metric-row {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 12px 0;

  border-bottom: 1px solid rgba(255,255,255,0.08);

}

.seo-viz .metric-row:last-child {

  border-bottom: none;

}

.seo-viz .metric-name {

  font-size: 13px;

  color: rgba(255,255,255,0.6);

}

.seo-viz .metric-value {

  font-size: 24px;

  font-weight: 800;

  background: linear-gradient(135deg, #FFB74D, #FFCC02);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}

.seo-viz .metric-change {

  font-size: 12px;

  color: #10b981;

  font-weight: 600;

}

.seo-viz .keyword-list {

  margin-top: 16px;

  padding-top: 16px;

  border-top: 1px solid rgba(255,255,255,0.08);

}

.seo-viz .keyword-item {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 6px 0;

  font-size: 12px;

  color: rgba(255,255,255,0.5);

}

.seo-viz .keyword-rank {

  background: linear-gradient(135deg, #FF9800, #E65100);

  color: #fff;

  font-size: 10px;

  font-weight: 700;

  padding: 2px 8px;

  border-radius: 4px;

  min-width: 32px;

  text-align: center;

}

.seo-stat {

  background: rgba(255,255,255,0.03) !important;

  border: 1px solid rgba(251,146,60,0.15) !important;

  border-radius: 16px !important;

  padding: 32px 24px !important;

  text-align: center !important;

  transition: all 0.3s ease;

}

.seo-stat:hover {

  border-color: rgba(251,146,60,0.4) !important;

  transform: translateY(-4px);

}

.seo-stat-number {

  font-size: 48px;

  font-weight: 900;

  line-height: 1;

  background: linear-gradient(135deg, #FFB74D, #FFCC02);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  letter-spacing: -2px;

}

.seo-stat-label {

  font-size: 13px;

  color: rgba(255,255,255,0.45);

  margin-top: 8px;

  letter-spacing: 0.5px;

}

.seo-card {

  background: rgba(255,255,255,0.03) !important;

  border: 1px solid rgba(251,146,60,0.12) !important;

  border-radius: 16px !important;

  padding: 32px !important;

  height: 100% !important;

  transition: all 0.3s ease;

}

.seo-card:hover {

  background: rgba(251,146,60,0.06) !important;

  border-color: rgba(251,146,60,0.3) !important;

}

.seo-icon {

  width: 56px;

  height: 56px;

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

}

.seo-icon.orange { background: linear-gradient(135deg, #FF9800, #E65100); }

.seo-icon.amber { background: linear-gradient(135deg, #F57C00, #E65100); }

.seo-icon.red { background: linear-gradient(135deg, #FF9800, #E65100); }

.seo-icon.yellow { background: linear-gradient(135deg, #FFB74D, #E65100); }

.seo-timeline {

  display: flex;

  justify-content: space-between;

  position: relative;

}

.seo-timeline::before {

  content: '';

  position: absolute;

  top: 28px;

  left: 10%;

  right: 10%;

  height: 2px;

  background: linear-gradient(to right, #FF9800, #F57C00, #FF9800, #FFB74D, #FFB74D);

}

.seo-step {

  text-align: center;

  position: relative;

  flex: 1;

}

.seo-step-number {

  width: 56px;

  height: 56px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  font-weight: 800;

  color: #fff;

  margin: 0 auto 16px;

  position: relative;

  z-index: 1;

}

.seo-step:nth-child(1) .seo-step-number { background: linear-gradient(135deg, #FF9800, #E65100); box-shadow: 0 8px 24px rgba(234,88,12,0.35); }

.seo-step:nth-child(2) .seo-step-number { background: linear-gradient(135deg, #F57C00, #E65100); box-shadow: 0 8px 24px rgba(245,158,11,0.35); }

.seo-step:nth-child(3) .seo-step-number { background: linear-gradient(135deg, #FF9800, #E65100); box-shadow: 0 8px 24px rgba(239,68,68,0.35); }

.seo-step:nth-child(4) .seo-step-number { background: linear-gradient(135deg, #FFB74D, #E65100); box-shadow: 0 8px 24px rgba(234,179,8,0.35); }

.seo-step:nth-child(5) .seo-step-number { background: linear-gradient(135deg, #FFB74D, #F57C00); box-shadow: 0 8px 24px rgba(251,146,60,0.35); }

@media (max-width: 768px) {

  .seo-timeline { flex-direction: column; gap: 24px; }

  .seo-timeline::before { display: none; }

}

.tool-card {

  background: #fff;

  border: 1px solid #e2e8f0;

  border-radius: 12px;

  padding: 16px 20px;

  display: flex;

  align-items: center;

  gap: 12px;

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

}

.tool-card::before {

  content: '';

  position: absolute;

  top: 0; left: 0; right: 0;

  height: 3px;

  background: linear-gradient(90deg, #FF9800, #F57C00);

  opacity: 0;

  transition: opacity 0.3s ease;

}

.tool-card:hover {

  border-color: #FFB74D;

  box-shadow: 0 20px 60px rgba(234,88,12,0.12);

  transform: translateY(-4px);

}

.tool-card:hover::before { opacity: 1; }

.tool-icon-wrap {

  width: 40px;

  height: 40px;

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(234,88,12,0.08);

}

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-services-automation.php ===== */

.auto-stat {

  background: rgba(255,255,255,0.03) !important;

  border: 1px solid rgba(139,92,246,0.15) !important;

  border-radius: 16px !important;

  padding: 32px 24px !important;

  text-align: center !important;

  transition: all 0.3s ease;

}

.auto-stat:hover {

  border-color: rgba(139,92,246,0.4) !important;

  transform: translateY(-4px);

}

.auto-stat-number {

  font-size: 48px;

  font-weight: 900;

  line-height: 1;

  background: linear-gradient(135deg, #FF9800, #FF9800);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  letter-spacing: -2px;

}

.auto-stat-label {

  font-size: 13px;

  color: rgba(255,255,255,0.45);

  margin-top: 8px;

  letter-spacing: 0.5px;

  text-transform: uppercase;

}

.ability-card {

  background: rgba(255,255,255,0.03) !important;

  border: 1px solid rgba(139,92,246,0.12) !important;

  border-radius: 16px !important;

  padding: 32px !important;

  height: 100% !important;

  transition: all 0.3s ease;

}

.ability-card:hover {

  background: rgba(139,92,246,0.06) !important;

  border-color: rgba(139,92,246,0.3) !important;

}

.ability-icon {

  width: 56px;

  height: 56px;

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

}

.ability-icon.purple { background: linear-gradient(135deg, #FF9800, #E65100); }

.ability-icon.blue   { background: linear-gradient(135deg, #FF9800, #1d4ed8); }

.ability-icon.cyan   { background: linear-gradient(135deg, #F57C00, #E65100); }

.scene-card {

  background: #fff;

  border: 1px solid #e2e8f0;

  border-radius: 20px;

  padding: 28px;

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

}

.scene-card::before {

  content: '';

  position: absolute;

  top: 0; left: 0; right: 0;

  height: 3px;

  background: linear-gradient(90deg, #FF9800, #FF9800);

  opacity: 0;

  transition: opacity 0.3s ease;

}

.scene-card:hover {

  border-color: #FFE0B2;

  box-shadow: 0 20px 60px rgba(139,92,246,0.12);

  transform: translateY(-4px);

}

.scene-card:hover::before { opacity: 1; }

.scene-icon-wrap {

  width: 48px;

  height: 48px;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 16px;

}

.arch-timeline {

  display: flex;

  justify-content: space-between;

  position: relative;

}

.arch-timeline::before {

  content: '';

  position: absolute;

  top: 28px;

  left: 10%;

  right: 10%;

  height: 2px;

  background: linear-gradient(to right, #FF9800, #FF9800, #F57C00, #10b981);

}

.arch-step {

  text-align: center;

  position: relative;

  flex: 1;

}

.arch-step-number {

  width: 56px;

  height: 56px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  font-weight: 800;

  color: #fff;

  margin: 0 auto 16px;

  position: relative;

  z-index: 1;

}

.arch-step:nth-child(1) .arch-step-number { background: linear-gradient(135deg, #FF9800, #E65100); box-shadow: 0 8px 24px rgba(139,92,246,0.35); }

.arch-step:nth-child(2) .arch-step-number { background: linear-gradient(135deg, #FF9800, #1d4ed8); box-shadow: 0 8px 24px rgba(59,130,246,0.35); }

.arch-step:nth-child(3) .arch-step-number { background: linear-gradient(135deg, #F57C00, #E65100); box-shadow: 0 8px 24px rgba(6,182,212,0.35); }

.arch-step:nth-child(4) .arch-step-number { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 8px 24px rgba(16,185,129,0.35); }

@media (max-width: 768px) {

  .arch-timeline { flex-direction: column; gap: 24px; }

  .arch-timeline::before { display: none; }

}

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-tech-server.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-tech-wordpress.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}


/* ===== page-tools.php ===== */

@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gov-section {
  padding: 80px 0;
}

.gov-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-section-header {
  margin-bottom: 60px;
}

.gov-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gov-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gov-border);
  transform: translateX(-50%);
}

.gov-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gov-cta .gov-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.gov-cta .gov-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.gov-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gov-gold);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(184,134,11,0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.gov-btn-primary:hover {
  background: #9A6F09;
  box-shadow: 0 6px 16px rgba(184,134,11,0.4);
  color: #FFFFFF;
  text-decoration: none;
}

/* ===== 服务详情页组件（gov-*）补充样式（修复独立页面样式未加载 / 右栏缺失） ===== */
.gov-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gov-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.gov-card {
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gov-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12); }

.gov-card-icon { font-size: 2.1rem; line-height: 1; margin-bottom: 14px; color: #2c3e50; }
.gov-card-title { font-size: 1.18rem; font-weight: 700; color: #14213d; margin-bottom: 10px; }
.gov-card-desc { font-size: .95rem; line-height: 1.75; color: #475569; }

.gov-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gov-checklist { list-style: none; margin: 0; padding: 0; }
.gov-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  line-height: 1.7;
  color: #334155;
}
.gov-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: #16a34a;
  font-weight: 700;
}

.gov-btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #e0b15a, #c8952f);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(200, 149, 47, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gov-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(200, 149, 47, 0.45); color: #fff; }

@media (max-width: 900px) {
  .gov-grid-3, .gov-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gov-split { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .gov-grid-3, .gov-grid-4 { grid-template-columns: 1fr; }
}
