:root {
  --navy: #071b35;
  --blue: #0c315b;
  --gold: #cba45b;
  --pale: #f5f7fa;
  --ink: #15243a;
  --light-blue: #e8f0f8;
  --silver: #9ba9ba;
  --border: #e0e5eb;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.75;
  background: #fff;
}
.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}
.nav {
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px #00142a08;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #603f10;
  font:
    16px Georgia,
    serif;
  letter-spacing: 1.5px;
  text-decoration: none;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: 50% 33%;
  border-radius: 50%;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: #34445b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
  padding: 8px 0;
}
.nav-links a:hover {
  color: #a67a2d;
  border-bottom: 2px solid var(--gold);
}
.lang-switch {
  border: 1px solid #b48c43;
  background: transparent;
  color: #8a6728;
  font:
    600 12px Arial,
    sans-serif;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}
.lang-switch:hover {
  background: #b48c43;
  color: #fff;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #34445b;
  border-radius: 1px;
  transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 99;
  padding: 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu .nav-links a {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f5;
  color: #34445b;
  font-size: 15px;
}
.mobile-menu .nav-links a:hover {
  background: var(--pale);
  border-bottom-color: var(--gold);
}
.mobile-menu .lang-switch {
  display: block;
  margin: 20px auto;
  width: calc(100% - 40px);
}
.hero {
  min-height: 700px;
  color: white;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, #315c8b 0, transparent 25%),
    linear-gradient(110deg, #06172e 0%, #0a315d 54%, #09284b 100%);
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(
      125deg,
      transparent 45%,
      #d1af6930 45.2%,
      transparent 45.5%
    ),
    repeating-linear-gradient(90deg, transparent 0 90px, #ffffff08 91px 92px);
  transform: skewY(-7deg);
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: #dfc384;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: 5px;
  margin: 0 0 12px;
  line-height: 1.2;
  font-weight: 500;
}
.hero h1 small {
  display: block;
  font:
    18px Georgia,
    serif;
  letter-spacing: 4px;
  color: #e4c988;
  margin-top: 18px;
}
.hero p {
  font-size: 18px;
  max-width: 600px;
  color: #e5edf7;
  margin: 28px 0 36px;
  line-height: 1.85;
}
.button {
  display: inline-block;
  padding: 14px 30px;
  text-decoration: none;
  border: 1px solid #d7b76d;
  color: #fff;
  margin-right: 15px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s;
}
.button.primary,
.button:hover {
  background: #c7a158;
  color: #10203b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 161, 88, 0.3);
}
.button.outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.button.outline:hover {
  background: var(--gold);
  color: #10203b;
}
.section {
  padding: 100px 0;
}
.label {
  color: #a77c32;
  font:
    13px Georgia,
    serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.section h2 {
  font-size: 36px;
  margin: 0 0 32px;
  font-weight: 500;
  color: #102844;
  letter-spacing: 2px;
}
.about {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: start;
}
.about p {
  color: #59697a;
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 18px;
}
.about img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(16, 40, 68, 0.15);
}
.factbox {
  padding: 36px;
  border-left: 3px solid var(--gold);
  background: var(--pale);
  border-radius: 0 8px 8px 0;
}
.factbox b {
  display: block;
  color: #173a63;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}
.factbox div {
  margin-bottom: 24px;
  font-size: 14px;
  color: #617084;
  line-height: 1.7;
}
.dark {
  background: var(--navy);
  color: white;
}
.dark h2 {
  color: #fff;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  border: 1px solid #ffffff1f;
  padding: 32px 26px;
  min-height: 240px;
  background: #ffffff08;
  border-radius: 12px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  background: #ffffff15;
  transform: translateY(-6px);
  border-color: #d2ad6340;
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: 0.3s;
}
.card:hover:before {
  opacity: 1;
}
.card .num {
  font:
    36px Georgia,
    serif;
  color: #d2ad63;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #fff;
}
.card p {
  font-size: 14px;
  color: #c3d0df;
  margin: 0;
  line-height: 1.7;
}
.markets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.markets span {
  border: 1px solid #d3b36b40;
  color: #d9be80;
  padding: 8px 15px;
  font-size: 13px;
  border-radius: 20px;
  background: #ffffff08;
}
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.3s;
  background: #fff;
}
.service:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(203, 164, 91, 0.15);
  transform: translateY(-4px);
}
.service h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 500;
  color: #173a63;
}
.service p {
  font-size: 14px;
  color: #637386;
  margin: 0;
  line-height: 1.8;
}
.service ul {
  margin: 12px 0 0;
  padding-left: 20px;
}
.service li {
  font-size: 13px;
  color: #637386;
  margin-bottom: 6px;
}
.partner {
  padding: 50px;
  background: linear-gradient(135deg, #f5f7fa, #e8f0f8);
  border-top: 1px solid #eee;
  border-radius: 16px;
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}
.partner-mark {
  font:
    40px Georgia,
    serif;
  color: #b38a3d;
  min-width: 200px;
  text-align: center;
}
.partner-mark small {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  color: #8a6728;
  margin-top: 8px;
}
.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.3s;
}
.news article:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(16, 35, 58, 0.12);
  border-color: #d2ad6340;
}
.news time {
  color: #ae873e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.news h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 12px 0;
  color: #173a63;
}
.news p {
  font-size: 14px;
  color: #6d7c8c;
  margin: 0;
  line-height: 1.75;
}
.news .read-more {
  display: inline-block;
  margin-top: 16px;
  color: #a67a2d;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.news .read-more:hover {
  text-decoration: underline;
}
.certificate {
  background: var(--pale);
}
.certificate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.certificate p {
  color: #5d6d7e;
  font-size: 15px;
  line-height: 1.8;
}
.certificate a {
  display: block;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 20px 45px rgba(19, 39, 58, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}
.certificate-grid img {
  max-width: 100%;
  height: auto;
  display: block;
}
.certificate a:hover {
  transform: scale(1.02);
}
.certificate img {
  display: block;
  width: 100%;
  border: 10px solid #fff;
}
.vision {
  background: linear-gradient(115deg, #061b35, #0c315b);
  color: white;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.vision:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(203, 164, 91, 0.1) 0,
    transparent 50%
  );
}
.vision .wrap {
  position: relative;
  z-index: 1;
}
.vision h2 {
  color: #fff;
  font-size: 40px;
  margin: 12px 0 40px;
}
.vision p {
  font-size: 16px;
  color: #c3d0df;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.9;
}
.values {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  color: #efd38f;
  font-size: 18px;
}
.values-item {
  padding: 20px 30px;
  border: 1px solid rgba(203, 164, 91, 0.3);
  border-radius: 8px;
  background: rgba(203, 164, 91, 0.05);
}
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}
.contact p {
  color: #5a6b7d;
  font-size: 15px;
  line-height: 1.8;
}
.contact strong {
  display: block;
  color: #173b64;
  margin-top: 16px;
  font-size: 16px;
}
.contact-box {
  background: var(--navy);
  color: #dbe6f2;
  padding: 40px;
  border-radius: 12px;
}
.contact-box h3 {
  color: #d8b76c;
  font-weight: 500;
  margin-top: 0;
  font-size: 20px;
}
.contact-box a {
  color: #fff;
  text-decoration: none;
}
.contact-box p {
  margin: 14px 0;
  line-height: 1.8;
}
.contact-boxes {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: inherit;
  background: #fafbfc;
  transition: 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #10203b;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #b38a3d;
  transform: translateY(-2px);
}
.foot {
  background: #041328;
  color: #8ba0b7;
  text-align: center;
  padding: 32px;
  font-size: 13px;
  border-top: 1px solid #ffffff08;
}
.breadcrumb {
  background: var(--pale);
  padding: 20px 0;
  margin-bottom: 40px;
}
.breadcrumb .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6d7c8c;
  font-size: 14px;
}
.breadcrumb a {
  color: #a67a2d;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: #9ba9ba;
}
.page-title {
  text-align: center;
  margin-bottom: 60px;
}
.page-title h1 {
  font-size: 42px;
  color: #102844;
  margin: 0;
}
.page-title p {
  font-size: 15px;
  color: #6d7c8c;
  margin: 12px 0 0;
}
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), #e0e5eb);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.3s;
}
.timeline-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(203, 164, 91, 0.12);
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: -52px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-date {
  color: #ae873e;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-title {
  font-size: 18px;
  color: #173a63;
  margin: 0 0 10px;
}
.timeline-desc {
  font-size: 14px;
  color: #6d7c8c;
  line-height: 1.7;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: 0.3s;
  position: relative;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 53, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item .overlay span {
  color: #fff;
  font-size: 14px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-item {
  text-align: center;
  padding: 28px;
  background: var(--pale);
  border-radius: 12px;
}
.stat-item .number {
  font:
    48px Georgia,
    serif;
  color: #a67a2d;
  margin: 0;
}
.stat-item .label {
  font-size: 14px;
  color: #6d7c8c;
  margin: 8px 0 0;
}
.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
}
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-member {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.3s;
}
.team-member:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(203, 164, 91, 0.12);
}
.team-member .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d9be80);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font:
    24px Georgia,
    serif;
}
.team-member h4 {
  font-size: 16px;
  color: #173a63;
  margin: 0 0 6px;
}
.team-member p {
  font-size: 13px;
  color: #6d7c8c;
  margin: 0;
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: #173a63;
  transition: 0.3s;
}
.quick-link:hover {
  border-color: var(--gold);
  background: var(--pale);
}
.quick-link .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #d9be80);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10203b;
  font:
    20px Arial,
    sans-serif;
}
.quick-link .text {
  flex: 1;
}
.quick-link .text h4 {
  font-size: 16px;
  margin: 0 0 4px;
}
.quick-link .text p {
  font-size: 13px;
  color: #6d7c8c;
  margin: 0;
}
@media (max-width: 900px) {
  .nav {
    height: 70px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .hero {
    min-height: 600px;
  }
  .section {
    padding: 70px 0;
  }
  .about,
  .contact,
  .certificate-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards,
  .services,
  .news,
  .team {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .partner {
    display: block;
    text-align: center;
  }
  .partner-mark {
    min-width: auto;
    margin-bottom: 20px;
  }
  .values {
    gap: 20px;
    font-size: 15px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-image {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .nav {
    height: 64px;
    padding: 0 16px;
  }
  .nav-right {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-menu.active {
    display: block;
  }
  .brand {
    font-size: 13px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .hero {
    min-height: calc(100svh - 64px);
    padding: 64px 0;
  }
  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: 2px;
  }
  .hero p {
    font-size: 15px;
  }
  .button {
    width: 100%;
    text-align: center;
    margin: 0 0 12px;
    padding: 13px;
  }
  .section {
    padding: 55px 0;
  }
  .section h2 {
    font-size: 28px;
  }
  .cards,
  .services,
  .news,
  .team,
  .stats,
  .gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card {
    min-height: 0;
    padding: 24px;
  }
  .partner {
    padding: 30px;
  }
  .partner-mark {
    font-size: 28px;
  }
  .certificate a {
    max-width: 100%;
  }
  .vision {
    padding: 80px 0;
  }
  .vision h2 {
    font-size: 30px;
  }
  .values {
    display: block;
  }
  .values-item {
    margin-bottom: 12px;
  }
  .contact-box {
    padding: 28px;
  }
  .contact-form {
    padding: 24px;
  }
  .page-title h1 {
    font-size: 32px;
  }
  .timeline-item:before {
    left: -48px;
  }
  .featured-image {
    height: 250px;
  }
  .quick-links {
    grid-template-columns: 1fr;
  }
}

/* 2026 visual refresh */
:root {
  --navy: #071a33;
  --blue: #123c6a;
  --gold: #c89a4b;
  --gold-light: #f5e5c4;
  --ink: #10243d;
  --muted: #607187;
  --border: #dfe7ef;
}
body {
  background: #fcfdff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wrap { width: min(1180px, calc(100% - 48px)); }
.nav {
  height: 84px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16,36,61,.06);
  box-shadow: 0 8px 28px rgba(12,39,69,.05);
}
.brand { gap: 12px; font-size: 15px; line-height: 1.3; }
.brand img { width: 48px; height: 48px; box-shadow: 0 4px 14px rgba(33,55,83,.14); }
.nav-links { gap: clamp(14px, 1.55vw, 25px); }
.nav-links a { position: relative; border: 0 !important; color: #3f5065; }
.nav-links a:after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .25s ease;
}
.nav-links a:hover:after { transform: scaleX(1); }
.lang-switch { border-radius: 999px; padding: 7px 13px; }
.hero {
  min-height: 680px;
  background: radial-gradient(circle at 76% 36%, rgba(60,112,163,.72) 0, transparent 22%), linear-gradient(118deg, #05152d 2%, #0a315d 53%, #071d39 100%);
}
.hero:before {
  content: ""; position: absolute; width: min(50vw, 680px); aspect-ratio: 1; right: -8%; top: 11%;
  border: 1px solid rgba(230,193,119,.25); border-radius: 50%; box-shadow: 0 0 0 48px rgba(230,193,119,.035), 0 0 0 96px rgba(230,193,119,.025);
}
.hero:after { opacity: .72; }
.hero .wrap { padding: 40px 0; }
.eyebrow { font-size: 12px; letter-spacing: 4px; color: #f0ce89; }
.hero h1 { font-size: clamp(44px, 5.7vw, 72px); letter-spacing: .08em; text-shadow: 0 12px 30px rgba(0,0,0,.16); }
.hero h1 small { font-size: 16px; letter-spacing: .25em; }
.hero p { max-width: 580px; font-size: 17px; color: #dbe7f3; }
.button { border-radius: 999px; padding: 13px 27px; letter-spacing: .04em; }
.button.primary, .button:hover { background: linear-gradient(135deg, #e0bd73, #bd8b3d); color: #0b213b; box-shadow: 0 10px 24px rgba(199,161,88,.28); }
.section { padding: 112px 0; }
.section > .wrap > .label, .vision .label { position: relative; padding-left: 18px; letter-spacing: 3px; }
.section > .wrap > .label:before, .vision .label:before { content: ""; position: absolute; left: 0; top: 50%; width: 10px; height: 1px; background: var(--gold); }
.section h2 { font-size: clamp(30px, 3.2vw, 42px); line-height: 1.35; margin-bottom: 28px; }
.section > .wrap > h2 + p { color: var(--muted); font-size: 16px; }
.quick-links { gap: 22px; margin-top: 36px; }
.quick-link { padding: 25px; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(21,47,78,.04); }
.quick-link:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(21,47,78,.10); }
.quick-link .icon { border-radius: 12px; background: linear-gradient(135deg, #f3d89d, #c79749); box-shadow: 0 6px 16px rgba(200,154,75,.22); }
.dark { background: radial-gradient(circle at 86% 10%, #164a7b 0, transparent 31%), #071a33; }
.cards { gap: 18px; }
.card { min-height: 260px; padding: 34px 28px; border-radius: 14px; background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.025)); }
.card:hover { box-shadow: 0 18px 35px rgba(0,0,0,.2); }
.services { gap: 18px; }
.service { padding: 30px 26px; border-radius: 14px; box-shadow: 0 6px 22px rgba(23,58,99,.035); }
.service:hover { box-shadow: 0 16px 30px rgba(23,58,99,.10); }
.service h3:before { content: ""; display: block; width: 30px; height: 2px; background: var(--gold); margin-bottom: 16px; }
.partner { padding: 56px; border: 1px solid #e5e9ee; background: linear-gradient(120deg, #f9fbfd, #e7f0f8); box-shadow: 0 14px 35px rgba(18,48,81,.06); }
.news { gap: 18px; }
.news article { padding: 30px; border-radius: 14px; box-shadow: 0 6px 20px rgba(16,35,58,.035); }
.news article:hover { box-shadow: 0 17px 36px rgba(16,35,58,.11); }
.read-more { letter-spacing: .03em; }
.vision { padding: 132px 0; background: linear-gradient(120deg, #05172e, #0d3c6c); }
.values-item { border-radius: 999px; padding: 16px 24px; }
.contact-box { border-radius: 14px; background: linear-gradient(145deg, #0a2b50, #06182f); box-shadow: 0 15px 32px rgba(5,24,47,.16); }
.foot { padding: 28px; }
@media (max-width: 900px) {
  .nav { height: 72px; }
  .section { padding: 82px 0; }
  .hero { min-height: 610px; }
  .partner { padding: 40px; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  .nav { height: 64px; }
  .hero { min-height: calc(100svh - 64px); }
  .hero:before { width: 90vw; right: -38%; top: 15%; }
  .hero h1 { letter-spacing: .04em; }
  .section { padding: 64px 0; }
  .partner { padding: 28px 22px; }
  .values-item { border-radius: 12px; padding: 16px; }
}

/* Inner pages: a calmer, editorial layout with page-specific accents */
.inner-page { background: #f8fafc; }
.inner-page .nav-links a[aria-current="page"],
.home-page .nav-links a[aria-current="page"] { color: #8d6729; }
.inner-page .nav-links a[aria-current="page"]:after,
.home-page .nav-links a[aria-current="page"]:after { transform: scaleX(1); }
.inner-page .breadcrumb {
  padding: 14px 0;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid #e8edf3;
}
.inner-page .breadcrumb .wrap { font-size: 13px; }
.inner-page .section { padding-top: 66px; }
.inner-page .page-title {
  position: relative;
  overflow: hidden;
  text-align: left;
  min-height: 250px;
  margin: 0 0 62px;
  padding: 54px 60px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(118deg, #071a33 8%, #0e3c69 65%, #165181 100%);
  box-shadow: 0 18px 40px rgba(8,33,63,.15);
}
.inner-page .page-title:after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -85px;
  top: -150px;
  border: 1px solid rgba(242,205,135,.34);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(242,205,135,.055), 0 0 0 90px rgba(242,205,135,.03);
}
.inner-page .page-title .label { color: #f1cf8c; position: relative; z-index: 1; }
.inner-page .page-title h1 { position: relative; z-index: 1; margin: 8px 0; color: #fff; font-size: clamp(36px, 4vw, 50px); letter-spacing: .09em; }
.inner-page .page-title p { position: relative; z-index: 1; color: #d3e1ef; font-size: 16px; }
.inner-page .section > .wrap > h2 {
  position: relative;
  margin-top: 74px !important;
  padding-top: 20px;
}
.inner-page .section > .wrap > h2:before {
  content: "";
  position: absolute;
  top: 0;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f0d49a);
}
.inner-page .about { gap: 58px; }
.inner-page .about > div { padding: 8px 0; }
.inner-page .about p { font-size: 16px; line-height: 2; color: #52657a; }
.inner-page .factbox {
  align-self: stretch;
  padding: 34px 32px;
  border: 1px solid #e5ebf1;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  background: linear-gradient(150deg, #fff, #f2f6fa);
  box-shadow: 0 12px 28px rgba(22,52,83,.06);
}
.inner-page .factbox b { font-size: 16px; }
.inner-page .factbox div { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid #e2e8ee; }
.inner-page .factbox div:last-child { border: 0; margin-bottom: 0; padding-bottom: 0; }
.inner-page .service, .inner-page .news article, .inner-page .team-member {
  border-color: #e5ebf1;
  box-shadow: 0 7px 22px rgba(22,52,83,.045);
}
.inner-page .service { min-height: 210px; }
.inner-page .stats { margin-top: 52px; gap: 18px; }
.inner-page .stat-item {
  position: relative;
  overflow: hidden;
  padding: 30px 18px;
  border: 1px solid #e2e9ef;
  background: #fff;
  box-shadow: 0 8px 22px rgba(22,52,83,.04);
}
.inner-page .stat-item:before { content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: var(--gold); }
.inner-page .timeline { margin: 10px auto 0; max-width: 980px; }
.inner-page .timeline-item { padding: 27px 30px; box-shadow: 0 8px 22px rgba(22,52,83,.045); }
.inner-page .team-member { background: #fff; padding: 30px 20px; }

.page-advantages .cards, .page-vision .cards { gap: 18px; }
.page-advantages .cards .card, .page-vision .cards .card { border-radius: 16px; min-height: 285px; }
.page-advantages .services .service:nth-child(odd) { background: #fffdf8; }
.page-services .services:first-of-type .service { border-top: 3px solid var(--gold); }
.page-services .service ul { padding-left: 0; list-style: none; }
.page-services .service li { position: relative; padding: 6px 0 6px 19px; }
.page-services .service li:before { content: ""; position: absolute; width: 6px; height: 6px; left: 0; top: 16px; border-radius: 50%; background: var(--gold); }
.page-partners .partner { margin-top: 0; }
.page-partners .certificate { border-radius: 18px; }
.page-partners .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
}
.page-partners .cards .card {
  min-height: 205px;
  padding: 31px 32px 28px;
  border: 1px solid #e1e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(22,52,83,.045);
}
.page-partners .cards .card:before {
  top: auto;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f2ddb3, transparent);
  opacity: .8;
}
.page-partners .cards .card:hover {
  border-color: #e3c98f;
  background: #fffdf9;
  box-shadow: 0 12px 25px rgba(25,56,88,.08);
  transform: translateY(-3px);
}
.page-partners .cards .card .num { margin-bottom: 13px; color: #b58536; font-size: 31px; line-height: 1; }
.page-partners .cards .card h3 { margin-bottom: 10px; color: #163a61; font-size: 21px; font-weight: 600; }
.page-partners .cards .card p { color: #647589; font-size: 15px; line-height: 1.85; }
.page-news .news article { position: relative; min-height: 230px; }
.page-news .news article:before { content: ""; position: absolute; left: 30px; top: 0; width: 38px; height: 3px; background: var(--gold); }
.page-news .contact-form { border: 0; box-shadow: 0 12px 30px rgba(22,52,83,.07); }
.page-vision .vision-content {
  margin: 40px 0 50px;
  padding: 56px 48px;
  background: linear-gradient(115deg, #061b35, #0c315b);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-vision .vision-content:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(203, 164, 91, 0.1) 0, transparent 50%);
}
.page-vision .vision-content > * { position: relative; z-index: 1; }
.page-vision .vision-content h2 {
  color: #fff;
  font-size: 32px;
  margin: 12px 0 28px;
}
.page-vision .vision-content p {
  font-size: 16px;
  color: #c3d0df;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.8;
}
.page-vision .vision-content .values {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.page-vision .vision-content .values-item {
  padding: 16px 28px;
  background: rgba(255,255,255,.06);
  border-radius: 30px;
  font-size: 15px;
  color: #c3d0df;
}
.page-contact .contact { padding: 48px; border-radius: 20px; background: #fff; box-shadow: 0 12px 30px rgba(22,52,83,.06); }
.page-contact .contact-box { margin: -72px 0 -72px 0; }
.page-contact .contact-form { box-shadow: 0 12px 30px rgba(22,52,83,.07); }

/* About timeline: refined vertical path and date markers */
.page-about .timeline {
  max-width: 940px;
  margin: 12px 0 0;
  padding: 4px 0 4px 56px;
}
.page-about .timeline:before {
  left: 17px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0, #d5ad61 5%, #d5ad61 88%, transparent 100%);
}
.page-about .timeline-item {
  margin: 0 0 18px;
  padding: 25px 30px;
  border: 1px solid #e3eaf0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(22,52,83,.04);
}
.page-about .timeline-item:before {
  left: -47px;
  top: 27px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  background: #c89a4b;
  box-shadow: 0 0 0 2px #c89a4b, 0 3px 8px rgba(150,106,35,.2);
}
.page-about .timeline-item:after {
  content: "";
  position: absolute;
  left: -32px;
  top: 33px;
  width: 16px;
  height: 1px;
  background: #d5ad61;
}
.page-about .timeline-item:hover { transform: translateX(5px); border-color: #dec183; box-shadow: 0 12px 25px rgba(22,52,83,.08); }
.page-about .timeline-date {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #956b2e;
  background: #fff7e7;
  font-size: 12px;
  letter-spacing: .08em;
}
.page-about .timeline-title { margin-bottom: 7px; font-weight: 600; }

/* About timeline rebuilt: horizontal milestones with decorated event cards */
.page-about .timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
  margin: 30px 0 0;
  padding: 0;
}
.page-about .timeline:before {
  top: 28px;
  bottom: auto;
  left: 7.5%;
  right: 7.5%;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c89a4b 8%, #e7c987 50%, #c89a4b 92%, transparent);
}
.page-about .timeline-item {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  margin: 0;
  padding: 78px 24px 26px;
  border: 1px solid #e1e8ef;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f9fbfd);
  box-shadow: 0 9px 22px rgba(22,52,83,.05);
}
.page-about .timeline-item:before {
  z-index: 2;
  left: 50%;
  top: 17px;
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  background: #c89a4b;
  box-shadow: 0 0 0 2px #c89a4b, 0 4px 12px rgba(155,109,31,.26);
  transform: translateX(-50%);
}
.page-about .timeline-item:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44px;
  width: 1px;
  height: 20px;
  background: #d4ae65;
  transform: translateX(-50%);
}
.page-about .timeline-item:hover { transform: translateY(-6px); border-color: #dec183; box-shadow: 0 17px 32px rgba(22,52,83,.10); }
.page-about .timeline-date {
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 0;
  border-radius: 0;
  color: #a4772f;
  background: transparent;
  font: 600 18px Georgia, "Times New Roman", serif;
  letter-spacing: .06em;
}
.page-about .timeline-title { color: #163a61; font-size: 18px; }
.page-about .timeline-desc { color: #657589; font-size: 14px; line-height: 1.85; }


/* Value and strength cards: editorial panels instead of heavy dark blocks */
.page-advantages .cards,
.page-vision .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.page-advantages .cards .card,
.page-vision .cards .card {
  min-height: 210px;
  padding: 31px 32px 28px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
  transform: none;
}
.page-advantages .cards .card:before,
.page-vision .cards .card:before {
  top: auto;
  bottom: 0;
  left: 32px;
  right: 32px;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f2ddb3, transparent);
  opacity: .8;
}
.page-advantages .cards .card:hover,
.page-vision .cards .card:hover {
  border-color: #e3c98f;
  background: #fffdf9;
  box-shadow: 0 12px 25px rgba(25,56,88,.08);
  transform: translateY(-3px);
}
.page-advantages .cards .card .num,
.page-vision .cards .card .num {
  margin-bottom: 13px;
  color: #b58536;
  font-size: 31px;
  line-height: 1;
}
.page-advantages .cards .card h3,
.page-vision .cards .card h3 {
  margin-bottom: 10px;
  color: #163a61;
  font-size: 21px;
  font-weight: 600;
}
.page-advantages .cards .card p,
.page-vision .cards .card p { color: #647589; font-size: 15px; line-height: 1.85; }
.page-advantages .cards .markets { margin-top: 16px; }
.page-advantages .cards .markets span {
  padding: 5px 11px;
  border-color: #e4cc9a;
  color: #956d2f;
  background: #fffaf0;
}

/* Home partnership feature */
.home-page .partner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, .78fr) minmax(0, 1.65fr);
  gap: clamp(36px, 6vw, 82px);
  margin-top: 18px;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid rgba(203,164,91,.25);
  border-radius: 22px;
  background: linear-gradient(118deg, #071b35 0%, #0c315b 64%, #124775 100%);
  box-shadow: 0 20px 42px rgba(8,34,63,.16);
}
.home-page .partner:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -250px;
  border: 1px solid rgba(239,204,132,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(239,204,132,.045), 0 0 0 100px rgba(239,204,132,.025);
}
.home-page .partner:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 1px;
  background: linear-gradient(transparent, rgba(231,202,141,.55), transparent);
}
.home-page .partner-mark {
  position: relative;
  min-width: 0;
  padding: 34px 20px;
  border: 1px solid rgba(239,204,132,.35);
  border-radius: 14px;
  color: #f5dfae;
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: .95;
  background: rgba(255,255,255,.055);
  text-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.home-page .partner-mark:before {
  content: "GLOBAL";
  display: block;
  margin-bottom: 16px;
  color: #a8bfd3;
  font: 600 10px Arial, sans-serif;
  letter-spacing: .32em;
}
.home-page .partner-mark small { color: #d6b66f; font-size: 12px; letter-spacing: .18em; }
.home-page .partner .label { color: #e6c878; }
.home-page .partner h2 { color: #fff; margin-bottom: 18px; }
.home-page .partner p { max-width: 660px; color: #d3e0ed; font-size: 16px; line-height: 1.95; }
.home-page .partner .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px !important;
  padding: 10px 0;
  color: #f0cc80;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(240,204,128,.5);
}
.home-page .partner .read-more:hover { color: #fff1ca; border-bottom-color: #fff1ca; }

@media (max-width: 900px) {
  .inner-page .page-title { min-height: 220px; padding: 46px 42px; }
  .inner-page .contact { padding: 32px; }
  .page-contact .contact-box { margin: 0; }
  .page-about .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
  .page-about .timeline:before { display: none; }
  .page-about .timeline-item { min-height: 220px; }
}
@media (max-width: 640px) {
  .inner-page .section { padding-top: 42px; }
  .inner-page .page-title { min-height: 195px; margin-bottom: 42px; padding: 35px 25px; border-radius: 14px; }
  .inner-page .page-title:after { width: 230px; height: 230px; right: -95px; top: -80px; }
  .inner-page .page-title h1 { font-size: 34px; }
  .inner-page .section > .wrap > h2 { margin-top: 52px !important; }
  .inner-page .factbox { padding: 28px 24px; }
  .inner-page .contact { padding: 24px; }
  .inner-page .service { min-height: 0; }
  .page-advantages .cards,
  .page-vision .cards,
  .page-partners .cards { grid-template-columns: 1fr; padding: 0; border-radius: 0; }
  .page-advantages .cards .card,
  .page-vision .cards .card { min-height: 0; padding: 26px 24px; }
  .page-advantages .cards .card:before,
  .page-vision .cards .card:before { left: 24px; right: 24px; }
  .page-partners .cards { padding: 0; }
  .page-partners .cards .card { min-height: 0; padding: 26px 24px; }
  .page-partners .cards .card:before { left: 24px; right: 24px; }
  .page-about .timeline { grid-template-columns: 1fr; gap: 14px; }
  .page-about .timeline-item { min-height: 0; padding: 26px 24px 24px 68px; }
  .page-about .timeline:before { display: block; top: 22px; bottom: 22px; left: 20px; right: auto; width: 2px; height: auto; background: linear-gradient(#d3ab60, #efd9a7); }
  .page-about .timeline-item:before { left: 20px; top: 21px; transform: translateX(-50%); }
  .page-about .timeline-item:after { left: 20px; top: 44px; height: 20px; transform: translateX(-50%); }
  .page-about .timeline-date { margin-bottom: 7px; }
  .home-page .partner { display: block; padding: 34px 24px; }
  .home-page .partner:after { display: none; }
  .home-page .partner-mark { margin-bottom: 28px; padding: 28px 16px; }
}
