@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
html {
    background: #161D27;
    color: #ffffff;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
body {
    min-width: 360px;
}
header {
    padding: 10px 0;
}
a.logo {
    display: block;
    width: 100px;
}
img.hero-flag {
    height: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    justify-content: center;
}
.btn-border-100 {
    border-radius: 999px;
}
.btn-border-16 {
    border-radius: 16px;
}
.btn.menuuu {
    background-color: #D8B56A;
    color: #ffffff;
}
.btn.primary {
    background-color: #D8B56A;
    color: #ffffff;
}
.btn.secondary {
  position: relative;
  background-color: #1F2732; 
  color: #ffffff;
  overflow: hidden;
}
.btn.secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.2) 100%);
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@keyframes pulse {
0% {
    -moz-box-shadow: 0 0 0 0 rgba(216,181,106,1);
    box-shadow: 0 0 0 0 rgba(216,181,106,1);
}
70% {
    -moz-box-shadow: 0 0 0 10px rgba(110,181,106,0);
    box-shadow: 0 0 0 10px rgba(216,181,106,0);
}
100% {
    -moz-box-shadow: 0 0 0 0 rgba(216,169,106,0);
    box-shadow: 0 0 0 0 rgba(216,181,106,0);
}
}
.pulse {
    box-shadow: 0 0 0 rgba(216,181,106,1);
    animation: pulse 2s infinite;
}

.btn.default {
  background-color: #3B434E; 
  color: #ffffff;
}
.btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.uk-text-primary {
    color: #d2af6b !important;
}
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 
    color: #ffffff;
}

.floating-image {
    animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.section-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.section-title-center {
    justify-content: center;
}
.section-title h2 {
  font-size: 2.625rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.section-title img {
  width: 40px; 
  height: auto;
}
.tab-content {
    background: #fff;
    color: #282828;
    border-radius: 0 20px 20px 20px;
    padding: 15px 15px 15px 20px;
}
.uk-subnav-pill>*>:first-child {
    padding: 20px 15px;
    margin-bottom: -1px;
    font-weight: 800;
    color: #D2AF6B;
    border-radius: 20px 20px 0px 0px;
}
.uk-subnav-pill>.uk-active>a {
    background-color: #ffffff;
    color: #161d27;
}
.iam {
    background-color: #1F2732;
    padding: 20px 20px;
    border-radius: 25px;
}

.warning-box {
  position: relative;
  background-color: #1F2732;
  border-radius: 24px;
  padding: 40px 20px 20px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
}
.warning-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #D8B56A;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.warning-icon img {
  width: 30px;
  height: 30px;
}
.cta {
    padding: 80px 40px;
    border-radius: 20px;
    background-color: #1f2732;
}
.getby {
    padding: 40px 40px;
    border-radius: 20px;
    background-color: #1f2732;
}
.getby-content {
    padding: 40px 40px;
    border-radius: 20px;
    background-color: #fff;
}
.text-dark {
    color: #1f2732;
}

.planet-container {
  position: relative;
  display: inline-block;
}
.large-img {
  width: 100%;
  height: auto;
  display: block;
}
.small-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px; /* можно адаптировать */
  height: auto;
  pointer-events: none;
  z-index: 2;
}

/* Крутилка вокруг своей оси */
.rotating {
  animation: rotate360 25s linear infinite;
  transform-origin: center center;
}
@keyframes rotate360 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.scheme-block-step {
    border-bottom: 1px dashed #9BA4AF;
    padding: 15px 0px 15px 0px;
}
.scheme-block-step-number {
    font-size: 20px;
    padding: 5px 10px 5px 10px;
    line-height: 1.5;
    font-weight: 700;
    width: 20px;    
    color: #fff;
    background: #D2AF6B;
    border-radius: 50px;
    text-align: center;
}
.scheme-block-step-title {
    font-size: 20px;
    font-weight: 600;
}
.scheme-block-step-description {
    font-size: 16px;
    font-weight: 600;
}

