:root {
  --primary: #0b3d91;
  --primary-dark: #082f70;
  --primary-soft: rgba(11, 61, 145, 0.12);
  --teal: #00a896;
  --teal-dark: #00857a;
  --teal-soft: rgba(0, 168, 150, 0.12);
  --accent: #d4af37;
  --accent-dark: #b8952c;
  --accent-soft: rgba(212, 175, 55, 0.16);
  --red: #d62828;
  --red-soft: rgba(214, 40, 40, 0.12);
  --dark: #08285c;
  --dark-2: #0b3d91;
  --dark-3: #12489f;
  --text: #1f2a3d;
  --muted: #64748b;
  --bg: #f4f8fd;
  --bg-alt: #e6ebf2;
  --white: #ffffff;
  --border: #dbe4f0;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(11, 61, 145, 0.08);
  --shadow: 0 12px 30px rgba(11, 61, 145, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 61, 145, 0.2);
  --container: 1200px;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  background: #0b3d91;
  overflow-x: hidden;
  --sx: 1;
}

[dir="rtl"] {
  --sx: -1;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body > section,
body > #site-header,
body > #site-footer {
  transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.4, 0.05, 0.2, 1);
}

html.js:not(.page-ready) body > section,
html.js:not(.page-ready) body > #site-header,
html.js:not(.page-ready) body > #site-footer {
  opacity: 0;
  transform: translateY(16px);
}

html.page-leave body > section,
html.page-leave body > #site-header,
html.page-leave body > #site-footer {
  opacity: 0;
  transform: translateY(-12px) scale(0.994);
}

html.page-leave {
  pointer-events: none;
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(105deg, #0b3d91 0%, #0a356f 46%, #08285c 100%);
  box-shadow: -34px 0 70px rgba(0, 0, 0, 0.45);
  transform-origin: left center;
  transform: translateX(calc(var(--sx) * 100%)) rotateY(calc(var(--sx) * -22deg));
  opacity: 0;
  transition: transform 0.64s cubic-bezier(0.4, 0.05, 0.2, 1), opacity 0.45s ease;
}

.page-curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 46%, rgba(255, 255, 255, 0) 100%);
}

.page-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 70px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

html.js:not(.page-ready) .page-curtain {
  transform: translateX(0) rotateY(0);
  opacity: 1;
}

html.page-ready .page-curtain {
  transform: translateX(calc(var(--sx) * -100%)) rotateY(calc(var(--sx) * 22deg));
  opacity: 0;
}

html.page-leave .page-curtain {
  transform: translateX(0) rotateY(0);
  opacity: 1;
}

[dir="rtl"] .page-curtain {
  transform-origin: right center;
  box-shadow: 34px 0 70px rgba(0, 0, 0, 0.45);
}

