    html, body {
      height: 100%;
      background: linear-gradient(180deg, #e7e6fb 0%, #f8f5f2 60%, #f6d5cd 100%);
      min-height: 100vh;
      font-family: 'Segoe UI', Inter, Arial, sans-serif;
      color: #23272e;
    }
    body {
      margin: 0;
    }
    header {
      padding: 2.5rem 0 2rem 0;
      text-align: center;
      background: linear-gradient(135deg, #5b7e87 60%, #507987 100%);
      color: #fff;
      box-shadow: 0 2px 20px #c8b6e5aa;
      position: relative;
    }
    header h1 {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: .5rem;
      letter-spacing: -.01em;
      text-shadow: 0 2px 16px #6ac6ff77;
    }
    header p {
      font-size: 1.14rem;
      opacity: .95;
      margin-bottom: 1.1rem;
      text-shadow: 0 1px 8px #6ac6ff38;
    }
    .btn-primary {
      background: #facc15;
      color: #3b4c5e;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      padding: 13px 38px;
      font-size: 1.08rem;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, box-shadow .2s;
      box-shadow: 0 2px 16px #cfcfb888;
      display: inline-block;
    }
    .btn-primary:hover {
      background: #ffe066;
      box-shadow: 0 6px 32px #ffe06666;
      color: #1d2232;
    }

    main {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 1rem 3rem 1rem;
    }

    /* Hero About Block */
    .about-hero {
      background: none;
      padding: 54px 0 32px 0;
      margin-bottom: 16px;
    }
    .about-container {
      max-width: 950px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
      padding: 0 16px;
    }
    .about-photo-signature {
	  flex-shrink: 0;
	  width: 280px;
	  background:#eceaf8;
	  border-radius: 28px;
	  box-shadow: 0 6px 32px 0 #e6d6cf88;
	  border: 5px solid #f6d5cd;
	  overflow: hidden;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: flex-start;
	  padding-bottom: 12px;
	  gap: 12px;
	}

	.about-photo-signature img {
	  width: 100%;
	  height: 340px;
	  object-fit: cover;
	  border-radius: 22px;
	  box-shadow: 0 2px 12px #6ac6ff33;
	}
	.photo-frame {
	  position: relative;
	  max-width: 280px;
	  margin: 0 auto;
	  border-radius: 20px;
	  box-shadow: 0 8px 32px #e6d5cd44;
	  border: 4px solid #facc15;
	  background: #fff;
	  overflow: visible;
	   animation: softFloat 8s ease-in-out infinite;
	}
	 
@keyframes softFloat {
  0%   { transform: translateY(0px) }
  50%  { transform: translateY(-10px) }
  100% { transform: translateY(0px) }
}
.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}
.photo-sign-badge {
  position: absolute;
  left: 50%;
  bottom: -25px; 
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 12px #b2b4dd33;
  border-radius: 14px;
  border: 1.5px solid #eceaf8;
  padding: 7px 22px 7px 14px;
  font-weight: 600;
  font-size: 1.13rem;
  color: #506488;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 2;
  min-width: 134px;
  opacity: 0.97;
}

.photo-sign-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: .25s ease;
}

.photo-sign-badge span:hover {
    background: #e9f6ff;
    transform: translateY(-2px);
}

.sign-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .45s cubic-bezier(.77,0,.18,1), opacity .33s;
  margin-left: 0;
  pointer-events: none;
}

