/* /assets/css/style.css */

:root {
  --color-primary: #1F3A5F;
  --color-primary-dark: #162A44;
  --color-secondary: #C0C4C8;
  --color-dark: #111111;
  --color-accent: #F59E0B;
  --color-accent-dark: #D88706;
  --color-bg: #F5F7FA;
  --color-surface: #FFFFFF;
  --color-border: #D9DEE5;
  --color-text: #1E293B;
  --color-text-soft: #64748B;
  --color-success: #0F766E;
  --color-shadow: rgba(17, 17, 17, 0.08);
  --container: 1200px;
  --header-height: 78px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --transition: all 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

body {
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: #fff;
  outline: none;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

th {
  background: #EEF2F6;
  color: var(--color-primary);
  font-weight: 700;
}

iframe {
  width: 100%;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-dark {
  background: linear-gradient(135deg, #162A44 0%, #1F3A5F 100%);
  color: #fff;
}

.section-surface {
  background: var(--color-surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

h1,
h2,
h3,
h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-dark);
  line-height: 1.2;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  color: var(--color-text-soft);
}

.section-dark p,
.section-dark .metric-label,
.section-dark .timeline-copy,
.section-dark .list-muted li,
.section-dark .info-list li,
.section-dark .card p {
  color: rgba(255, 255, 255, 0.82);
}

.lead {
  font-size: 1.12rem;
  line-height: 1.85;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-white,
.text-white p {
  color: #fff;
}

.muted {
  color: var(--color-text-soft);
}

.highlight {
  color: var(--color-accent);
}

.accent-bar {
  width: 74px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  margin: 18px 0 0;
}

.grid-2,
.grid-3,
.grid-4,
.grid-auto {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.flex-row {
  display: flex;
  gap: 18px;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.stack-sm > * + * {
  margin-top: 12px;
}

.stack-md > * + * {
  margin-top: 18px;
}

.stack-lg > * + * {
  margin-top: 24px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 58, 95, 0.18);
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(31, 58, 95, 0.2);
  background: transparent;
  color: var(--color-primary);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(31, 58, 95, 0.05);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192, 196, 200, 0.4);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2A4D79 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 58, 95, 0.2);
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.1;
}

.brand-text span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--color-text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-dark);
  position: relative;
  transition: var(--transition);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-primary);
  background: rgba(31, 58, 95, 0.08);
}

.nav-cta .btn {
  min-height: 46px;
  padding-inline: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 30%),
    linear-gradient(135deg, #152942 0%, #1F3A5F 55%, #244A78 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .hero-badges li {
  color: #fff;
}

.hero-copy .lead {
  max-width: 640px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-top: 26px;
}

.hero-badges li {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-panel,
.card,
.stat-card,
.info-panel,
.process-card,
.pricing-card,
.blog-card,
.product-card,
.case-card,
.team-card,
.faq-item,
.contact-card,
.download-card,
.policy-card {
  background: var(--color-surface);
  border: 1px solid rgba(192, 196, 200, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px var(--color-shadow);
}

.hero-panel {
  padding: 24px;
}

.hero-panel .placeholder {
  min-height: 430px;
}

.card {
  padding: 26px;
  height: 100%;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(31, 58, 95, 0.08);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.15rem;
  font-weight: 800;
}

.card h3,
.card h4 {
  margin-bottom: 10px;
}

.card p + ul,
.card p + ol,
.card .link-arrow {
  margin-top: 16px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
}

.link-arrow:hover {
  color: var(--color-accent);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-card,
.stat-card {
  padding: 24px;
}

.metric-value {
  display: block;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.section-dark .metric-value {
  color: #fff;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--color-text-soft);
  font-weight: 600;
}

.list-check,
.list-muted,
.info-list,
.footer-links {
  list-style: none;
}

.list-check li,
.info-list li,
.list-muted li {
  position: relative;
  padding-left: 26px;
}

.list-check li + li,
.info-list li + li,
.list-muted li + li {
  margin-top: 10px;
}

.list-check li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.12);
}

.list-muted li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: var(--color-secondary);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-pill {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(31, 58, 95, 0.05);
  border: 1px solid rgba(31, 58, 95, 0.08);
}

.feature-pill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  padding: 24px 18px;
  text-align: center;
}

.process-step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
}

.process-grid .process-card:last-child::after {
  display: none;
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(31, 58, 95, 0.16);
}

.timeline-item {
  position: relative;
  padding: 0 0 28px 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  background: rgba(31, 58, 95, 0.08);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline-copy {
  color: var(--color-text-soft);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.04);
}

.compare-table td:first-child,
.compare-table th:first-child {
  min-width: 160px;
}

.filter-bar,
.shop-toolbar,
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(31, 58, 95, 0.06);
}

