/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

@charset "UTF-8";

:root {
  --bs-primary: #0078FF;
  --bs-secondary: #00C8FF;
  --bs-light: #EAEAEA;
  --bs-dark: #233242;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #0078FF;
  text-decoration: underline;
}

a:hover {
  color: #0066d6;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

textarea {
  resize: vertical;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #fff;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 120, 255, 0.25);
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #0078FF;
  border-color: #0078FF;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0066d6;
  border-color: #005cbf;
}

.btn-primary:focus {
  color: #fff;
  background-color: #0066d6;
  border-color: #005cbf;
  box-shadow: 0 0 0 0.25rem rgba(38, 143, 255, 0.5);
}

.btn-primary:disabled {
  color: #fff;
  background-color: #0078FF;
  border-color: #0078FF;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #ACB9C4;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.btn-close:focus {
  outline: 0;
  opacity: 1;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #fff;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-label {
  margin-bottom: 1.5em;
}

/* Typography */
body {
  line-height: 1.7;
  font-family: "Rubik", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  font-weight: 400;
  color: #888888;
}

p {
  font-size: 16px;
}

.lead {
  color: #555555;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #040404;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
}

h1, .h1 {
  font-size: 44px;
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 38px;
  }
}

h2, .h2 {
  font-size: 36px;
}

@media (max-width: 767px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 22px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 14px;
}

/* Button style */
.btn {
  font-size: 15px;
  text-transform: capitalize;
  padding: 13px 28px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: 0.2s ease;
  overflow: hidden;
  border: 0;
}

.btn::after {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background-color: #005cbf;
  top: 100%;
  left: 60%;
  z-index: -1;
  border-radius: 50%;
  transition: 0.3s;
  transform: rotate(25deg);
}

.btn.w-100::after {
  display: none;
}

.btn:hover, .btn:active, .btn.active, .btn:focus {
  outline: 0;
  box-shadow: none !important;
  text-decoration: none;
}

.btn:hover::after, .btn:active::after, .btn.active::after, .btn:focus::after {
  top: -75px;
  left: -55px;
  height: 300px;
  width: 300px;
  transition: 0.4s;
  transform: rotate(0deg);
}

.btn-primary {
  background: #0078FF;
  color: #fff;
  border-color: #0078FF;
}

.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary:focus {
  background: #0078FF !important;
  color: #fff;
}

.btn-primary.w-100:hover {
  background-color: #0066d6 !important;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #0078FF;
  color: #fff;
}