[dir="rtl"] .page-curtain::after {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.hero-inner,
.page-hero .container {
  animation: contentIn 0.7s 0.15s both cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 99999;
  opacity: 0;
  background: linear-gradient(90deg, var(--accent), #e6c85f);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
  transition: width 0.5s cubic-bezier(0.4, 0.05, 0.2, 1), opacity 0.3s ease;
}

html.page-leave .page-progress {
  width: 100%;
  opacity: 1;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 42px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.topbar-left .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-right a,
.topbar-right span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.25s;
}

.topbar-right a:hover {
  color: var(--accent);
}

.topbar svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--dark-2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 6px 16px rgba(3, 20, 55, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text b {
  display: block;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 1px;
  white-space: nowrap;
}

.brand-text span {
  display: block;
  font-size: 9.5px;
  letter-spacing: 1.1px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 0 20px;
  height: var(--header-h);
  line-height: var(--header-h);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  transition: color 0.25s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.28s;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 22px;
}

.main-nav a.active {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}

.header-cta:hover {
  background: #e0c257;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.mobile-nav a.active {
  color: var(--accent);
  background: rgba(212, 175, 55, 0.12);
}

.mobile-nav.open {
  display: block;
}

.hero {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(100deg, rgba(8, 30, 74, 0.9) 0%, rgba(11, 61, 145, 0.66) 38%, rgba(15, 74, 165, 0.32) 72%, rgba(8, 40, 92, 0.56) 100%),
    linear-gradient(180deg, rgba(8, 30, 74, 0.42) 0%, rgba(8, 30, 74, 0) 30%, rgba(8, 30, 74, 0.46) 100%),
    url("../img/bg.jpg") center 35% / cover no-repeat,
    #0b3d91;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 40% 40%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 40% 40%, #000 10%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px 0 130px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: #f2d488;
  font-size: 13.5px;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}

.hero h1 {
  font-size: 58px;
  line-height: 1.14;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero .hero-en {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero .hero-slogan {
  display: inline-block;
  font-size: 21px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 3px solid var(--primary);
}

.hero p.lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin-bottom: 38px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.28s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(11, 61, 145, 0.34);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--dark-2);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-3px);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  margin-bottom: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat-card {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section.dark .stat-num {
  color: var(--accent);
}

.section.dark .section-head .eyebrow {
  color: var(--accent);
}

.section.dark .card-icon svg {
  fill: var(--accent);
}

.stat-num small {
  font-size: 18px;
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  margin-top: 6px;
}

.stat-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 68px 0;
}

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

.section.dark {
  background: var(--dark);
  color: #fff;
}

.section-head {
  margin-bottom: 52px;
}

.section-head.center {
  text-align: center;
}

.section-head .eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 1px;
  color: var(--dark);
  font-weight: 800;
}

.section.dark .section-head h2 {
  color: #fff;
}

.section-head .line {
  display: block;
  width: 46px;
  height: 3px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 2px;
}

.section-head.center .line {
  margin-left: auto;
  margin-right: auto;
}

.section-head p.sub {
  margin-top: 16px;
  color: var(--muted);
  max-width: 720px;
  font-size: 15.5px;
}

.section-head.center p.sub {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.35s;
}

.card:hover::after {
  width: 100%;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--teal);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--dark);
}

.card p {
  font-size: 14.5px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 30px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.28s;
}

.feature-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.feature-item .fi-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.feature-item b {
  display: block;
  font-size: 15.5px;
  color: var(--dark);
  margin-bottom: 3px;
}

.feature-item span {
  font-size: 13.5px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.prose p {
  color: #444;
  font-size: 15.5px;
  margin-bottom: 16px;
  text-align: justify;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose .hl {
  color: var(--primary);
  font-weight: 700;
}

.visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(0, 168, 150, 0.34), transparent 60%),
    linear-gradient(150deg, #3a5f91, #2a4a76);
  min-height: 380px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.visual .visual-badge {
  position: absolute;
  left: 28px;
  top: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 1px;
  backdrop-filter: blur(6px);
}

.visual .visual-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px;
}

.visual .visual-center .big {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(120deg, #fff, #e6c85f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.visual .visual-center .cap {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 2px;
  margin-top: 6px;
}

.visual .visual-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 36px;
  width: 100%;
}

.visual .vg-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(4px);
}

.visual .vg-item b {
  display: block;
  font-size: 24px;
  color: var(--accent);
}

.visual .vg-item span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-table tr {
  border-bottom: 1px solid var(--border);
}

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

.info-table th {
  text-align: left;
  padding: 17px 24px;
  width: 190px;
  background: var(--bg-alt);
  color: var(--dark);
  font-weight: 700;
  font-size: 14.5px;
  vertical-align: top;
  border-right: 1px solid var(--border);
}

.info-table td {
  padding: 17px 24px;
  font-size: 14.5px;
  color: #46505f;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table thead th {
  background: var(--dark-2);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 16px 22px;
  letter-spacing: 0.5px;
}

.data-table tbody td {
  padding: 15px 22px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
  color: #46505f;
}

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

.data-table tbody tr:hover td {
  background: #fafbfc;
}

.tag {
  display: inline-block;
  font-size: 12.5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
  white-space: nowrap;
}

.tag.green {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.tag.red {
  background: var(--red-soft);
  color: var(--red);
}

.tag.gray {
  background: var(--bg-alt);
  color: #5b6472;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--accent), rgba(212, 175, 55, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
}

.timeline-item b {
  display: block;
  font-size: 15.5px;
  color: var(--dark);
  margin-bottom: 4px;
}

.timeline-item span {
  font-size: 14px;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  transition: 0.3s;
}

.value-card:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card .v-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
  transition: 0.3s;
}

.value-card:hover .v-icon {
  background: var(--primary);
  color: #fff;
}

.value-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.value-card:hover h3 {
  color: #fff;
}

