* {
  box-sizing: border-box;
}

:root {
  --color-brand-gold: #BC8418;
  --color-brand-gold-soft: #cfb983;
  --color-brand-teal: #166296;
  --color-stroke-line: #dbe1e9;

  --color-ink: #2e3b4d;
  --color-ink-deep: #2B435C;
  --color-body-text: #495864;
  --color-white: #ffffff;
  --color-white-soft: #f6f7f7;

  --color-bg-page: #eff2f5;
  --color-bg-slate: #2a4661;
  --color-bg-silver: #647183;
  --color-bg-offwhite: #e8ecf3;

  --color-muted-blue: #9eb5c2;

  --color-on-dark-heading: #d9dfe7;
  --color-on-dark-text: #adbcc9;
  --color-on-dark-text-enother: #cdd9e4;
}

/* Utility list bullets (only dots + spacing; no typography) */
.u-list-dots {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-list-dots li {
  position: relative;
  padding-left: 16px;
}

.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;
  margin-top: 0 !important;
}

.scroll-hide {
  overflow: hidden;
}

/* =========================================== FONT GLOBAL STYLE ============================================== */
a {
  color: inherit;
  text-decoration: none;
}

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,
h5 {
  color: var(--color-ink);
  letter-spacing: -0.03em;
  margin: 0;
}

.hero h1{
  letter-spacing: -0.02em;
  line-height: 67px;
  font-size: 60px;
  color: var(--color-white-soft);
  margin-bottom: 29px;
}

h2 {
  font-weight: 800;
  font-size: 39px;
  line-height: 48px;
}

h3 {
  font-size: 27px;
  font-weight: 800;
  line-height: 35px;

}

h4 {
  font-size: 22px;
  line-height: 32px;
}

h5{
  font-size: 18px;
}

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;
}

/* =========================================== IMAGE ============================================== */
picture,
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================================== BUTTONS ============================================== */

.btn-small,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 210px;
  padding: 12px 15px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
  white-space: nowrap;
  font-size: 16px;
}

.btn-small{
  font-size: 15px;
  font-weight: 700;
  padding: 10px 12px;
  width: 190px;
  gap: 7px;
}

.btn--primary {
  background: var(--color-brand-gold);
  color: var(--color-ink);
  border-color: rgba(15, 30, 43, 0.14);
  box-shadow: 0 14px 30px rgba(15, 30, 43, 0.12);
}

.btn--dark--head{
  font-weight: 600;
  color: var(--color-brand-teal);
  border: 1px solid var(--color-brand-teal);
}

.btn--dark--head:hover{
  background-color: var(--color-brand-teal);
  color: var(--color-white);
}

.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--dark:hover {
    color: var(--color-white);
    background: var(--color-ink);
}

.btn--white {
  color: var(--color-white-soft);
  border-color: rgb(255, 255, 255, 0.30);
}

.btn--white:hover{
  background-color: var(--color-white-soft);
  color: var(--color-ink);
}

.btn--block {
  width: 100%;
  display: flex;
  margin-top: 35px;
  gap: 15px;
  justify-content: center;
}

.btn__icon {
  display: inline-flex;
}

.btns-stick{
  display: flex;
  gap: 15px;
}

.btns-stick {
  width: 100%;
  background: #ebebeb;
  padding: 12px 10px;
  position: fixed;
  bottom: -76px;
  transition: bottom .5s ease-in-out;
  z-index: 777;
  display: none;
}

.btn-call.show {
  opacity: 1;
}

/* =========================================== 
  BACGROUND 
============================================== */

.bg-slate {
  background-color: var(--color-bg-slate);
}

.bg-white {
  background-color: var(--color-bg-offwhite);
}

.bg-silver{
  background-color: var(--color-bg-silver);
}

/* =========================================== 
  FONTS STYLE ANOTHER 
============================================== */

h1{
  font-size: 43px;
  line-height: 55px;
}

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{
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(41, 105, 169);
    position: relative;
    padding-left: 25px;
    margin-bottom: 9px;
    font-weight: 700;
}

.eyebrow-dark::before,
.eyebrow::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0.28em;
    width: 10px;
    height: 10px;
    box-shadow: rgba(195, 140, 79, 0.16) 0px 0px 0px 6px;
    border-radius: 50%;
    background: var(--color-brand-gold);
}

.eyebrow-dark {
  color: var(--color-brand-gold-soft);
}

.small-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.5px;
}

/* =========================================== 
  GREED AND CARD 
============================================== */
.grid {
  display: grid;
  max-width: 100%;
}

.grid--2 {
  gap: 95px;
  grid-template-columns: repeat(2, 1fr);
}

.grid--2--blocks{
  gap: 30px 20px;
  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%;
}

.block-description{
  margin-top: 30px;
}

/*---------------------Card------------------*/
.card {
  background: var(--color-white-soft);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 16px 55px rgba(15, 30, 43, 0.08);
}

.padding--section {
  padding: 100px 0;
}

.margin-top-block {
  margin-top: 40px;
}

.center {
  text-align: center;
}

.card-link {
    display: flex;
    border-top: 1px solid rgba(15, 23, 42, .08);
    margin-top: 27px;
    padding-top: 17px;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    color: rgb(38, 93, 147);
}


/* =========================================== 
 HEADER 
============================================== */
.topstrip {
  background: #1e4468;
  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: rgba(255, 255, 255, 0.1);;
  transition: transform .12s ease, background .12s ease;
}


.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);
}

.admin-bar .topstrip {
  margin-top: 32px;
}
.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .topstrip { margin-top: 46px; }
  .admin-bar .header { top: 46px; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white-soft);
  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;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.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: 0 20px 70px rgba(15, 30, 43, 0.18);
}

.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;
}

/*============================== 
  HERO
===============================*/

.hero {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(230, 221, 209, 0.9);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(1 18 31 / 68%) 0%, rgb(3 24 42 / 62%) 38%, rgb(6 40 69 / 46%) 68%, rgb(3 33 58 / 34%) 100%);
}


.hero-description-container {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 90px;
  padding: 95px 0px 235px;
}

.hero-slogan-block{
  max-width: 620px;
}

.hero-slogan-block p {
  color: var(--color-white-soft);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.container-schedule-hero {
  position: relative;
  width: 450px;
}

.block-schedule {
  position: absolute;
  bottom: -390px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 35px;
  opacity: 0.96;
  background: var(--color-white-soft);
  backdrop-filter: blur(3px);
}

.mini-steps {
  gap: 25px;
  margin: 14px 0 18px;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 58px;
  padding-left: 8px;
}

.mini-step__text h5{
  margin-bottom: 3px;
}

.accent-time {
  padding: 0 3px;
  color: var(--color-brand-gold);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: -4px;
}



.mini-step .n {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #356D97 0%, #2D5F86 100%);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(45, 95, 134, 0.18);
  z-index: 1;
}

.mini-step .n::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #dde3ec;
  z-index: -2;
}

.mini-step .n::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(190, 138, 36, 0.22);
  z-index: -1;
}

.mini-step span:last-child {
  display: block;
  line-height: 1.45;
}


.btn-nav,
.btn-hero{
  display: flex;
  gap: 15px;
  margin-top: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav{
  margin-top: 0;
  padding-top: 0;
}

.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;
}


/*====================================
  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 h4,
.contacts-footer h4 {
  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: 245px;
  display: flex;
  justify-content: start;
}