::selection {
  background: #0078FF;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

a,
a:hover,
a:focus {
  text-decoration: none !important;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a {
  color: #0078FF;
}

a:hover {
  color: #0078FF;
  text-decoration: underline;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.outline-0 {
  outline: 0 !important;
}

.bg-primary {
  background: #0078FF !important;
}

.bg-secondary {
  background: #00C8FF !important;
}

.bg-tertiary {
  background: #00C8FF !important;
}

.text-primary {
  color: #0078FF !important;
}

.text-black {
  color: #040404 !important;
}

.text-black a:hover,
a.text-black:hover {
  color: #0078FF !important;
}

.text-default {
  color: #888888 !important;
}

.shadow {
  box-shadow: 0px 25px 65px 0px rgba(0, 0, 0, 0.05) !important;
}

.shadow-md, .difference-of-us-item:hover, .service-item:hover {
  box-shadow: 0px 25px 65px 0px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 8px !important;
}

.navbar-brand {
  font-family: "Rubik", sans-serif;
  font-size: 30px;
}

.banner {
  padding: 90px 0;
  z-index: 5;
}

.banner .block h1, .banner .block .h1 {
  font-size: 52px;
}

@media (max-width: 991px) {
  .banner .block h1, .banner .block .h1 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .banner .block h1, .banner .block .h1 {
    font-size: 38px;
  }
}

.banner .has-shapes {
  z-index: -1;
}

.banner .has-shapes .shape {
  top: 0;
  height: 100%;
}

.banner .has-shapes .shape-left {
  left: 0;
  top: auto;
  bottom: -30px;
}

.banner .has-shapes .shape-right {
  right: 0;
}

.service-item {
  border-top: 1px solid #F4F4F4;
  border-right: 1px solid #F4F4F4;
  transition: 0.3s;
  position: relative;
  z-index: 10;
}

.service-item .colored-box {
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 8px;
  color: #0078FF;
  background-color: rgba(0, 120, 255, 0.2);
}

.service-item .service-title {
  transition: color 0.3s;
}

.service-item .service-description {
  color: #888888;
}

.service-item a:hover .service-title {
  color: #0078FF;
}

.service-item a:hover .service-description {
  color: #888888;
}

.service-item .block {
  padding: 35px 39px;
}

@media (min-width: 991px) {
  .service-item:nth-child(2), .service-item:nth-child(4) {
    border-left: 1px solid #F4F4F4;
  }
  .service-item:nth-child(4), .service-item:nth-child(5), .service-item:nth-child(6) {
    border-bottom: 1px solid #F4F4F4;
  }
}

@media (max-width: 991px) {
  .service-item:nth-child(2), .service-item:nth-child(3), .service-item:nth-child(5) {
    border-left: 1px solid #F4F4F4;
  }
  .service-item:nth-child(6), .service-item:nth-child(5) {
    border-bottom: 1px solid #F4F4F4;
  }
}

@media (max-width: 767px) {
  .service-item {
    border: 1px solid #F4F4F4;
    border-bottom: 0;
  }
}

.service-item:nth-child(even) .colored-box {
  color: #00C8FF;
  background-color: rgba(0, 200, 255, 0.2);
}

.service-item:hover {
  border-color: transparent;
}

.about-section {
  z-index: 5;
}

.about-section .has-shapes {
  z-index: -1;
}

.about-section .has-shapes .shape-left {
  left: 0;
  bottom: 0;
}

.about-section .has-shapes .shape-right {
  right: 0;
  top: 0;
}

.difference-of-us-item {
  position: relative;
  transition: 0.3s;
}

.difference-of-us-item:not(:last-child) {
  margin-bottom: 10px;
}

.difference-of-us-item .icon {
  height: 85px;
  flex: 0 0 auto;
  width: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 8px;
  color: #00C8FF;
  background-color: rgba(0, 200, 255, 0.1);
}

.difference-of-us-item:nth-child(even) .icon {
  color: #0078FF;
  background-color: rgba(0, 120, 255, 0.1);
}

.has-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.has-shapes .shape {
  z-index: 9;
  position: absolute;
}

.form-control {
  color: #233242 !important;
}

.form-control::placeholder {
  opacity: 0.5;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #fefefe;
  cursor: no-drop;
}

.form-control:not(textarea) {
  height: 55px;
}

textarea.form-control {
  height: 140px;
}

.form-control:focus {
  border-color: #0078FF;
}

.form-group {
  position: relative;
  margin-top: 8px;
}

.form-group label {
  position: absolute;
  background-color: #fefefe;
  top: -13px;
  left: 12px;
  padding: 0 9px;
}

.social-icons a {
  display: inline-block;
  height: 45px;
  width: 45px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* Utility classes */
.d-block {
  display: block !important;
}

.d-sm-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.text-center {
  text-align: center !important;
}

.text-lg-start {
  text-align: left !important;
}

.text-md-end {
  text-align: right !important;
}

.position-relative {
  position: relative !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.w-100 {
  width: 100% !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Spacing */
.m-2 {
  margin: 0.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-lg-0 {
  margin-top: 0 !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.p-3 {
  padding: 1rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.ps-lg-5 {
  padding-left: 3rem !important;
}

/* Text */
.text-capitalize {
  text-transform: capitalize !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.applyLoanModal .modal-content {
  padding: 10px;
}
/* Стили для формы кредита */
/* Стили для формы кредита */
.loan-form {
  background-color: #fefefe !important;
}

.loan-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.loan-form .form-control:focus {
  border-color: #0078FF;
  box-shadow: 0 0 0 0.2rem rgba(0, 120, 255, 0.1);
}

.loan-form .form-group label {
  color: #233242;
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

/* Стили для кнопки отправки */
.loan-submit-btn {
  font-size: 22px;
  border-radius: 15px;
  padding: 20px 100px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .loan-form {
    padding: 1.5rem !important;
    margin: 0 10px;
  }

  .loan-submit-btn {
    font-size: 18px;
    padding: 16px 40px;
    width: 100%;
  }

  .loan-form .form-control {
    font-size: 16px;
    padding: 14px 12px;
  }

  /* Исправление для лейблов на мобильных устройствах */
  .loan-form .form-group {
    margin-bottom: 1.5rem;
  }

  .loan-form .form-group label {
    position: static;
    background: none;
    padding: 0;
    margin-bottom: 10px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .loan-submit-btn {
    font-size: 16px;
    padding: 14px 30px;
  }

  .loan-form {
    padding: 1rem !important;
  }
}

/* Анимация для успешного сообщения */
.success-message {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Анимация для успешного сообщения */
.success-message {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Стили для финального экрана */
.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  position: relative;
}

.cta-title {
  font-size: 32px;
  color: #233242;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 24px;
  }
}

.cta-btn {
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 120, 255, 0.3);
}

/* Стиль для второй кнопки */
.btn-secondary {
  background: #00C8FF;
  color: #fff;
  border-color: #00C8FF;
}

.btn-secondary:hover {
  background: #00b0e0 !important;
  color: #fff;
  border-color: #00b0e0;
}

/* Адаптивность для кнопок */
@media (max-width: 576px) {
  .cta-buttons .col-md-6 {
    margin-bottom: 15px;
  }
}
.success-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.success-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.success-popup-content {
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 340px;
  width: 100%;
}

.success-popup-icon {
  font-size: 48px;
  color: #28a745; /* зелёный, как bootstrap success */
  margin-bottom: 16px;
}

.success-popup-text {
  font-size: 18px;
  font-weight: 500;
}
/* Telegram style button – крупнее */
.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 52px;         /* было 12px 36px */
  border-radius: 999px;
  background: linear-gradient(135deg, #37BBFE 0%, #007DBB 100%);
  border: none;
  font-weight: 600;
  font-size: 20px;            /* было 18px */
  color: #fff;
}

.btn-telegram:hover,
.btn-telegram:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(55, 187, 254, 0.5);
  color: #fff;
  background: linear-gradient(135deg, #37BBFE 0%, #007DBB 100%);
}

.btn-telegram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-telegram-icon svg {
  width: 50px;   /* было 26/30px */
  height: 50px;
  display: block;
}

/* На маленьких экранах всё ещё чуть меньше, но больше чем раньше */
@media (max-width: 576px) {
  .btn-telegram {
    padding: 14px 36px;       /* было 10px 28px */
    font-size: 18px;          /* было 16px */
  }

  .btn-telegram-icon svg {
    width: 24px;              /* было 22px */
    height: 24px;
  }
}