.sign-text.open {
  opacity: 1;
  max-width: 200px;
  margin-left: 10px;
  pointer-events: all;
}
@media (max-width:600px) {
  .photo-sign-badge {
    font-size: .98rem;
    padding: 6px 10px 6px 10px;
    min-width: 88px;
    bottom: -20px;
  }
}
	.icon-envelope svg {
	  width: 22px;
	  height: 22px;
	  vertical-align: middle;
	  opacity: .85;
	}
	#photo-sign-text {
	  opacity: 0;
	  max-width: 0;
	  pointer-events: none;
	  white-space: nowrap;
	  overflow: hidden;
	  transition: all .35s cubic-bezier(.77,0,.18,1);
	}
	#photo-sign-text.open {
	  opacity: 1;
	  max-width: 220px;
	  pointer-events: all;
	  margin-left: 10px;
	}

    .about-text {
      flex: 1 1 320px;
      min-width: 270px;
    }
    .about-text h2 {
      color: #506488;
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 18px;
      margin-top: 0;
      letter-spacing: -.01em;
    }
    .about-lead {
      font-size: 1.17rem;
      color: #23272e;
      margin-bottom: 16px;
      line-height: 1.58;
    }
    .about-desc {
      color: #7a869a;
      font-size: 1.05rem;
      margin-bottom: 24px;
    }
    .about-btn {
      display: inline-block;
      background: #6ac6ff;
      color: #3b4c5e;
      font-weight: 600;
      font-size: 1.06rem;
      padding: 13px 32px;
      border-radius: 14px;
      box-shadow: 0 2px 16px #7ed4f44a;
      text-decoration: none;
      transition: background .22s, color .22s, box-shadow .22s;
    }
    .about-btn:hover {
      background: #8ad8ff;
      color: #253149;
      box-shadow: 0 6px 28px #80d7fa7d;
    }
    @media (max-width: 900px) {
      .about-container {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
      }
      .about-photo { margin: 0 auto; }
    }
	
.cta-down {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-label {
  font-size: 1.5rem;
  color: #2a3454;
}

.cta-accent {
  color: #6ac6ff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cta-arrow-btn {
  margin-top: 10px;
  border: none;
  background: none;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 4px 24px #6ac6ff2a, 0 2px 10px #3370a733;
  transition: box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  outline: none;
}

.cta-arrow-btn:hover {
  box-shadow: 0 8px 32px #6ac6ff38, 0 2px 14px #facc1530;
  transform: scale(1.07);
}

 
.portfolio-swiper,
.swiper,
.swiper-wrapper {
  width: 100%;
  box-sizing: border-box;
}

 
.portfolio-block {
	 position: relative;
  background: none;
   overflow: hidden;
}
.portfolio-title {
  color: #506488;
  font-weight: 700;
  font-size: 2.2rem;
}
.portfolio-card {
   border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #ffffff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.portfolio-card:hover {
  box-shadow: 0 6px 36px #6ac6ff29;
  border-color: #6ac6ff44;
}
.portfolio-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* те, що було в ::after – тепер на посиланні */
.portfolio-overlay-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px 14px;

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;

  color: #ffffff;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75), transparent 60%);

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* показуємо оверлей при hover на картці */
.portfolio-card:hover .portfolio-overlay-link {
  opacity: 1;
  transform: translateY(0);
}

/* ховер по посиланню (опційно трохи підсвітити) */
.portfolio-overlay-link:hover {
  color: #ffffff;
}


.portfolio-thumb {
  transition: transform 0.4s ease;
}

.portfolio-img img {
  box-shadow: 0 1px 8px #6ac6ff22;
  transition: transform .18s;
}
.portfolio-img img:hover {
  transform: scale(1.03);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  border-color: rgba(106, 198, 255, 0.7);
}

.portfolio-card:hover .portfolio-thumb {
  transform: scale(1.04);
}

.portfolio-card:hover .portfolio-img::after {
  opacity: 1;
  transform: translateY(0);
}



.badge.bg-primary-soft {
  background: #e7f1fa;
  color: #3370a7;
}
.badge.bg-secondary-soft {
  background: #eee9f6;
  color: #8d69b4;
}
.badge.bg-success-soft {
  background: #e6f6ee;
  color: #4cb589;
}
.badge.bg-info-soft {
  background: #e8f6fb;
  color: #2196f3;
}
.link-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #3b82f6;
  font-weight: 500;
}

.link-btn i {
  font-size: 0.9rem;
  transform: translateY(1px);
}

.link-btn:hover { color: #facc15; }


.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0 4px 16px #3370a738, 0 1.5px 8px #facc1544;
  display: flex !important;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.22s, box-shadow 0.22s, scale 0.17s;
  border: none;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}

