/* ===========================================
   01. RESET / TOKENS / BASE
============================================== */

* {
  box-sizing: border-box;
}

:root {
  /* Brand */
  --color-brand-gold: #c59211;
  --color-brand-gold-soft: #CFB983;
  --color-brand-gold-soft-border: #AD9A6D;
  --color-brand-gold-step: #C9B37A;
  --color-brand-teal: #2D6E7D;

  /* Neutral text + surfaces */
  --color-ink: #0F1E2B;
  --color-ink-deep: #1A2C3A;
  --color-body-text: #5B6670;
  --color-white: #FFFFFF;
  --color-white-soft: #FEFEFE;
  --color-bg-page: #FBF9F6;
  --color-bg-slate: #374550;
  --color-bg-offwhite: #F5F4F0;
  --color-border-sand: #E6DDD1;

  /* Muted + dark-surface text */
  --color-muted-blue: #8C9DA7;
  --color-on-dark-heading: #DFDDD7;
  --color-on-dark-text: #B0B9C0;
  --color-on-dark-sub: rgba(230, 237, 246, 0.72);
  --color-on-dark-title: #EAF2FF;

  /* Alpha helpers */
  --alpha-white-08: rgba(255, 255, 255, 0.08);
  --alpha-white-12: rgba(255, 255, 255, 0.12);
  --alpha-white-18: rgba(254, 254, 254, 0.18);
  --alpha-white-88: rgba(255, 255, 255, 0.88);

  /* Single elevation shadow */
  --shadow-elev-1: 0 14px 34px rgba(15, 30, 43, 0.10);
}

/* Utility list bullets (only dots + spacing; no typography) */

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

.content ul li,
.u-list-dots li {
  position: relative;
  padding-left: 16px;
}


.content ul li{
  line-height: 32px;
  font-weight: 700;
  color: var(--color-ink);
}

.content ul{
  margin-bottom: 20px;
}

.content ul li::before,
.u-list-dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-gold-soft);
  transform: translateY(-50%);
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-ink);
  line-height: 1.55;
  background-color: var(--color-bg-page);
}

html {
  scroll-behavior: smooth;
}

.scroll-hide {
  overflow: hidden;
}

/* ===========================================
   02. BASE TYPOGRAPHY
============================================== */
a {
  color: inherit;
  text-decoration: none;
}

.content a,
.content ul li a,
p a{
  color: var(--color-brand-gold);
  font-weight: 700;
}

p {
  margin: 0 0 18px;
  color: var(--color-body-text);
  font-size: 15px;
  letter-spacing: 0.4px;
  font-weight: 400;
  line-height: 30px;
}

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

h1,
h2,
h3,
h4,
p strong {
  color: var(--color-ink);
  letter-spacing: -0.02em;
  margin: 0;
}

p.font-content-dark strong{
  color: var(--color-on-dark-heading);
  letter-spacing: 0.7px;
  font-weight: 600;
}


.hero h1{
  letter-spacing: -0.02em;
  line-height: 61px;
  font-size: 48px;
  color: var(--color-white-soft);
  margin-bottom: 25px;
}

h1{
  font-size: 43px;
  line-height: 55px;
}

h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 43px;
}

h3 {
  font-size: 21px;
  margin-bottom: 7px;
}

h4 {
  font-size: 17px;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-body-text);
}


.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===========================================
   03. MEDIA ELEMENTS
============================================== */
picture,
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ===========================================
   04. BUTTONS
============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-brand-gold);
  color: var(--color-ink);
  border-color: rgba(15, 30, 43, 0.14);
  box-shadow: var(--shadow-elev-1);
}

.btn--ghost {
  background: var(--color-brand-teal);
  color: var(--color-white);
}