.value-card p {
  font-size: 13.8px;
  color: var(--muted);
  transition: color 0.3s;
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(8, 30, 74, 0.92) 0%, rgba(11, 61, 145, 0.72) 55%, rgba(15, 74, 165, 0.52) 100%),
    url("../img/bg.jpg") center 30% / cover no-repeat,
    #0b3d91;
  color: #fff;
  padding: 76px 0 70px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: 42px;
  letter-spacing: 1px;
  font-weight: 800;
  line-height: 1.2;
}

.page-hero p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 700px;
  font-size: 15.5px;
}

.breadcrumb {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

.cta-band {
  position: relative;
  background:
    radial-gradient(700px 300px at 15% 20%, rgba(212, 175, 55, 0.28), transparent 62%),
    linear-gradient(120deg, #0b3d91, #08285c);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 54px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}

.cta-band .cta-text {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-size: 30px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.cta-band .cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  transition: 0.3s;
}

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

.contact-card .c-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--primary), var(--teal));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(11, 61, 145, 0.3);
}

.contact-card .c-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.contact-card h3 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--muted);
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--primary);
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 70px;
  margin-top: 0;
}

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

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13.8px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.footer-slogan {
  display: inline-block;
  font-size: 13.5px;
  color: var(--accent);
  letter-spacing: 1.5px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 13.8px;
  transition: 0.25s;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 11px;
  font-size: 13.5px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

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

.to-top {
  position: fixed;
  right: 26px;
  bottom: 32px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.3s;
  z-index: 800;
  box-shadow: 0 12px 24px rgba(11, 61, 145, 0.34);
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--primary-dark);
}

