﻿:root {
  --navy: #07131f;
  --navy2: #0c1e2d;
  --gold: #d7a35a;
  --gold2: #c48a35;
  --text: #152030;
  --muted: #66717c;
  --line: #e8e2d8;
  --soft: #faf8f4;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.65
}

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

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

.container {
  width: min(var(--container-width, 1120px), calc(100% - 48px));
  margin: auto
}

.site-header {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  top: 0;
  height: 56px;
  background: #07131f;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18)
}

.header-inner {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px
}

.brand-mark {
  width: 45px;
  height: 35px;
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none
}

.brand-mark svg {
  width: 45px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round
}

.brand-text strong {
  display: block;
  font-size: 19px;
  line-height: 1;
  color: #fff;
  letter-spacing: 1px
}

.brand-text small {
  display: block;
  font-size: 8px;
  color: #c9c9c9;
  letter-spacing: .8px
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700
}

.nav a {
  position: relative;
  flex: none;
  color: #f4f6f8;
  white-space: nowrap;
  transition: color .25s ease
}

.nav a:hover,
.nav a.active {
  color: var(--gold)
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease
}

.nav a:hover:after,
.nav a.active:after {
  transform: scaleX(1)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-small, 12px);
  font-weight: 700;
  white-space: nowrap
}

.phone svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius, 2px);
  text-transform: uppercase;
  font-weight: 800;
  font-size: var(--font-size-small, 12px);
  height: 42px;
  padding: 0 26px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-gold {
  background: linear-gradient(180deg, #e7bd75, #c98e37);
  color: #fff;
  box-shadow: 0 6px 16px rgba(201, 142, 55, .2)
}

.btn-outline {
  border-color: #d7e0ea;
  color: #fff;
  background: transparent
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy)
}

.btn-outline-gold {
  border-color: var(--gold);
  color: #fff;
  background: transparent;
  min-height: 36px;
  margin: 24px auto 0
}

.btn-outline-gold:hover {
  background: var(--gold)
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 24px
}

.section-first {
  padding: 124px 0 36px
}

.section {
  padding: var(--section-spacing, 36px) 0
}