.btn--dark {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn--white {
  color: var(--color-white-soft);
  border-color: rgb(255, 255, 255, 0.30);
}

.btn--block {
  width: 100%;
  display: flex;
  margin-top: 35px;
  gap: 15px;
  justify-content: center;
}

.btn__icon {
  display: inline-flex;
}

/* ===========================================
   05. SURFACE HELPERS
============================================== */
.bg-slate {
  background-color: var(--color-bg-slate);
}

.bg-white {
  background-color: var(--color-bg-offwhite);
}

/* ===========================================
   06. SECTION HELPERS / TITLE UTILS
============================================== */

h2.font-bg-dark {
  color: var(--color-on-dark-heading);
}

p.font-content-dark {
  color: var(--color-on-dark-text);
}

h2.font-bg-dark,
.title-block h2 {
  margin-bottom: 10px;
}

.eyebrow-dark,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(45, 110, 125, .4);
  padding-bottom: 5px;
  color: var(--color-brand-teal);
  margin-bottom: 12px;
}

.eyebrow-dark {
  color: var(--color-brand-gold-soft);
  border-bottom: 2px solid var(--color-brand-gold-soft-border);
}

.small-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted-blue);
  line-height: 23px;
  letter-spacing: 0.5px;
}

/* ===========================================
   07. LAYOUT / GRID / CARD
============================================== */
.grid {
  display: grid;
  max-width: 100%;
}

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

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

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

.grid-full-with {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.description-full-with-global{
  margin: 0 auto;
  padding: 90px 15px;
  width: 65%;
}

.description-full-with-custom{
  margin: 0 auto;
  width: 65%;
}

/*---------------------Card------------------*/
.card {
  background: var(--color-white-soft);
  border-radius: 10px;
  padding: 18px;
  box-shadow: var(--shadow-elev-1);
}

.padding--section {
  padding: 100px 0;
}

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

.center {
  text-align: center;
}

/*============================================
 BREADCRANB
=============================================*/
.breadcrumb-general{
	padding:12px 0;
	border-top:1px solid #e7e7e7;
	border-bottom:1px solid #e7e7e7;
	background:#fff;
}
.breadcrumb-general .breadcrumbs{
	font-size:11px;
	line-height:22px;
	letter-spacing: 0.5px;
	text-transform:uppercase;
}
.breadcrumb-general .breadcrumbs a{
	text-decoration:none;
	color: var(--color-brand-gold);
	font-weight:600
}
.breadcrumb-general .breadcrumbs a:hover{
	opacity:.75;
}
.breadcrumb-general .breadcrumbs .sep{
	display:none!important;
}


.breadcrumb-general .breadcrumbs span span:not(:first-child)::before{
  content:"⟶";
	color: var(--color-ink);
	margin:0 10px;
	font-size:13px;
	font-weight:700;
	line-height:1;
}

.breadcrumb-general .breadcrumbs .breadcrumb_last{
	color: var(--color-body-text);
	font-weight:600
}

.breadcrumb-general .breadcrumbs > span > span:first-child > a::before{
  content:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'><path d='M8 .5l6.5 6v9.5h-4v-5h-5v5h-4V6.5L8 .5z'/></svg>");
  display:inline-block;
  margin-right:8px;
  vertical-align:middle;
  font-size: 9px;
  background-color: color: var(--color-brand-gold);
}

.breadcrumb-general .breadcrumbs a.breadcrumb_last::before{
  content: none;
}

/* ===========================================
   08. HEADER / NAVIGATION
============================================== */
.topstrip {
  background: var(--color-ink-deep);
  color: rgba(255, 255, 255, .88);
  padding: 7px 0;
}

.topstrip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topstrip small {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--alpha-white-08);
  transition: transform .12s ease, background .12s ease;
}

.social a:hover {
  transform: translateY(-1px);
  background: var(--alpha-white-12);
}

.social svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
  opacity: .9;
}

.nav-icon {
  display: none;
  margin: 0;
  width: 30px;
  position: relative;
}