/* SVG-стрілки */
.swiper-button-next::before,
.swiper-button-prev::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
}
.swiper-button-prev::before {
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%233370a7" stroke-width="2.5" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M20 8l-8 8 8 8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.swiper-button-next::before {
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%233370a7" stroke-width="2.5" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M12 8l8 8-8 8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}


/* Ховер-ефекти */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #e7f1fa;
  box-shadow: 0 8px 32px #6ac6ff38, 0 2px 12px #facc1522;
  scale: 1.09;
}


@media (max-width: 1100px) {
  .swiper-button-next { right: -15px; }
  .swiper-button-prev { left: -15px; }
}
@media (max-width: 900px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: auto;
    bottom: 62px;
    transform: none;
    left: auto; right: auto;
  }
  .swiper-button-next { left: 70%; }
  .swiper-button-prev { left: 20%; }
}
/* На дуже малих екранах — ще менше стрілки */
@media (max-width: 600px) {
  .swiper-button-next, .swiper-button-prev {
    width: 36px; height: 36px;
  }
  .swiper-button-next::before, .swiper-button-prev::before {
    width: 24px; height: 24px;
    background-size: 24px 24px;
  }
  .swiper-button-next { left: 72%; }
  .swiper-button-prev { left: 10%; }
}

/* Неактивні стрілки */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .38;
  pointer-events: none;
}

/* Пагінація завжди знизу */
.swiper-pagination {
  position: absolute;
  left: 0; right: 0;
  bottom: 18px;
  z-index: 2;
  text-align: center;
  pointer-events: auto;
  }
  
  
/* ===== SERVICES WOW ===== */

.services-block {
  padding: 64px 0;
}

.services-block h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #506488;
  font-weight: 700;
}

.packages-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.package-card {
  border-radius: 24px;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.package-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2a3c;
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    text-align: left;
    color: #253149;
    font-size: 1.07rem;
}
/*.package-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: #4b5563;
  font-size: 0.95rem;
}*/

/* hover */
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: #6ac6ff;
}


.package-popular {
  position: relative;
  background: radial-gradient(circle at top, #fefce8, #ffffff);
  border-width: 2px;
  border-color: #facc15;
}

.package-popular::before {
  content: "Рекомендовано";
  position: absolute;
  top: -12px;
  left: 18px;
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #facc15;
  color: #1f2937;
  font-weight: 700;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #6ac6ff, #3b82f6);
  color: #ffffff;
  text-decoration: none;
  border: none;
  min-height: 44px;
  font-size: 0.95rem;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.package-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 18px 44px rgba(59, 130, 246, 0.5);
}

@media (max-width: 992px) {
  .packages-row {
    grid-template-columns: 1fr;
  }
}

/* ===== UNIVERSAL SCROLL REVEAL ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
	
.request-block {
  padding: 72px 0 90px;
  background: radial-gradient(circle at top, #eef3ff 0, #fdf7f4 55%, #ffffff 100%);
  box-shadow: 0 6px 36px #e6d6cf88;
  max-width: 980px;
  margin: 0 auto 54px auto;
}


.request-block h2 {
  color: #506488;
  font-weight: 700;
}

.request-block p {
  color: #4b5563;
  max-width: 720px;
  margin-inline: auto;
}

/* ===== REQUEST FORM CARD ===== */

#request-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;

}


#request-form .row.g-3,
#request-form .mb-3 {
  margin-bottom: 1.1rem !important;
}
 
#request-form .form-label,
#request-form label.fw-semibold {
  font-size: 0.9rem;
  color: #374151;
}

#request-form .form-control,
#request-form .form-select {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#request-form .form-control:focus,
#request-form .form-select:focus {
  border-color: #6ac6ff;
  box-shadow: 0 0 0 1px rgba(106, 198, 255, 0.5);
}

#request-form .form-text {
  font-size: 0.8rem;
  color: #9ca3af !important;
}

/* CHECKBOX CHIPS */
#request-form .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#request-form .form-check-inline {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #475569;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}
#request-form .form-check-inline:hover {
  border-color: #93c5fd;
  background: #f0f7ff;
}
/* Активний стан (вибрано) */
#request-form .form-check-inline:has(.form-check-input:checked) {
  background: linear-gradient(135deg, #6ac6ff, #3b82f6);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(59,130,246,0.35);
  transform: translateY(-1px);
}