.product-card,
.blog-card,
.case-card,
.team-card,
.download-card {
  overflow: hidden;
  height: 100%;
}

.product-card-body,
.blog-card-body,
.case-card-body,
.team-card-body,
.download-card-body {
  padding: 24px;
}

.product-meta,
.blog-meta,
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(31, 58, 95, 0.06);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
}

.quote-box,
.cta-box,
.banner-box {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, #274C78 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote-box::before,
.cta-box::before,
.banner-box::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.18);
}

.quote-box h2,
.quote-box h3,
.cta-box h2,
.cta-box h3,
.banner-box h2,
.banner-box h3,
.quote-box p,
.cta-box p,
.banner-box p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  color: var(--color-dark);
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.active .faq-answer {
  display: block;
}

.form-card {
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid rgba(192, 196, 200, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px var(--color-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.contact-card {
  padding: 26px;
}

.contact-list {
  list-style: none;
}

.contact-list li + li {
  margin-top: 14px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 360px;
  box-shadow: 0 16px 36px var(--color-shadow);
}

.placeholder {
  width: 100%;
  min-height: 260px;
  padding: 20px;
  border: 1px dashed rgba(31, 58, 95, 0.28);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(192, 196, 200, 0.28), rgba(224, 228, 232, 0.5));
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.placeholder-label {
  width: 100%;
  min-height: 100%;
  border-radius: calc(var(--radius-md) - 4px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.placeholder-label img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(31, 58, 95, 0.12);
  background: #E9EDF2;
}

.placeholder-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
}

.placeholder-copy {
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.site-footer {
  background: #0F1824;
  color: rgba(255, 255, 255, 0.84);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-brand {
  max-width: 320px;
}

.footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact {
  list-style: none;
}

.footer-contact li + li {
  margin-top: 12px;
}

.footer-contact strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.footer-bottom {
  margin-top: 42px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--color-primary);
}

.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #EEF3F8 0%, #F8FAFC 100%);
  border-bottom: 1px solid rgba(192, 196, 200, 0.4);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 30px;
  align-items: center;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.kpi-box {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(192, 196, 200, 0.45);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.kpi-box strong {
  display: block;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.kpi-box span {
  display: block;
  margin-top: 6px;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.policy-content,
.article-content {
  display: grid;
  gap: 22px;
}

.policy-card,
.article-card {
  padding: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.12);
  color: #A15E05;
  font-size: 0.84rem;
  font-weight: 700;
}

.empty-note {
  padding: 18px 20px;
  border-left: 4px solid var(--color-accent);
  background: rgba(245, 158, 11, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #8A570B;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-weight: 700;
}

.pagination a:hover,
.pagination .active {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(31, 58, 95, 0.06);
}

@media (max-width: 1180px) {
  .site-nav a {
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .page-hero-grid,
  .contact-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .metric-grid,
  .feature-band,
  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(192, 196, 200, 0.4);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav-wrap.open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    width: 100%;
    justify-content: space-between;
    border: 1px solid rgba(192, 196, 200, 0.38);
    background: #fff;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .process-card::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 58px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .hero-grid {
    padding: 56px 0 44px;
    gap: 26px;
  }

  .hero-panel,
  .card,
  .stat-card,
  .contact-card,
  .form-card,
  .quote-box,
  .cta-box,
  .banner-box,
  .policy-card {
    padding: 22px;
  }

  .hero-panel .placeholder {
    min-height: 300px;
  }

  .placeholder {
    min-height: 220px;
    padding: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .filter-bar,
  .shop-toolbar,
  .blog-toolbar,
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .filter-chip {
    width: 100%;
    justify-content: center;
  }

  .btn-group {
    flex-direction: column;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 15px;
  }

  .brand-text span {
    letter-spacing: 0.08em;
  }

  .page-hero {
    padding: 56px 0 44px;
  }

  .kpi-box,
  .metric-card,
  .stat-card {
    padding: 18px;
  }

  th,
  td {
    padding: 12px;
  }
}

.section-dark .process-card {
  background: #ffffff;
  color: #111111;
}

.section-dark .process-card h3 {
  color: #1F3A5F;
}

.section-dark .process-card p {
  color: #555555;
}

.section-dark .process-step {
  background: #1F3A5F;
  color: #ffffff;
}

.section-dark .card {
  background-color: #e5e5e5;
  color: #334155;
}

.section-dark .card h3,
.section-dark .card h4 {
  color: #1F2937;
}

.section-dark .card p {
  color: #475569;
}

.site-footer .brand-text strong {
  color: #ffffff;
}

.site-footer .brand-text span {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav ul {
  flex-wrap: nowrap;
  gap: 2px;
}

.site-nav a {
  padding: 8px 10px;   /* 原来是 10px 14px */
  font-size: 0.88rem;
}