.case-card {
  background-color: #1f2732; 
  border-radius: 16px;
  padding: 20px;
  max-width: 400px;
  color: #ffffff;
}
.case-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}
.case-subtitle {
  font-weight: 600;
  font-size: 18px;
  color: #e0b86d;
  margin-bottom: 16px;
}
.case-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  object-fit: cover;
}
.case-quote {
  background-color: transparent;
  color: #fff;
  font-style: italic;
  font-size: 15px;
  position: relative;
  padding-left: 30px;
}
.quote-icon {
  width: 18px;
  position: absolute;
  left: 0;
  top: 4px;
}

.uk-dotnav>*>* {
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1f2732;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid #D2AF6B;
    transition: .2s ease-in-out;
    transition-property: background-color, border-color;
}
.uk-dotnav>.uk-active>* {
    background-color: #D2AF6B;
    border-color: #fff;
}

.section-form-block {
    background-color: #fff;
    padding: 30px 0px 0px 20px;
    border-radius: 20px;
}

.white {
    color: #fff;
}
footer {
    background: #1F2732;
    margin-top: 80px;
    padding-top: 80px;
    border-radius: 30px 30px 0px 0px;
}

.cart-page-telegram-link {
    text-decoration: none;
    display: inline-block;
    width: 100%;
}
.cart-page-telegram-box {
  display: flex;
  align-items: center;
  background-color: #2e3a48;
  border-radius: 12px;
  padding: 12px 16px;
  gap: 12px;
  color: white;
}
.cart-page-telegram-icon {
  width: 44px;
  height: 44px;
  background-color: #d6b36a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-page-telegram-icon img {
  width: 20px;
  height: 20px;
}
.cart-page-telegram-label {
  font-size: 0.85rem;
  opacity: 0.8;
}
.cart-page-telegram-username {
  font-weight: 700;
  font-size: 1rem;
}
.uk-offcanvas-bar {
    background: #161d27;
}
button.uk-offcanvas-close.uk-close-large.uk-icon.uk-close {
    background: #d8b56a;
    padding: 10px 10px;
    border-radius: 10px;
    color: #fff;
}

@media (max-width: 640px) {
.getby {
    padding: 30px 10px;
    border-radius: 20px;
    background-color: #1f2732;
}
.getby-content {
    padding: 20px 10px;
    border-radius: 20px;
    background-color: #fff;
}

.scheme-block-step-description {
    font-size: 16px;
    margin-top: -30px;
    font-weight: 600;
}
.scheme-block-step-number {
    margin-right: -20px;
}
.scheme-block-step-title {
    font-size: 18px;
    font-weight: 600;
}
.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.iam {
    background-color: #1F2732;
    padding: 20px 10px;
    border-radius: 25px;
}
.uk-subnav-pill>*>:first-child {
    padding: 20px 15px;
    margin-bottom: -1px;
    font-weight: 800;
    background: #fff;
    width: auto;
    border-radius: 0;
}
.cta {
    padding: 80px 10px;
    border-radius: 20px;
    background-color: #1f2732;
}
.case-card {
    background-color: #1f2732;
    border-radius: 16px;
    padding: 20px 10px;
    max-width: 400px;
    color: #ffffff;
}
.section-form-block {
    padding: 20px 10px 20px 10px;
    border-radius: 20px;
}
header {
    padding: 20px 0 20px 0;
}
.uk-offcanvas-bar {
    background: #1f2732;
}
.uk-offcanvas-close {
    position: absolute;
    z-index: 1000;
    top: 20px;
    right: 20px;
    padding: 10px;
    background: #D8B56A;
    border-radius: 40px;
}
}

.whatsapp-button {
  position: fixed;
  right: 13px;
  bottom: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background: url(https://files.leacli.com/wa.gif) 50% 50%;
  background-size: 62px;
}
.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #25D366;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden; 
}
.whatsapp-button:after{
  animation-delay: .5s;
}
@keyframes animate{
  0%{transform: scale(0.5);opacity: 0;}
  50%{opacity: 1;}
  100%{transform: scale(1.2);opacity: 0;}
}