.breadcrumb{display:flex;align-items:center;flex-wrap:wrap;font-size:var(--font-size-small,12px);color:var(--muted,#68717d);margin:0 0 28px}
.breadcrumb .bc-home{display:flex;align-items:center;color:var(--navy,#07131f);transition:color .2s}
.breadcrumb .bc-home:hover{color:var(--gold,#d4a25a)}
.breadcrumb .bc-sep{padding:0 9px;color:#bcc4cc;font-size:11px}
.breadcrumb a{color:var(--muted,#68717d);transition:color .2s}
.breadcrumb a:hover{color:var(--gold,#d4a25a)}
.breadcrumb strong{color:var(--text,#172233);font-weight:600}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 56px;
  align-items: center
}

.section-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 700;
  font-size: var(--font-size-small, 13px)
}

.intro h1 {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: var(--font-size-h1, 34px);
  line-height: 1.2;
  letter-spacing: .2px
}

.intro h1 span {
  color: var(--gold2);
  font-size: 32px
}

.intro-copy p:not(.section-label) {
  color: #53606d;
  max-width: 520px;
  margin: 0
}

.intro-image {
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10, 24, 38, .12)
}

.intro-image img {
  height: 410px;
  width: 100%;
  object-fit: cover
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px
}

.stat {
  min-height: 106px;
  padding: 10px 18px;
  text-align: center;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border-right: 0
}

.stat i {
  display: grid;
  place-items: center;
  height: 44px;
  margin-bottom: 6px;
  color: var(--gold2)
}

.stat svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.stat strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
  color: #142131
}

.stat span {
  display: block;
  font-size: var(--font-size-small, 12px);
  color: #5f6974;
  margin-top: 5px
}

.section-title {
  text-align: center;
  margin-bottom: 28px
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  font-size: var(--font-size-h2, 20px);
  line-height: 1.2
}

.section-title p {
  margin: 12px 0 0;
  color: #65707b;
  font-size: var(--font-size-small, 13px)
}

.line-title h2:before,
.line-title h2:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .8
}

.line-title h2:before {
  right: calc(100% + 18px)
}

.line-title h2:after {
  left: calc(100% + 18px)
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0
}

.value-card {
  text-align: center;
  padding: 10px 28px;
  border-right: 1px solid var(--line)
}

.value-card:last-child {
  border-right: 0
}

.value-card i {
  display: grid;
  place-items: center;
  height: 66px;
  color: var(--gold2)
}

.value-card svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round
}

.value-card h3 {
  margin: 8px 0 9px;
  text-transform: uppercase;
  font-size: 15px
}

.value-card p {
  margin: 0;
  color: #5e6874;
  font-size: var(--font-size-small, 12px)
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px
}

.milestone {
  position: relative;
  padding-top: 32px
}

.milestone:before {
  content: "";
  position: absolute;
  left: 22px;
  right: 0;
  top: 12px;
  height: 1px;
  background: #cfd3d8
}

.milestone:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 0 5px #fff
}

.milestone time {
  position: absolute;
  top: -14px;
  left: 0;
  font-weight: 700;
  font-size: var(--font-size-small, 12px)
}

.milestone img {
  width: 100%;
  aspect-ratio: 1.65;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 14px
}

.milestone h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: var(--font-size-small, 13px)
}

.milestone p {
  margin: 0;
  color: #5d6873;
  font-size: var(--font-size-small, 12px)
}

.team-panel {
  background: linear-gradient(135deg, #07131f 0%, #0c2336 100%);
  border-radius: 5px;
  padding: 32px 24px 28px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.team-panel:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 260px;
  height: 210px;
  border: 1px solid rgba(215, 163, 90, .08);
  transform: skew(-10deg);
  opacity: .6
}

.team-panel .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 20px
}

.team-panel .section-title h2 {
  color: #fff
}

.team-panel .section-title p {
  color: var(--gold)
}

.team-panel>.btn {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px
}

.member {
  text-align: center
}

.member img {
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  border-radius: 4px;
  background: #182532;
  filter: saturate(.8)
}

.member h3 {
  margin: 14px 0 4px;
  text-transform: uppercase;
  font-size: var(--font-size-small, 12px);
  color: #fff
}

.member p {
  margin: 0 0 12px;
  color: #d8dde3;
  font-size: var(--font-size-small, 11px)
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px
}

.social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(215, 163, 90, .8);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: var(--font-size-small, 10px);
  font-weight: 700;
  transition: background .25s ease, transform .25s ease
}

.social a:hover {
  background: var(--gold);
  transform: translateY(-2px)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 420px 180px;
  gap: 6px;
  align-items: center
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.check-list li {
  position: relative;
  padding: 0 0 22px 42px;
  color: #56616d;
  font-size: var(--font-size-small, 13px)
}

.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%
}

.check-list li:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--gold2);
  border-bottom: 2px solid var(--gold2);
  transform: rotate(-45deg)
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(12, 24, 38, .13)
}

.why-number {
  background: linear-gradient(180deg, #dfa95e, #bd8032);
  color: #fff;
  border-radius: 4px;
  padding: 22px 18px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.why-number strong {
  font-size: 28px;
  line-height: 1.15
}

.why-number span {
  font-size: var(--font-size-small, 12px);
  font-weight: 600;
  padding: 0 0 18px;
  margin: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .45)
}

.why-number span:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0
}

.partners {
  padding-top: 8px
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 22px;
  align-items: center;
  text-align: center;
  color: #a4a7ab;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  opacity: .85;
  filter: grayscale(1)
}

.cta-band {
  padding: 16px 0 20px
}

.cta-inner {
  background: #07131f;
  color: #fff;
  border-radius: 4px;
  min-height: 110px;
  padding: 24px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden
}

.cta-copy {
  position: relative;
  padding-left: 100px
}

.watermark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: .18;
  color: var(--gold)
}

.watermark svg {
  width: 80px;
  height: 70px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4
}

.cta-copy h2 {
  margin: 0 0 8px;
  font-size: 17px
}

.cta-copy p {
  margin: 0;
  color: #e2e8ee;
  max-width: 420px
}

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

.footer {
  background: #07131f;
  color: #cbd3dc;
  padding: 32px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr 1fr 1.2fr 1.15fr;
  gap: 36px
}

.footer .brand {
  min-width: 0;
  margin-bottom: 14px
}

.footer h3 {
  text-transform: uppercase;
  color: var(--gold);
  font-size: var(--font-size-small, 13px);
  margin: 0 0 14px
}

.footer p,
.footer a {
  display: block;
  color: #c2cad2;
  font-size: var(--font-size-small, 12px);
  margin: 0 0 8px
}

.footer a:hover {
  color: var(--gold)
}

.footer-social {
  justify-content: flex-start;
  margin-top: 18px
}

.footer form {
  display: flex;
  height: 40px;
  border: 1px solid #334658;
  margin-top: 15px
}

.footer input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 12px;
  outline: 0
}