.nav-icon:before,
.nav-icon:after,
.nav-icon div {
  content: "";
  display: block;
  height: 2px;
  background: #0d345a;
  border-radius: 3px;
  margin: 8px 0;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-icon.closed div {
  opacity: 0;
}

.nav-icon.closed:before {
  transform: translateY(10px) rotate(45deg);
}

.nav-icon.closed:after {
  transform: translateY(-10px) rotate(-45deg);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--alpha-white-88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.logo img {
  width: 200px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu ul {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #32435a;
}

.row-menu {
  display: flex;
  justify-content: space-between;
}

.header-nav-container {
  padding: 15px 0;
}

/* Mobile drawer */
.drawer {
  display: none;
}

.drawer summary {
  list-style: none;
  cursor: pointer;
}

.drawer summary::-webkit-details-marker {
  display: none;
}

.drawer__toggle {
  width: 46px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border-sand);
  background: rgba(254, 254, 254, 0.9);
}

.drawer__lines {
  width: 18px;
  height: 14px;
  position: relative;
  display: block;
}

.drawer__lines::before,
.drawer__lines::after,
.drawer__lines {
  background: transparent;
}

.drawer__lines::before,
.drawer__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-ink);
}

.drawer__lines::before {
  top: 2px;
}

.drawer__lines::after {
  bottom: 2px;
}

.drawer__panel {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: var(--color-white-soft);
  border: 1px solid var(--color-border-sand);
  box-shadow: var(--shadow-elev-1);
}

.drawer__links {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.drawer__links a {
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 800;
  background: rgba(246, 241, 232, 0.7);
  border: 1px solid var(--color-border-sand);
}

.drawer__cta {
  display: grid;
  gap: 10px;
}

/*==============================
  09. HERO
===============================*/

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(230, 221, 209, 0.9);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__shade{
  position:absolute;
  inset:0;
  background: radial-gradient(800px 520px at 18% 36%, rgba(197, 152, 41, 0.18), transparent 62%), linear-gradient(90deg, rgba(15, 30, 43, 0.9) 0%, rgba(15, 30, 43, 0.7) 50%, rgba(15, 30, 43, 0.28) 72%, rgba(15, 30, 43, 0) 100%);
}

.hero-description-container {
  position: relative;
}

.hero-slogan-block {
  max-width: 650px;
  padding: 140px 0 100px;
}
.hero-slogan-block p{
  color: #f7f6f3;
}

.btn-hero{
  display: flex;
  gap: 15px;
  margin-top: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--alpha-white-18);
  background: var(--alpha-white-08);
  color: rgba(254, 254, 254, 0.92);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 0.7px;
}

.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--color-brand-gold);
  box-shadow: 0 0 0 5px rgba(197, 152, 41, 0.22);
}

p.micro-text{
  font-size: 13px;
  font-weight: 600;
  margin-top: 15px;
  letter-spacing: 0.5px;
  color: #cfc9c2;
}

.btn-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.step-ribbon{
  background:#FEFEFE;
}

.section-foot {
  margin-top: 40px;
  gap: 15px;
  display: flex;
  justify-content: center;
}

/*====================================
  10. FOOTER
===============================*/
.footer {
  padding: 70px 0 30px 0;
  background-color: var(--color-ink-deep);
}

.general-footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

ul.links-footer li a {
  font-size: 15px;
  color: var(--color-on-dark-text);
  font-weight: 500;
  line-height: 35px;
}

ul.links-footer-contacts,
ul.links-footer {
  padding-left: 0;
  margin-top: 21px;
}

.links-footer-page h3,
.contacts-footer h3 {
  color: var(--color-white);
}

.links-footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 400;
  margin: 10px 0;
}

.block-logo p {
  color: var(--color-muted-blue);
  margin-top: 30px;
}

.block-logo img {
  margin-bottom: 20px;
}

.links-footer-contacts li a {
  color: var(--color-brand-gold);
}

.copiright p {
  margin-bottom: 0;
  text-align: center;
  color: var(--color-muted-blue);
  font-size: 13px;
}

.line-footer span {
  margin: 30px 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--alpha-white-12);
}

.links-footer-contacts li span {
  font-weight: 700;
}

.links-footer-contacts li p {
  color: var(--color-on-dark-text);
}

.links-footer-contacts li img {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  flex: 0 0 32px;
}

.links-footer-contacts span {
  color: var(--color-muted-blue);
  font-size: 13px;
  font-weight: 600;
}

.block-logo img {
  width: 220px;
  display: flex;
  justify-content: start;
}