/* label у чіпі */
#request-form .form-check-label {
  cursor: pointer;
  margin: 0;
  padding: 0;
  background: transparent !important;
  color: inherit !important;
}

/* SUPPORT BLOCK */

#supportCheckbox + label {
  font-size: 0.95rem;
}

#supportCheckbox + label .field-hint {
  font-size: 0.8rem;
  color: #6b7280;
}

#supportMonthsBlock {
  padding: 8px 12px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px dashed rgba(148, 163, 184, 0.8);
}

#supportMonths {
  border-radius: 999px;
  padding-inline: 0.75rem 2rem;
}


#supportSocial.form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


.form-check:not(.form-check-inline) .form-check-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: color 0.25s ease;
  font-size: 0.95rem;
  color: #4b5563;
}

.form-check:not(.form-check-inline) .form-check-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #93c5fd;
  background: #ffffff;
  transition: all 0.25s ease;
}


#supportSocial:checked + .form-check-label::before {
  background: linear-gradient(135deg, #49e5ab, #198754);
    border-color: #088408;
  box-shadow: 0 2px 6px rgba(59,130,246,0.3);
}

#supportSocial:checked + .form-check-label {
  color: #2563eb;
}
/* CALC RESULT CARD */

#calcResult {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #008000 !important;
  background: radial-gradient(circle at top left, #eff6ff, #ffffff);
  border-radius: 16px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  /*box-shadow: 0 12px 26px rgba(37, 99, 235, 0.25);*/
}

#request-form .text-end label.fw-semibold {
  font-size: 0.85rem;
  color: #6b7280;
}

/* MAIN CTA BUTTON */

.request-btn {
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #6ac6ff, #3b82f6);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-block: 0.9rem;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.request-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.55);
}

.request-btn:active {
  transform: translateY(0);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

@media (max-width: 768px) {
  .request-block { padding: 12px 3vw; }
  .request-title { font-size: 1.3rem; }
  .fs-5 { font-size: 1.09rem!important; }
}
.request-badge {
  background: #6ac6ff18;
  color: #3b4c5e;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 4px 16px;
  margin-left: 8px;
  letter-spacing: .02em;
}
.request-lead {
  text-align: center;
  color: #7a869a;
  font-size: 1.09rem;
  margin-bottom: 24px;
}
form#request-form {
  margin: 0 auto;
}
.form-row {
  margin-bottom: 18px;
}
.form-row-half {
  display: inline-block;
  width: 48%;
  vertical-align: top;
}
.form-row-half:first-child { margin-right: 3.5%; }
label {
  color: #506488;
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 4px;
     display: inline-block;
}
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  font-size: 1.1rem;
  padding: 10px 13px;
  border-radius: 10px;
  border: 1.2px solid #c3cad8;
  background: #fff;
  box-shadow: 0 1px 6px #f6d5cd18;
  margin-top: 6px;
  margin-bottom: 2px;
  color: #23272e;
  font-family: inherit;
  resize: vertical;
}
textarea { min-height: 70px; }
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 6px;
  margin-bottom: 2px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  font-size: 1.03rem;
  color: #3b4c5e;
  font-weight: 400;
  background: #f8f5f2;
  border-radius: 8px;
  padding: 5px 14px;
  box-shadow: 0 1px 5px #f6d5cd14;
}
.field-hint {
  color: #b1b8c8;
  font-size: 0.96rem;
  font-weight: 400;
  margin-left: 6px;
}
.d-flex .form-check {
  margin-bottom: 0 !important;
}

.form-check-inline {
  display: flex;
  align-items: center;
  gap: 7px;
}

.form-check-label {
  display: flex;
  align-items: center;
}
.d-none { display: none !important; }