.to-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.lang-switch {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.lang-trigger:hover,
.lang-switch:focus-within .lang-trigger {
  border-color: rgba(212, 175, 55, 0.8);
  background: rgba(212, 175, 55, 0.16);
  color: #fff;
}

.lang-trigger .flag,
.lang-option .flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.lang-trigger .caret {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.7;
  transition: transform 0.25s;
}

.lang-switch:hover .caret,
.lang-switch:focus-within .caret {
  transform: rotate(180deg);
  opacity: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 176px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 1000;
}

.lang-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 13.5px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  text-align: start;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lang-option.active {
  color: #fff;
  background: rgba(212, 175, 55, 0.18);
}

.lang-option.active::after {
  content: "";
  margin-inline-start: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

.mobile-lang {
  padding: 16px 24px 20px;
}

.mobile-lang .lang-trigger {
  display: none;
}

.mobile-lang .lang-menu {
  position: static;
  min-width: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-lang .lang-option {
  width: auto;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.mobile-lang .lang-option.active {
  background: var(--primary);
}

.mobile-lang .lang-option.active::after {
  display: none;
}

[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, "Noto Naskh Arabic", "Microsoft YaHei", sans-serif;
}

html[lang="ar"] .eyebrow,
html[lang="ar"] .hero-en,
html[lang="ar"] .brand-text span,
html[lang="ar"] .hero .hero-slogan,
html[lang="ar"] .footer-slogan,
html[lang="ar"] .visual .visual-center .cap,
html[lang="ar"] .page-hero .eyebrow {
  letter-spacing: 0;
}

html[lang="ar"] .hero h1,
html[lang="ar"] .section-head h2,
html[lang="ar"] .page-hero h1 {
  letter-spacing: 0;
}

[dir="rtl"] .hero .hero-slogan,
[dir="rtl"] .footer-slogan {
  padding-left: 0;
  padding-right: 18px;
  border-left: none;
  border-right: 3px solid var(--accent);
}

[dir="rtl"] .footer-col h4::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .card::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .feature-item:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .footer-col ul li a:hover {
  padding-left: 0;
  padding-right: 5px;
}

[dir="rtl"] .timeline {
  padding-left: 0;
  padding-right: 30px;
}

[dir="rtl"] .timeline::before {
  left: auto;
  right: 8px;
}

[dir="rtl"] .timeline-item::before {
  left: auto;
  right: -29px;
}

[dir="rtl"] .visual .visual-badge {
  left: auto;
  right: 28px;
}

[dir="rtl"] .info-table th {
  text-align: right;
  border-right: none;
  border-left: 1px solid var(--border);
}

[dir="rtl"] .data-table thead th,
[dir="rtl"] .data-table tbody td {
  text-align: right;
}

[dir="rtl"] .footer-contact svg,
[dir="rtl"] .topbar svg {
  transform: none;
}

[dir="rtl"] .breadcrumb span {
  display: inline-block;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-40 {
  margin-top: 40px;
}

.mt-56 {
  margin-top: 56px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

@media (max-width: 1080px) {
  .brand-text span {
    display: none;
  }

  .main-nav a {
    padding: 0 13px;
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

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

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero .hero-slogan {
    font-size: 17px;
  }

  .hero-inner {
    padding: 78px 0 96px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .grid-3,
  .grid-4,
  .value-grid,
  .contact-grid,
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head h2 {
    font-size: 29px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .cta-band {
    padding: 40px 32px;
  }

  .cta-band h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .topbar-mail {
    display: none;
  }

  .topbar-left {
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .topbar .container {
    height: 40px;
  }

  .lang-trigger {
    padding: 6px 10px;
    font-size: 12px;
    gap: 6px;
  }

  .lang-trigger .lang-current {
    display: none;
  }

  .site-header .container {
    height: 64px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    padding: 4px;
    border-radius: 10px;
  }

  .site-header .brand-text b,
  .footer-brand .brand-text b {
    font-size: 15px;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav a {
    padding: 13px 18px;
  }

  .hero {
    min-height: 440px;
  }

  .hero-inner {
    padding: 54px 0 82px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .hero .hero-en {
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .hero p.lead {
    font-size: 14px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-stats {
    margin-top: -54px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    padding: 22px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stat-card:nth-child(2n) {
    border-right: none;
  }

  .stat-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 30px;
  }

  .stat-num small {
    font-size: 14px;
  }

  .stat-label {
    font-size: 13.5px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: 25px;
  }

  .section-head .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .value-card {
    padding: 26px 18px;
  }

  .card {
    padding: 26px 22px;
  }

  .feature-item {
    padding: 15px 16px;
  }

  .split,
  .split.reverse {
    gap: 28px;
  }

  .visual {
    min-height: 300px;
  }

  .visual .visual-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    gap: 10px;
  }

  .visual .visual-center {
    padding: 28px 20px;
  }

  .visual .visual-center .big {
    font-size: 42px;
  }

  .visual .visual-center .cap {
    font-size: 13px;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: auto;
  }

  .info-table th {
    background: transparent;
    color: var(--teal-dark);
    padding: 14px 16px 3px;
    border-right: none;
    font-size: 12.5px;
    letter-spacing: 0.5px;
  }

  .info-table td {
    padding: 0 16px 14px;
    font-size: 14px;
  }

  .info-table tr:last-child td {
    padding-bottom: 16px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .data-table thead th,
  .data-table tbody td {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 13.5px;
  }

  .page-hero {
    padding: 48px 0 44px;
    background-position: center 26%;
  }

  .page-hero h1 {
    font-size: 25px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .breadcrumb {
    margin-top: 16px;
    font-size: 12.5px;
  }

  .timeline {
    padding-left: 24px;
  }

  .cta-band {
    padding: 30px 22px;
    gap: 20px;
  }

  .cta-band h2 {
    font-size: 21px;
  }

  .cta-band p {
    font-size: 14px;
  }

  .cta-band .cta-actions {
    width: 100%;
  }

  .cta-band .cta-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 34px;
  }

  .footer-slogan {
    font-size: 12.5px;
  }

  .footer-bottom {
    font-size: 12px;
    line-height: 1.8;
    padding: 18px 4px;
  }

  .to-top {
    right: 16px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  body {
    line-height: 1.65;
  }

  h1,
  h2,
  h3,
  p,
  a,
  span,
  td,
  th,
  li {
    overflow-wrap: break-word;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 26px;
  }

  .stat-card {
    padding: 18px 12px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .site-header .brand-text b,
  .footer-brand .brand-text b {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js:not(.page-ready) body > section,
  html.js:not(.page-ready) body > #site-header,
  html.js:not(.page-ready) body > #site-footer,
  html.page-leave body > section,
  html.page-leave body > #site-header,
  html.page-leave body > #site-footer {
    opacity: 1;
    transform: none;
  }

  body > section,
  body > #site-header,
  body > #site-footer {
    transition: none;
  }

  .page-curtain,
  .page-progress {
    display: none;
  }

  .hero-inner,
  .page-hero .container {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