.footer button {
  width: 44px;
  border: 0;
  background: var(--gold);
  color: #fff;
  cursor: pointer
}

.copyright {
  text-align: center;
  border-top: 1px solid #162637;
  margin-top: 24px;
  padding: 14px;
  font-size: var(--font-size-small, 12px);
  color: #b8c1ca
}

.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1)
}

.reveal {
  transform: translateY(14px)
}

.reveal-up {
  transform: translateY(34px)
}

.reveal-left {
  transform: translateX(-34px)
}

.reveal-right {
  transform: translateX(34px)
}

.is-visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .08s
}

.delay-2 {
  transition-delay: .16s
}

.delay-3 {
  transition-delay: .24s
}

.delay-4 {
  transition-delay: .32s
}

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    transition-duration: .001s !important;
    animation-duration: .001s !important
  }
}

@media(max-width:1180px) {
  .container {
    width: min(1040px, calc(100% - 40px))
  }

  .intro-grid {
    grid-template-columns: 1fr 560px;
    gap: 36px
  }
}

@media(max-width:960px) {
  .nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #07131f;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    text-align: center
  }

  .nav.open {
    display: flex
  }

  .nav a:after {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .intro-image img {
    height: 360px
  }

  .stats {
    max-width: none;
    margin-top: 28px
  }

  .value-grid,
  .timeline,
  .team-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .why-grid {
    grid-template-columns: 1fr 1fr
  }

  .why-number {
    grid-column: 1/-1;
    min-height: auto;
    flex-direction: row;
    gap: 20px
  }

  .why-number span {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, .45);
    padding: 0 20px 0 0;
    margin: 0
  }

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

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

@media(max-width:760px) {
  .container {
    width: calc(100% - 32px)
  }

  .header-actions .btn,
  .phone {
    display: none
  }

  .brand {
    min-width: 0
  }

  .brand-text strong {
    font-size: 17px
  }

  .section-first {
    padding-top: 106px
  }

  .breadcrumb {
    margin-bottom: 22px
  }

  .intro h1 {
    font-size: 28px
  }

  .intro h1 span {
    font-size: 27px
  }

  .intro-image img {
    height: 270px
  }

  .stats,
  .value-grid,
  .timeline,
  .team-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .stat,
  .value-card {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .stat:last-child,
  .value-card:last-child {
    border-bottom: 0
  }

  .timeline {
    gap: 20px
  }

  .member img {
    max-height: 320px
  }

  .why-number {
    display: block
  }

  .why-number span {
    display: block;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    padding: 0 0 14px;
    margin: 0 0 14px
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
    font-size: 18px
  }

  .cta-inner {
    display: block;
    padding: 24px
  }

  .cta-copy {
    padding-left: 0
  }

  .watermark {
    display: none
  }

  .cta-actions {
    margin-top: 18px;
    flex-direction: column
  }
}

@media(max-width:520px) {
  body {
    font-size: var(--font-size-small, 13px)
  }

  .brand-text small {
    font-size: 7px
  }

  .section {
    padding: 30px 0
  }

  .intro h1 {
    font-size: 24px
  }

  .intro h1 span {
    font-size: 24px
  }

  .intro-image img {
    height: 220px
  }

  .section-title h2 {
    font-size: 17px
  }

  .line-title h2:before,
  .line-title h2:after {
    width: 22px
  }
}