.d-flex.flex-row.flex-wrap {
  gap: 12px 18px;
}
@media (min-width: 900px) {
  .d-flex.flex-row.flex-wrap.justify-content-center .form-check {
    flex: 1 1 15%;
    min-width: 190px;
    justify-content: flex-start;
  }
}
@media (max-width: 899px) {
  .d-flex.flex-row.flex-wrap.justify-content-center .form-check {
    flex: 1 1 45%;
    min-width: 160px;
  }
}
@media (max-width: 599px) {
  .d-flex.flex-row.flex-wrap.justify-content-center .form-check {
    flex: 1 1 100%;
    min-width: 120px;
  }
}
/* Додає сучасності й м’якості */
.request-block {
  background: #fffdfcfa;
  border-radius: 28px;
  box-shadow: 0 4px 36px #d5e5f733;
  padding: 2.5rem 1.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .request-block {
    padding: 1rem 0.5rem;
  }
}

.bonus-badge {
  background: #facc15;
  color: #3b4c5e;
  font-size: 0.98rem;
  border-radius: 10px;
  padding: 2px 10px;
  margin: 0 4px;
  font-weight: 600;
  letter-spacing: .03em;
  display: inline-block;
}

.request-info {
  text-align: center;
  color: #b1b8c8;
  font-size: 0.99rem;
  margin-top: 10px;
}
@media (max-width: 700px) {
  .request-block { padding: 24px 5vw; }
  .form-row-half { width: 100%; margin: 0 0 9px 0; display: block; }
  .request-title { font-size: 1.2rem; }
}
@media (max-width: 576px) {
  .d-flex.flex-nowrap {
    flex-direction: column !important;
    gap: 8px !important;
  }
}
.steps-block {
  background: none;
}
.steps-row {
  border-top: 2px solid #e7e6fb;
  position: relative;
}
.step-item {
  min-width: 180px;
}
.step-circle {
    width: 86px;
    height: 86px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px #6ac6ff17;
    border: 4px solid #e7e6fb;
    position: relative;
    transition: box-shadow .22s, border-color .22s;
}

.step-circle:hover {
  box-shadow: 0 8px 28px #6ac6ff22;
  border-color: #6ac6ff;
}
@media (max-width: 768px) {
  .steps-row > .step-item {
    margin-bottom: 2rem;
  }
}

.step-num {
  display: inline-block;
  background: #6ac6ff;
  color: #fff;
  border-radius: 12px;
  font-size: 1.2rem;
  min-width: 32px;
  min-height: 32px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: .4rem;
}
.step-desc {
  min-height: 40px;
}
@media (max-width: 1100px) {
  .steps-row { flex-wrap: wrap !important; }
  .step-item { min-width: 160px; margin-bottom: 34px; }
}

.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #6ac6ff;
  color: #fff;
  padding: 16px 28px;
  border-radius: 18px;
  font-size: 1.13rem;
  box-shadow: 0 4px 28px #7ed4f46a;
  opacity: .97;
  z-index: 11111;
  transition: opacity .3s;
}
.toast.success { background: #63d471; }
.toast.error { background: #fa5e5e; }

    /* Contact Form */
    #contact {
      background: #f6d5cd22;
      border-radius: 16px;
      max-width: 520px;
      margin: 48px auto 0 auto;
      box-shadow: 0 2px 16px #6ac6ff18;
      padding: 34px 18px 30px 18px;
    }
    #contact h2 {
      color: #506488;
      font-size: 1.45rem;
      margin-top: 0;
      margin-bottom: 16px;
    }
    form input, form textarea {
      width: 100%;
      margin: 0.5rem 0 1rem 0;
      padding: 1rem;
      border: 1px solid #c3cad8;
      border-radius: 10px;
      font-size: 1.08rem;
      background: #fff;
      color: #23272e;
      font-family: inherit;
      box-shadow: 0 1px 8px #f6d5cd18;
    }
    form button {
      background: #6ac6ff;
      color: #3b4c5e;
      font-weight: 600;
      border: none;
      padding: 13px 28px;
      border-radius: 12px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background .2s, box-shadow .2s;
      box-shadow: 0 2px 12px #6ac6ff26;
    }
    form button:hover {
      background: #8ad8ff;
      color: #253149;
      box-shadow: 0 6px 24px #80d7fa44;
    }
    /* Footer */
    footer {
      text-align: center;
      padding: 2rem 0 .6rem 0;
      color: #7a869a;
      background: none;
      font-size: 1rem;
      letter-spacing: .02em;
    }