@charset "UTF-8";
@font-face {
  font-family: InterTight;
  src: url("../fonts/InterTight-Regular.ttf");
}
@font-face {
  font-family: InterTight-semibold;
  src: url("../fonts/InterTight-SemiBold.ttf");
}
@font-face {
  font-family: InterTight-bold;
  src: url("../fonts/InterTight-Bold.ttf");
}
@font-face {
  font-family: InterTight-medium;
  src: url("../fonts/InterTight-Medium.ttf");
}
:root {
  --font-main: "InterTight", sans-serif;
  --font-semibold: "InterTight-semibold", sans-serif;
  --font-bold: "InterTight-bold", sans-serif;
  --font-medium: "InterTight-medium", sans-serif;
  --color-primary: #0D2444;
  --color-white: #fff;
  --color-accent: #87BCF2;
  --blue-light: #87BCF2;
  --border: rgba(13,36,68,0.1);
  --font-semi: 600;
  --radius: 10px;
  --shadow: 0 8px 32px rgba(13,36,68,0.13);
  --dropdown-shadow: 0 12px 40px rgba(13,36,68,0.16);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --text: #333;
  --placeholder: #aab0b9;
  --label: #6b7280;
  --border-cont: #d1d5db;
  --border-focus: #1a3a6b;
  --white: #ffffff;
  --required: #e53e3e;
  --radius-card: 12px;
  --radius-input: 5px;
  --radius-btn: 6px;
  --cp-navy: #0d1f3c;
  --cp-body: #3a3a3a;
  --cp-label: #6b7280;
  --cp-placeholder: #b0b8c1;
  --cp-border: #dde1e7;
  --cp-border-focus: #1a3a6b;
  --cp-link: #87BCF2;
  --cp-white: #ffffff;
  --cp-error: #dc2626;
  --cp-radius-card: 10px;
  --cp-radius-field: 5px;
}

html, body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "InterTight", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  scroll-behavior: smooth;
}

input[type=radio] {
  accent-color: #0D2444;
}

h1, h2, h3, h4, h5 {
  all: unset;
}

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

* {
  margin: 0;
  padding: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture, svg, video, canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

input, button, textarea, select {
  font: inherit;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
  cursor: pointer;
}

a:hover {
  color: #87BCF2 !important;
}

.burger-btn {
  display: none;
}

.wrapper {
  overflow: hidden;
}

@media (min-width: 320px) {
  .container {
    max-width: 310px;
  }
}
@media (min-width: 390px) {
  .container {
    max-width: 380px;
  }
}
@media (min-width: 480px) {
  .container {
    max-width: 470px;
  }
}
@media (min-width: 600px) {
  .container {
    max-width: 570px;
  }
}
@media (min-width: 650px) {
  .container {
    max-width: 620px;
  }
}
@media (min-width: 720px) {
  .container {
    max-width: 710px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 738px;
  }
}
@media (min-width: 980px) {
  .container {
    max-width: 940px;
  }
}
@media (min-width: 1100px) {
  .container {
    max-width: 1020px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1110px;
  }
}
@media (min-width: 1260px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1820px;
  }
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.section-spacer {
  width: 100%;
  height: 120px;
}

.section-spacer-small {
  width: 100%;
  height: 80px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  justify-content: center;
}
.section-header span {
  font-family: var(--font-semibold);
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  line-height: 48px;
}
.section-header p {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
  font-weight: 400;
  width: 30%;
  margin: 0 auto;
  line-height: 18px;
}

.btn-gradient {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
  display: flex;
  flex-direction: row;
  gap: 15px;
  font-family: var(--font-semibold);
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px 10px 20px;
  border: #0D2444 1px solid;
  border-radius: 8px;
  text-align: center;
  align-self: center;
  transition: 0.2s;
}

.btn-gradient:hover {
  transition: 0.2s;
  background: #fff;
  border: #0D2444 1px solid;
  color: #0D2444 !important;
}
.btn-gradient:hover svg path {
  fill: #0D2444;
}

.btn-transparent {
  background: #fff;
  border-radius: 8px;
  border: rgba(13, 36, 68, 0.1725490196) 1px solid;
  padding: 10px 20px 10px 20px;
  font-family: var(--font-semibold);
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  height: auto;
  text-align: center;
  align-self: center;
  transition: 0.2s;
}
.btn-transparent svg path {
  fill: #0D2444;
}

.btn-transparent:hover {
  border: #0D2444 1px solid;
  transition: 0.2s;
}
.btn-transparent:hover svg path {
  fill: #87BCF2;
}

.card {
  display: flex;
  flex-direction: column;
  border: rgba(13, 36, 68, 0.1725490196) 1px solid;
  border-radius: 12px;
  padding: 1.5rem;
  gap: 30px;
}
.card .card-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card .card-text span {
  font-family: var(--font-semibold);
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
}
.card .card-text p {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
  line-height: 18px;
}
.card .card-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.card .card-info span {
  font-family: var(--font-semibold);
  font-size: 20px;
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
}

.bg-color-blue {
  background-color: #F1F7FE;
}

.bg-color-darkblue {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
}

.section-mainpage-banner {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.section-mainpage-banner .mainpage-banner-text {
  width: 50%;
  justify-content: center;
  align-items: center;
  gap: 50px;
  align-self: center;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap h1 {
  font-size: 64px;
  line-height: 77px;
  font-family: var(--font-bold);
  color: #0D2444;
  font-weight: 700;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap p {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-btns .btn-gradient {
  padding: 15px 25px 15px 25px;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies .companies-img {
  position: relative;
  width: 100px;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies .companies-img .avatar {
  width: 44px;
  height: 44px;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies .companies-img .avatar2 {
  position: absolute;
  left: 32px;
  z-index: 10;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies .companies-img .avatar3 {
  position: absolute;
  left: 62px;
  z-index: 20;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies .companies-number {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies .companies-number span {
  font-family: var(--font-bold);
  font-size: 16px;
  color: #000;
}
.section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies .companies-number p {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--Primary-Transparent-50, rgba(13, 36, 68, 0.5));
}
.section-mainpage-banner .mainpage-banner-img {
  width: 50%;
}
.section-mainpage-banner .mainpage-banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-gift {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
  color: #fff;
  width: 100%;
  height: auto;
}
.section-gift .gift-wrap {
  width: 45%;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.section-gift .gift-wrap .gift-text {
  display: flex;
  gap: 10px;
}
.section-gift .gift-wrap .gift-text span {
  display: flex;
  font-family: var(--font-semibold);
  font-size: 20px;
  color: #fff;
  align-self: self-end;
}
.section-gift .gift-wrap .gift-text p {
  display: flex;
  font-family: var(--font-main);
  font-size: 14px;
  align-self: self-end;
}
.section-services {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-services .services-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  justify-content: space-between;
}
.section-services .services-wrap .service {
  display: flex;
  flex-direction: column;
  width: 49%;
  transition: 0.2s;
}
.section-services .services-wrap .service:hover {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
  transition: 0.2s;
}
.section-services .services-wrap .service:hover .card-icon svg path {
  fill: #fff;
}
.section-services .services-wrap .service:hover .card-text span {
  color: #fff;
}
.section-services .services-wrap .service:hover .card-text p {
  color: #fff;
}
.section-services .services-wrap .service:hover .card-info span {
  color: #fff;
}
.section-services .services-wrap .service:hover .card-info a {
  background: #fff;
  border: #0D2444 1px solid;
  color: #0D2444;
}
.section-services .services-wrap .service:hover .card-info a svg path {
  fill: #0D2444;
}
.section-services .migration-services .card {
  width: 32.5%;
}

.section-why-us {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
}
.section-why-us .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-why-us .container .why-us-text {
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.section-why-us .container .why-us-text .why-us-header span {
  color: #fff;
  text-align: start;
}
.section-why-us .container .why-us-text .why-us-header p {
  color: var(--White-75, rgba(255, 255, 255, 0.75));
  text-align: start;
  margin: 0;
  line-height: 140%;
  width: 50%;
}
.section-why-us .container .why-us-text .why-us-btn a {
  display: flex;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.section-why-us .container .why-us-text .why-us-btn a svg path {
  fill: #0D2444;
}
.section-why-us .container .why-us-text .why-us-btn a:hover svg path {
  fill: #87BCF2;
}
.section-why-us .container .why-us-cards {
  width: 49%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 15px;
}
.section-why-us .container .why-us-cards .card {
  background: rgba(255, 255, 255, 0.062745098);
  border: rgba(255, 255, 255, 0.1254901961) 1px solid;
  width: 49%;
}
.section-why-us .container .why-us-cards .card .card-icon svg path {
  fill: #fff;
}
.section-why-us .container .why-us-cards .card .card-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section-why-us .container .why-us-cards .card .card-text span {
  font-family: var(--font-semibold);
  font-size: 20px;
  color: #fff;
}
.section-why-us .container .why-us-cards .card .card-text p {
  font-family: var(--font-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7529411765);
  line-height: 16px;
}

.section-why-us-light {
  background: #fff;
}
.section-why-us-light .container .why-us-text .why-us-header span {
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
}
.section-why-us-light .container .why-us-text .why-us-header p {
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
}
.section-why-us-light .container .why-us-text .why-us-btn a {
  width: -moz-fit-content;
  width: fit-content;
}
.section-why-us-light .container .why-us-text .why-us-btn a svg path {
  fill: #fff;
}
.section-why-us-light .container .why-us-text .why-us-btn a:hover svg path {
  fill: #0D2444;
}
.section-why-us-light .container .why-us-cards .card {
  background: rgba(255, 255, 255, 0.062745098);
  border: rgba(13, 36, 68, 0.1019607843) 1px solid;
}
.section-why-us-light .container .why-us-cards .card .card-icon svg path {
  fill: #fff;
}
.section-why-us-light .container .why-us-cards .card .card-text span {
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
}
.section-why-us-light .container .why-us-cards .card .card-text p {
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
}

.section-review {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 10rem;
  position: relative;
}
.section-review .review-slider-wrapper {
  display: flex;
  width: 100%;
  gap: 60px;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.section-review .review-slider-wrapper .review-slider {
  width: 100%;
  position: relative;
}
.section-review .review-slider-wrapper .review-slider .swiper-wrapper {
  width: 100%;
}
.section-review .review-slider-wrapper .review-slider .swiper-wrapper .swiper-slide .slide-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-review .review-slider-wrapper .review-slider .swiper-wrapper .swiper-slide .slide-content .slider-stars {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.section-review .review-slider-wrapper .review-slider .swiper-wrapper .swiper-slide .slide-content .slider-title {
  font-family: var(--font-semibold);
  font-size: 20px;
  color: #0D2444;
  width: 85%;
}
.section-review .review-slider-wrapper .review-slider .swiper-wrapper .swiper-slide .slide-content .slider-text {
  font-family: var(--font-main);
  color: rgba(13, 36, 68, 0.6941176471);
  font-size: 14px;
  line-height: 20px;
}
.section-review .review-slider-wrapper .review-slider .swiper-wrapper .swiper-slide .slide-content .slider-span {
  font-family: var(--font-main);
  color: rgba(13, 36, 68, 0.4470588235);
  font-size: 14px;
}
.section-review .slider-btns-wrap {
  position: absolute;
  width: 130px;
  height: 50px;
  display: flex;
  flex-direction: row;
  left: 45%;
  bottom: -6rem;
  z-index: 99999;
  justify-content: space-between;
}
.section-review .slider-btns-wrap .swiper-button-next {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.section-review .slider-btns-wrap .swiper-button-next svg {
  width: 12px;
  height: 12px;
}
.section-review .slider-btns-wrap .swiper-button-next::after {
  content: "" !important;
}
.section-review .slider-btns-wrap .swiper-button-prev {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(17, 68, 123) 0%, rgb(13, 36, 68) 100%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.section-review .slider-btns-wrap .swiper-button-prev svg {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
}
.section-review .slider-btns-wrap .swiper-button-prev::after {
  content: "" !important;
}

footer {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
}
footer .section-footer {
  display: flex;
  flex-direction: column;
}
footer .first-row {
  padding: 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .first-row .footer-cred {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 30%;
}
footer .first-row .footer-cred p {
  color: var(--White-75, rgba(255, 255, 255, 0.75));
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  width: 50%;
}
footer .first-row .footer-cred .footer-socials {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
footer .first-row .footer-menus {
  width: 70%;
  display: flex;
}
footer .first-row .footer-menus .menu-column {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .first-row .footer-menus .menu-column span {
  color: var(--White-100, rgb(255, 255, 255));
  font-family: var(--font-semibold);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
}
footer .first-row .footer-menus .menu-column .footer-menu-ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .first-row .footer-menus .menu-column .footer-menu-ul li {
  color: var(--White-100, rgb(255, 255, 255));
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}
footer .first-row .footer-menus .menu-column .footer-menu-ul .contact-footer-a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  color: var(--White-75, rgba(255, 255, 255, 0.75));
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}
footer .second-row {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .second-row p {
  color: var(--White-100, rgb(255, 255, 255));
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}

.section-breadcrums {
  display: flex;
  border-bottom: rgba(13, 36, 68, 0.1019607843) 1px solid;
  padding-top: 1rem;
  padding-bottom: 1rem;
  align-items: center;
}
.section-breadcrums .container .breadcrumbs-wrap {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  align-self: center;
  text-align: center;
}
.section-breadcrums .container .breadcrumbs-wrap .crumb {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  align-self: center;
}
.section-breadcrums .container .breadcrumbs-wrap .active-separator {
  align-items: center;
  align-self: center;
  justify-content: center;
  display: flex;
}

.section-banner .container .banner-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 48px;
  padding-bottom: 48px;
}
.section-banner .container .banner-text h1 {
  width: 65%;
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
  font-family: var(--font-bold);
  font-size: 72px;
  font-weight: 700;
  line-height: 86px;
  letter-spacing: 0%;
  text-align: left;
}
.section-banner .container .banner-text h1 span {
  color: #87BCF2;
  font-family: var(--font-bold);
  font-size: 72px;
  font-weight: 700;
  line-height: 86px;
  letter-spacing: 0%;
  text-align: left;
}
.section-banner .container .banner-text p {
  width: 30%;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  align-self: end;
}
.section-banner .banner-img {
  width: 100%;
}
.section-banner .banner-img img {
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.section-about-us .about-us-text {
  display: flex;
  flex-direction: row;
  border-bottom: rgba(13, 36, 68, 0.1019607843) 1px solid;
  padding-bottom: 48px;
}
.section-about-us .about-us-text span {
  width: 50%;
  font-size: 40px;
  font-family: var(--font-semibold);
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: left;
}
.section-about-us .about-us-text .text-p {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-about-us .about-us-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 48px;
}
.section-about-us .about-us-cards .cards-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-about-us .about-us-cards .cards-wrap .card {
  width: 24%;
}
.section-about-us .about-us-cards .about-us-btn {
  display: flex;
  align-self: center;
  align-items: center;
}

.section-locations .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-locations .container .location-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-locations .container .location-wrap .location {
  width: 32%;
  border: rgba(13, 36, 68, 0.1019607843) 1px solid;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.section-locations .container .location-wrap .location .location-img {
  border-bottom: rgba(13, 36, 68, 0.1019607843) 1px solid;
}
.section-locations .container .location-wrap .location .location-img img {
  display: flex;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-locations .container .location-wrap .location .location-description {
  display: flex;
  flex-direction: row;
  padding: 24px;
  justify-content: space-between;
}
.section-locations .container .location-wrap .location .location-description .location-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-locations .container .location-wrap .location .location-description .location-text span {
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
  font-family: var(--font-semibold);
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: left;
}
.section-locations .container .location-wrap .location .location-description .location-text p {
  color: var(--Primary-Transparent-50, rgba(13, 36, 68, 0.5));
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}
.section-locations .container .location-wrap .location .location-description .location-btn {
  display: flex;
  align-self: end;
}

.section-tarriffs .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-tarriffs .container .card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width: 30%;
  background-color: #fff;
}
.section-tarriffs .container .card .card-name {
  border-bottom: rgba(13, 36, 68, 0.1019607843) 1px solid;
  padding-bottom: 24px;
}
.section-tarriffs .container .card .card-name span {
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
  font-family: var(--font-semibold);
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: left;
}
.section-tarriffs .container .card .card-price {
  border-bottom: rgba(13, 36, 68, 0.1019607843) 1px solid;
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.section-tarriffs .container .card .card-price span {
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
  font-family: var(--font-semibold);
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: left;
}
.section-tarriffs .container .card .card-price p {
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}
.section-tarriffs .container .card .card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-tarriffs .container .card .card-list p {
  display: flex;
  gap: 8px;
}
.section-tarriffs .container .card .btn-gradient {
  width: 100%;
  display: flex;
  justify-content: center;
}
.section-tarriffs .container .card .btn-transparent {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.section-tarriffs .container .tariff-card-dark {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
}
.section-tarriffs .container .tariff-card-dark .card-name {
  border-bottom: rgba(255, 255, 255, 0.1254901961) 1px solid;
}
.section-tarriffs .container .tariff-card-dark .card-name span {
  color: #fff;
}
.section-tarriffs .container .tariff-card-dark .card-price {
  border-bottom: rgba(255, 255, 255, 0.1254901961) 1px solid;
}
.section-tarriffs .container .tariff-card-dark .card-price span {
  color: #fff;
}
.section-tarriffs .container .tariff-card-dark .card-price p {
  color: #fff;
}
.section-tarriffs .container .tariff-card-dark .card-list p {
  color: #fff;
}

.section-text-with-list .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-text-with-list .container .wrap-ul-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-text-with-list .container .wrap-ul-block span {
  font-family: var(--font-semibold);
  font-size: 40px;
  text-align: left;
  font-weight: 600;
  line-height: 48px;
}
.section-text-with-list .container .wrap-ul-block p {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
  font-weight: 400;
  margin: 0 auto;
  line-height: 20px;
  text-align: left;
}
.section-text-with-list .container .wrap-ul-block ul {
  list-style-type: disc;
  padding-left: 2%;
}
.section-text-with-list .container .wrap-ul-block ul li {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
  font-weight: 400;
  margin: 0 auto;
  line-height: 20px;
  text-align: left;
}
.section-text-with-list .container .wrap-ul-block ul li::marker {
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
}
.section-text-with-list .container .wrap-ol-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-text-with-list .container .wrap-ol-block span {
  color: var(--Primary-Fill-950, rgb(13, 36, 68));
  font-family: var(--font-semibold);
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: left;
}
.section-text-with-list .container .wrap-ol-block p {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
  font-weight: 400;
  margin: 0 auto;
  line-height: 20px;
  text-align: left;
}
.section-text-with-list .container .wrap-ol-block ol {
  list-style-type: decimal;
  padding-left: 2%;
}
.section-text-with-list .container .wrap-ol-block ol li {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
  font-weight: 400;
  margin: 0 auto;
  line-height: 20px;
  text-align: left;
}
.section-text-with-list .container .wrap-ol-block ol li::marker {
  color: var(--Primary-Transparent-75, rgba(13, 36, 68, 0.75));
}

.section-price-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-price-cards .price-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}
.section-price-cards .price-cards .card {
  width: 32.5%;
}
.section-price-cards .btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-steps {
  background: #0D2444;
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
}
.section-steps .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.section-steps .container .section-header span {
  color: #fff;
}
.section-steps .container .section-header p {
  color: #fff;
}
.section-steps .container .step-cards-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-steps .container .step-cards-wrap .card {
  background: rgba(255, 255, 255, 0.062745098);
  border: rgba(255, 255, 255, 0.1019607843) 1px solid;
  width: 24%;
}
.section-steps .container .step-cards-wrap .card .card-icon svg path {
  fill: #fff;
}
.section-steps .container .step-cards-wrap .card .card-text .step-num {
  color: rgba(255, 255, 255, 0.0823529412);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 64px;
  padding-bottom: 24px;
}
.section-steps .container .step-cards-wrap .card .card-text span {
  color: #fff;
  padding-bottom: 16px;
}
.section-steps .container .step-cards-wrap .card .card-text p {
  color: #fff;
}
.section-steps .container .btn {
  display: flex;
  justify-content: center;
}

.snake-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.snake-line path {
  fill: #fff;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-self-emp-cards .section-header {
  text-align: start;
  justify-content: start;
}
.section-self-emp-cards .section-header span {
  text-align: start;
}
.section-self-emp-cards .section-header p {
  text-align: start;
  margin: 0;
  width: 50%;
}
.section-self-emp-cards .price-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}
.section-self-emp-cards .price-cards .card {
  width: 49%;
}

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 40px;
}

.tab {
  flex: 1;
  padding: 20px 20px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  text-align: center;
}

.tab:hover {
  color: #1a1a1a;
}

.tab.active {
  color: #207ED7;
  font-weight: 500;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #207ED7;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.content-box {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
  border-radius: 12px;
  padding: 50px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.content-text {
  flex: 1;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.content-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
}

.content-text p {
  color: #333;
  font-size: 0.95rem;
}

.content-text ul {
  list-style: none;
}

.content-text li {
  padding-left: 0;
  color: #333;
  font-size: 0.95rem;
}

.content-text li strong {
  color: #1a1a1a;
}

.content-text a {
  color: #87BCF2;
  text-decoration: none;
}

.content-text a:hover {
  text-decoration: underline;
}

.info-box {
  background-color: rgba(13, 36, 68, 0.062745098);
  padding: 15px 20px;
  border-radius: 4px;
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}

.content-image {
  flex: 0 0 45%;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-section {
  background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-container {
  width: 100%;
  margin: 0 auto;
}
.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-section {
  /* Left Column - Text Content */
}
.contact-section .contact-text {
  padding-right: 40px;
}
.contact-section .contact-title {
  font-family: var(--font-bold);
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--color-white);
  font-weight: 700;
}
.contact-section .contact-description {
  margin-bottom: 40px;
}
.contact-section .contact-description p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.contact-section .contact-description strong {
  font-family: var(--font-semibold);
  font-weight: 600;
}
.contact-section .inline-link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.contact-section .inline-link:hover {
  opacity: 0.8;
}
.contact-section .contact-footer p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.contact-section {
  /* Right Column - Form Card */
}
.contact-section .contact-form-wrapper {
  display: flex;
  justify-content: center;
}
.contact-section .form-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.contact-section .form-title {
  font-family: var(--font-bold);
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-section .form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}
.contact-section {
  /* Form Styles */
}
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-section .form-group.full-width {
  width: 100%;
}
.contact-section .form-group label {
  font-family: var(--font-semibold);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-section .form-group input,
.contact-section .form-group textarea {
  font-family: var(--font-main);
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 15px;
  color: var(--color-primary);
  transition: all 0.3s ease;
  background: var(--color-white);
}
.contact-section .form-group input::-moz-placeholder, .contact-section .form-group textarea::-moz-placeholder {
  color: #9CA3AF;
}
.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
  color: #9CA3AF;
}
.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(135, 188, 242, 0.1);
}
.contact-section .form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-main);
}
.contact-section {
  /* Form Footer */
}
.contact-section .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 20px;
}
.contact-section .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.contact-section .checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--color-primary);
}
.contact-section .checkbox-label {
  font-size: 13px;
  color: #6B7280;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.4;
}
.contact-section .form-link {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.contact-section .form-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.contact-section .submit-btn {
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.contact-section .submit-btn:active {
  transform: translateY(0);
}
.contact-section .submit-btn svg {
  width: 16px;
  height: 16px;
}
.contact-section {
  /* Responsive Design */
}
@media (max-width: 1024px) {
  .contact-section .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-section .contact-text {
    padding-right: 0;
  }
  .contact-section .contact-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-section {
    padding: 40px 16px;
  }
  .contact-section .contact-title {
    font-size: 32px;
  }
  .contact-section .form-card {
    padding: 32px 24px;
  }
  .contact-section .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-section .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-section .submit-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .contact-section .contact-title {
    font-size: 28px;
  }
  .contact-section .form-title {
    font-size: 24px;
  }
  .contact-section .contact-description p {
    font-size: 15px;
  }
  .contact-section .form-card {
    padding: 24px 20px;
  }
}

.section-license-form .container .form-container {
  background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.section-license-form .container .form-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0;
  background: transparent;
}
.section-license-form .container {
  /* Left Side - Welcome Screen */
}
.section-license-form .container .welcome-section {
  width: 45%;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.section-license-form .container .welcome-section h1 {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-license-form .container .welcome-section p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}
.section-license-form .container .welcome-cta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.section-license-form .container .welcome-cta a {
  color: var(--color-white);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.section-license-form .container .welcome-cta a:hover {
  opacity: 0.8;
}
.section-license-form .container {
  /* Right Side - Form Card */
}
.section-license-form .container .form-card {
  width: 65%;
  background: var(--color-white);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  min-height: 600px;
}
.section-license-form .container {
  /* Step Indicator */
}
.section-license-form .container .step-indicator {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}
.section-license-form .container .step-tab {
  width: 100%;
  padding: 24px 20px;
  text-align: center;
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 0.95rem;
  color: #9ca3af;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.section-license-form .container .step-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.section-license-form .container .step-tab.completed {
  color: var(--color-primary);
}
.section-license-form .container .step-number {
  margin-right: 8px;
}
.section-license-form .container {
  /* Form Content */
}
.section-license-form .container .form-content {
  padding: 40px;
  width: 100%;
  overflow-y: auto;
}
.section-license-form .container .form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}
.section-license-form .container .form-step.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-license-form .container {
  /* Form Elements */
}
.section-license-form .container .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.section-license-form .container .form-group {
  margin-bottom: 20px;
}
.section-license-form .container .form-group.full-width {
  grid-column: 1/-1;
}
.section-license-form .container label {
  /* display: block; */
  font-family: var(--font-semibold);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  /* margin-bottom: 8px; */
  /* text-transform: uppercase; */
  letter-spacing: 0.3px;
}
.section-license-form .container label .required {
  color: #ef4444;
}
.section-license-form .container input[type=text],
.section-license-form .container input[type=email],
.section-license-form .container input[type=tel],
.section-license-form .container select,
.section-license-form .container textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #374151;
  transition: all 0.3s ease;
  background: var(--color-white);
}
.section-license-form .container input::-moz-placeholder, .section-license-form .container textarea::-moz-placeholder {
  color: #9ca3af;
}
.section-license-form .container input::placeholder,
.section-license-form .container textarea::placeholder {
  color: #9ca3af;
}
.section-license-form .container input:focus,
.section-license-form .container select:focus,
.section-license-form .container textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(135, 188, 242, 0.1);
}
.section-license-form .container select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}
.section-license-form .container {
  /* Radio Groups */
}
.section-license-form .container .radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-license-form .container .radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-license-form .container input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-primary);
}
.section-license-form .container .radio-option label {
  margin: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  color: #374151;
}
.section-license-form .container .info-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #e5e7eb;
  color: #6b7280;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
  cursor: help;
}
.section-license-form .container {
  /* Checkbox */
}
.section-license-form .container .checkbox-group {
  margin: 20px 0;
}
.section-license-form .container .checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.section-license-form .container input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}
.section-license-form .container .checkbox-option label {
  margin: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  color: #374151;
  font-size: 0.9rem;
}
.section-license-form .container {
  /* Currency Exchange */
}
.section-license-form .container .currency-exchange {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section-license-form .container .currency-input {
  flex: 1;
}
.section-license-form .container .exchange-icon {
  width: 24px;
  height: 24px;
  color: #6b7280;
  flex-shrink: 0;
  margin-top: 28px;
}
.section-license-form .container {
  /* Price Summary */
}
.section-license-form .container .price-summary {
  background: #f9fafb;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}
.section-license-form .container .price-summary h3 {
  font-family: var(--font-semibold);
  font-weight: 600;
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-license-form .container .price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: #374151;
  font-size: 0.95rem;
}
.section-license-form .container .price-line svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: #10b981;
}
.section-license-form .container .price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 2px solid #e5e7eb;
}
.section-license-form .container .price-total .label {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.section-license-form .container .price-total .amount {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.section-license-form .container .price-detail {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
}
.section-license-form .container {
  /* Summary View */
}
.section-license-form .container .summary-section {
  margin-bottom: 30px;
}
.section-license-form .container .summary-section h3 {
  font-family: var(--font-semibold);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.section-license-form .container .summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.section-license-form .container .summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-license-form .container .summary-label {
  font-size: 0.875rem;
  color: #6b7280;
}
.section-license-form .container .summary-value {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
}
.section-license-form .container {
  /* Buttons */
}
.section-license-form .container .form-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
.section-license-form .container .btn {
  padding: 16px 32px;
  cursor: pointer;.
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; 
  width: 50%;
}

.section-license-form .container {
  /* Responsive */
}
@media (max-width: 1024px) {
  .section-license-form .container .form-wrapper {
    flex-direction: column;
  }
  .section-license-form .container .welcome-section {
    padding: 40px 30px;
  }
  .section-license-form .container .welcome-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .section-license-form .container .form-row {
    grid-template-columns: 1fr;
  }
  .section-license-form .container .summary-grid {
    grid-template-columns: 1fr;
  }
  .section-license-form .container .form-content {
    padding: 24px;
  }
  .section-license-form .container .step-tab {
    padding: 16px 12px;
    font-size: 0.85rem;
  }
  .section-license-form .container .step-number {
    display: block;
    margin-bottom: 4px;
  }
  .section-license-form .container .currency-exchange {
    flex-direction: column;
  }
  .section-license-form .container .exchange-icon {
    margin-top: 0;
    transform: rotate(90deg);
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.desktop-menu-wrap {
  border-bottom: 1px solid var(--border);
}

.desktop-menu {
  padding: 0.7rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* ─── Main menu ─────────────────────────────────────────────── */
.main-menu ul {
  display: flex;
  gap: 35px;
  align-items: center;
}

.main-menu li > a {
  font-weight: var(--font-semi);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.main-menu li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width var(--transition);
}

.main-menu li > a:hover {
  color: var(--navy-mid);
}

.main-menu li > a:hover::after {
  width: 100%;
}

.main-menu li > a svg path {
  transition: fill var(--transition);
}

.main-menu li > a:hover svg path {
  fill: var(--blue-light);
}

.main-menu .menu-item-has-children > a svg {
  transition: transform var(--transition);
}

.main-menu .menu-item-has-children.open > a svg {
  transform: rotate(180deg);
}

.menu-item-has-children {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--dropdown-shadow);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
  display: flex !important; /* override display:none from original */
  flex-direction: column;
  gap: 2px;
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 2px 0 0 0;
}

.menu-item-has-children.open .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: var(--font-semi);
  color: var(--navy);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.sub-menu li a:hover {
  background: rgba(135, 188, 242, 0.15);
  color: var(--navy-mid);
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lng-switch ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lng-switch .active-lng {
  font-weight: var(--font-semi);
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
}

.lng-switch .inactive-lng {
  font-weight: var(--font-semi);
  font-size: 14px;
  color: var(--navy);
  opacity: 0.35;
  cursor: pointer;
}

.lng-switch li.inactive-lng:hover {
  opacity: 0.65;
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy-mid) 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  gap: 4px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 0 40px;
  max-height: 620px;
  /* enter from top */
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-close-btn {
  width: 40px;
  height: 40px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  gap: 4px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.mobile-close-btn span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
}

.mobile-close-btn span:nth-child(1) {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.mobile-close-btn span:nth-child(2) {
  opacity: 0;
}

.mobile-close-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-nav {
  padding: 8px 0;
  flex: 1;
}

.mobile-nav > li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav > li > a,
.mobile-nav > li > .mobile-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-weight: var(--font-semi);
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
}

.mobile-nav > li > a:hover,
.mobile-nav > li > .mobile-item-row:hover {
  background: rgba(135, 188, 242, 0.08);
}

.mobile-chevron {
  transition: transform var(--transition);
}

.mobile-nav > li.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-sub {
  display: none;
  background: rgba(13, 36, 68, 0.03);
  padding: 4px 0 8px 0;
}

.mobile-nav > li.open .mobile-sub {
  display: block;
}

.mobile-sub li a {
  display: block;
  padding: 12px 24px 12px 40px;
  font-size: 14px;
  font-weight: var(--font-semi);
  color: var(--navy);
  opacity: 0.75;
  transition: opacity var(--transition);
}

.mobile-sub li a:hover {
  opacity: 1;
}

.mobile-footer {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-lng {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: var(--font-semi);
  color: var(--navy);
}

.mobile-lng .inactive-lng {
  opacity: 0.35;
}

.mobile-footer .btn-gradient {
  align-self: flex-start;
}

.stats-bar {
  background: #f0f4fa;
  padding: 14px 24px;
  font-size: 13px;
  color: var(--navy);
  font-weight: var(--font-semi);
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-bar strong {
  font-size: 18px;
}

.stats-avatars {
  display: flex;
  align-items: center;
}

.stats-avatars span {
  width: 32px;
  height: 32px;
  background: #c5d8ef;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: inline-block;
}

.stats-avatars span:first-child {
  margin-left: 0;
}

@media (min-width: 961px) {
  .burger-btn {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .main-menu {
    display: none;
  }
  .contact-header-btn {
    display: none !important;
  }
  .burger-btn {
    display: flex;
  }
  .lng-switch {
    display: none;
  }
}
.section-sub-migration-cards .price-cards .card {
  flex-direction: row;
  align-items: center;
}
.section-sub-migration-cards .price-cards .card .card-text span {
  font-size: 16px;
  line-height: 20px;
}

@media (min-width: 1440px) and (max-width: 1600px) {
  .section-gift {
    background: #0D2444;
    background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
    color: #fff;
    width: 100%;
    height: auto;
  }
  .section-gift .gift-wrap {
    width: 45%;
  }
  .section-gift .gift-wrap .gift-text span {
    font-size: 20px;
  }
  .section-gift .gift-wrap .gift-text p {
    font-size: 14px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .section-gift {
    background: #0D2444;
    background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
    color: #fff;
    width: 100%;
    height: auto;
  }
  .section-gift .gift-wrap {
    width: 45%;
  }
  .section-gift .gift-wrap .gift-text span {
    font-size: 20px;
  }
  .section-gift .gift-wrap .gift-text p {
    font-size: 14px;
  }
}
@media (min-width: 300px) and (max-width: 960px) {
  .desktop-menu .main-menu {
    display: none;
  }
  .desktop-menu .right-menu .contact-header-btn {
    display: none;
  }
  .desktop-menu .right-menu .burger-btn {
    display: flex;
    width: 40px;
    height: 40px;
    background: #0D2444;
    background: linear-gradient(100deg, rgb(13, 36, 68) 0%, rgb(17, 68, 123) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 4px;
    cursor: pointer;
  }
  .desktop-menu .right-menu .burger-btn span {
    display: block;
    width: 15px;
    height: 1.5px;
    background: #fff;
  }
  .desktop-menu .right-menu .active {
    width: 40px;
    height: 40px;
    background: #0D2444 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 2.5px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
  }
  .desktop-menu .right-menu .active span:nth-child(1) {
    transform: rotate(45deg) translate(2.5px, 2.5px);
  }
  .desktop-menu .right-menu .active span:nth-child(2) {
    opacity: 0;
  }
  .desktop-menu .right-menu .active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap {
    margin: 25px auto;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .section-gift .gift-wrap {
    width: 90%;
  }
  .section-gift .gift-wrap .gift-text span {
    font-size: 20px;
  }
  .section-gift .gift-wrap .gift-text p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }
  .tabs {
    flex-direction: column;
  }
  .tab {
    border-bottom: 1px solid #e0e0e0;
  }
  .tab.active::after {
    height: 3px;
    left: 0;
    right: auto;
    width: 4px;
    bottom: 0;
    top: 0;
  }
  .content-box {
    flex-direction: column;
    padding: 30px;
  }
  .content-image {
    flex: 0 0 auto;
    width: 100%;
  }
}
.steps-wrapper {
  width: 100%;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.snake-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.step {
  position: relative;
  padding: 28px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  margin: 0 6px;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: 0;
  }
}
.snake-path {
  fill: none;
  stroke: rgba(100, 160, 255, 0.45);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 6;
  stroke-dashoffset: 2000;
  animation: dashMove 2.4s ease forwards;
  animation-delay: 0.4s;
}

.snake-dot {
  fill: rgba(100, 160, 255, 0.7);
  filter: drop-shadow(0 0 4px rgba(100, 160, 255, 0.8));
}

.step-number {
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -1px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.step.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(100, 160, 255, 0.2);
}

.step.active .step-number {
  color: rgba(100, 160, 255, 0.2);
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow svg {
  width: 14px;
  height: 14px;
  opacity: 0.35;
}

.step:last-child .step-arrow {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step {
  animation: fadeUp 0.6s ease both;
}

.step:nth-child(1) {
  animation-delay: 0s;
}

.step:nth-child(2) {
  animation-delay: 0.1s;
}

.step:nth-child(3) {
  animation-delay: 0.2s;
}

.step:nth-child(4) {
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .steps-container::before {
    display: none;
  }
  .step {
    margin: 0;
  }
  .step-arrow {
    display: none;
  }
}
@media (max-width: 480px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}
/* ════════════════════════════════
   BLOCK 1
   ════════════════════════════════ */
.block-1 {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 80px;
  margin: 0 auto;
}

.block-1__photo img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  display: block;
}

.block-1__content {
  flex: 1;
}

.block-1__content span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f1b38;
  margin-bottom: 40px;
  line-height: 1.15;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-migr {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #e8eaf0;
}

.step-migr:last-child {
  border-bottom: 1px solid #e8eaf0;
}

.step__num {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #a0aab8 !important;
  min-width: 28px;
  padding-top: 2px;
  letter-spacing: 0.02em;
}

.step__body {
  flex: 1;
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1b38;
  margin-bottom: 6px;
}

.step__desc {
  font-size: 0.9rem;
  color: #5a6678;
  line-height: 1.55;
}

/* ════════════════════════════════
   BLOCK 2
   ════════════════════════════════ */
.block-2 {
  display: flex;
  gap: 80px;
  padding: 80px 80px;
  margin: 0 auto;
}

.block-2__heading {
  flex: 0 0 340px;
  max-width: 340px;
}

.block-2__heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f1b38;
  line-height: 1.15;
}

.block-2__content {
  flex: 1;
}

.block-2__note {
  margin-top: 32px;
  font-size: 0.88rem;
  color: #5a6678;
  line-height: 1.6;
}

.block-2__note a {
  color: #87BCF2;
  font-weight: 600;
  text-decoration: none;
}

.block-2__note a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════════════
   TABLET  –  max-width: 1024px
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .block-1 {
    gap: 48px;
    padding: 60px 48px;
  }
  .block-1__photo {
    flex: 0 0 360px;
    max-width: 360px;
  }
  .block-1__photo img {
    height: 360px;
  }
  .block-1__content h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .block-2 {
    gap: 48px;
    padding: 60px 48px;
  }
  .block-2__heading {
    flex: 0 0 260px;
    max-width: 260px;
  }
  .block-2__heading h2 {
    font-size: 2rem;
  }
  .divider {
    margin: 0 48px;
    max-width: none;
  }
}
/* ════════════════════════════════════════════════
   SMALL TABLET / LARGE PHONE  –  max-width: 768px
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .block-1 {
    flex-direction: column;
    gap: 36px;
    padding: 48px 32px;
    align-items: stretch;
  }
  .block-1__photo {
    flex: none;
    max-width: 100%;
  }
  .block-1__photo img {
    height: 300px;
    border-radius: 14px;
  }
  .block-1__content h2 {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
  .block-2 {
    flex-direction: column;
    gap: 32px;
    padding: 48px 32px;
  }
  .block-2__heading {
    flex: none;
    max-width: 100%;
  }
  .block-2__heading h2 {
    font-size: 1.8rem;
  }
  .step {
    padding: 20px 0;
  }
  .step__title {
    font-size: 1rem;
  }
  .divider {
    margin: 0 32px;
    max-width: none;
  }
}
/* ════════════════════════════════════════════════
   MOBILE  –  max-width: 480px
   ════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .block-1 {
    padding: 36px 20px;
    gap: 28px;
  }
  .block-1__photo img {
    height: 240px;
    border-radius: 12px;
  }
  .block-1__content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .block-2 {
    padding: 36px 20px;
    gap: 24px;
  }
  .block-2__heading h2 {
    font-size: 1.5rem;
  }
  .step {
    gap: 14px;
    padding: 18px 0;
  }
  .step__num {
    font-size: 0.8rem;
    min-width: 24px;
  }
  .step__title {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .step__desc {
    font-size: 0.85rem;
  }
  .block-2__note {
    font-size: 0.83rem;
    margin-top: 24px;
  }
  .divider {
    margin: 0 20px;
  }
}
@media (max-width: 1024px) {
  .section-spacer {
    height: 80px;
  }
  .section-spacer-small {
    height: 50px;
  }
  .section-header span {
    font-size: 32px;
    line-height: 40px;
  }
  .section-header p {
    width: 60%;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap h1 {
    font-size: 52px;
    line-height: 62px;
  }
  .section-banner .container .banner-text h1 {
    font-size: 52px;
    line-height: 64px;
  }
  .section-banner .container .banner-text h1 span {
    font-size: 52px;
    line-height: 64px;
  }
  .section-services .services-wrap .service {
    width: 49%;
  }
  .section-why-us .container,
  .section-why-us-light .container {
    flex-direction: column;
    gap: 40px;
  }
  .section-why-us .container .why-us-text,
  .section-why-us-light .container .why-us-text {
    width: 100%;
  }
  .section-why-us .container .why-us-cards,
  .section-why-us-light .container .why-us-cards {
    width: 100%;
  }
  .section-about-us .about-us-text {
    flex-direction: column;
    gap: 24px;
  }
  .section-about-us .about-us-text span {
    width: 100%;
  }
  .section-about-us .about-us-text .text-p {
    width: 100%;
  }
  .section-about-us .about-us-cards .cards-wrap .card {
    width: 48%;
  }
  .section-locations .container .location-wrap .location {
    width: 32%;
  }
  .section-tarriffs .container {
    gap: 20px;
  }
  .section-tarriffs .container .card {
    width: 32%;
  }
  .section-steps .container .step-cards-wrap .card {
    width: 48%;
  }
  .section-price-cards .price-cards .card {
    width: 49%;
  }
  .section-self-emp-cards .price-cards .card {
    width: 49%;
  }
  footer .first-row .footer-cred {
    width: 35%;
  }
  footer .first-row .footer-cred p {
    width: 90%;
  }
  footer .first-row .footer-menus {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .section-spacer {
    height: 60px;
  }
  .section-spacer-small {
    height: 40px;
  }
  .section-header span {
    font-size: 28px;
    line-height: 36px;
  }
  .section-header p {
    width: 85%;
    font-size: 14px;
  }
  .section-mainpage-banner {
    flex-direction: column;
  }
  .section-mainpage-banner .mainpage-banner-text {
    width: 100%;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap {
    width: 90%;
    margin: 30px auto;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap .text-btns {
    flex-wrap: wrap;
  }
  .section-mainpage-banner .mainpage-banner-img {
    width: 100%;
    max-height: 200px;
    height: 200px;
  }
  .section-gift .gift-wrap {
    width: 90%;
    flex-direction: row;
    gap: 16px;
    text-align: center;
  }
  .section-gift .gift-wrap .gift-text {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .section-services .services-wrap .service {
    width: 100%;
  }
  .section-why-us .container,
  .section-why-us-light .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-why-us .container .why-us-text,
  .section-why-us-light .container .why-us-text {
    width: 100%;
  }
  .section-why-us .container .why-us-text .why-us-header span,
  .section-why-us-light .container .why-us-text .why-us-header span {
    font-size: 28px;
    line-height: 36px;
  }
  .section-why-us .container .why-us-text .why-us-header p,
  .section-why-us-light .container .why-us-text .why-us-header p {
    width: 100%;
  }
  .section-why-us .container .why-us-cards,
  .section-why-us-light .container .why-us-cards {
    width: 100%;
  }
  .section-why-us .container .why-us-cards .card,
  .section-why-us-light .container .why-us-cards .card {
    width: 49%;
  }
  .section-review {
    margin-bottom: 6rem;
  }
  .section-review .slider-btns-wrap {
    left: 40%;
  }
  .section-banner .container .banner-text {
    flex-direction: column;
    gap: 24px;
  }
  .section-banner .container .banner-text h1 {
    width: 100%;
    font-size: 40px;
    line-height: 50px;
  }
  .section-banner .container .banner-text h1 span {
    font-size: 40px;
    line-height: 50px;
  }
  .section-banner .container .banner-text p {
    width: 100%;
  }
  .section-about-us .about-us-text span {
    font-size: 28px;
    line-height: 36px;
  }
  .section-about-us .about-us-cards .cards-wrap {
    flex-wrap: wrap;
    gap: 16px;
  }
  .section-about-us .about-us-cards .cards-wrap .card {
    width: 48%;
  }
  .section-locations .container .location-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  .section-locations .container .location-wrap .location {
    width: 48%;
  }
  .section-tarriffs .container {
    flex-direction: column;
    align-items: center;
  }
  .section-tarriffs .container .card {
    width: 90%;
  }
  .section-text-with-list .container .wrap-ul-block span {
    font-size: 28px;
    line-height: 36px;
  }
  .section-steps .container .step-cards-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  .section-steps .container .step-cards-wrap .card {
    width: 48%;
  }
  .section-price-cards .price-cards .card {
    width: 49%;
  }
  .section-self-emp-cards .price-cards .card {
    width: 49%;
  }
  .content-box {
    padding: 30px;
    gap: 30px;
  }
  .content-text h2 {
    font-size: 1.5rem;
  }
  footer .first-row {
    flex-direction: column;
    gap: 40px;
  }
  footer .first-row .footer-cred {
    width: 100%;
  }
  footer .first-row .footer-cred p {
    width: 70%;
  }
  footer .first-row .footer-menus {
    width: 100%;
  }
  .mobile-menu .mob-menu-item {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .section-text-with-list .container .wrap-ul-block ul {
    padding-left: 7%;
  }
  .section-text-with-list .container .wrap-ol-block ol {
    padding-left: 7%;
  }
  .section-banner .banner-img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-header span {
    font-size: 24px;
    line-height: 32px;
  }
  .section-header p {
    width: 100%;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap {
    width: 90%;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap .text-companies {
    flex-direction: row;
    gap: 25px;
  }
  .section-services .services-wrap .service {
    width: 100%;
  }
  .section-why-us .container .why-us-cards .card,
  .section-why-us-light .container .why-us-cards .card {
    width: 100%;
  }
  .section-about-us .about-us-cards .cards-wrap .card {
    width: 100%;
  }
  .section-locations .container .location-wrap .location {
    width: 100%;
  }
  .section-steps .container .step-cards-wrap .card {
    width: 100%;
  }
  .section-price-cards .price-cards .card {
    width: 100%;
  }
  .section-self-emp-cards .price-cards .card {
    width: 100%;
  }
  .card {
    padding: 1rem;
    gap: 20px;
  }
  .btn-gradient,
  .btn-transparent {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  footer .first-row .footer-menus {
    flex-wrap: wrap;
    gap: 32px;
  }
  footer .first-row .footer-menus .menu-column {
    width: 48%;
  }
}
@media (max-width: 480px) {
  .section-banner .banner-img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-spacer {
    height: 40px;
  }
  .section-spacer-small {
    height: 24px;
  }
  .section-header {
    gap: 10px;
  }
  .section-header span {
    font-size: 22px;
    line-height: 28px;
  }
  .section-header p {
    font-size: 13px;
    line-height: 18px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap {
    gap: 18px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap h1 {
    font-size: 43px;
    line-height: 48px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap p {
    font-size: 13px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap .text-btns {
    flex-direction: row;
    gap: 10px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap .text-btns .btn-gradient {
    width: 48%;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap .text-btns .btn-transparent {
    width: 48%;
  }
  .section-gift .gift-wrap .gift-text span {
    font-size: 16px;
    align-self: center;
  }
  .section-gift .gift-wrap .gift-text p {
    font-size: 13px;
    align-self: center;
  }
  .section-banner .container .banner-text {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .section-banner .container .banner-text h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .section-banner .container .banner-text h1 span {
    font-size: 28px;
    line-height: 36px;
  }
  .section-about-us .about-us-text span {
    font-size: 22px;
    line-height: 28px;
  }
  .section-text-with-list .container .wrap-ul-block span {
    font-size: 22px;
    line-height: 28px;
  }
  .section-text-with-list .container .wrap-ol-block span {
    font-size: 18px;
    line-height: 24px;
  }
  .section-tarriffs .container .card {
    width: 100%;
  }
  .section-review .slider-btns-wrap {
    left: 33%;
    bottom: -5rem;
  }
  .tabs {
    flex-direction: column;
  }
  .tab {
    border-bottom: 1px solid #e0e0e0;
  }
  .content-box {
    flex-direction: column;
    padding: 24px 16px;
    gap: 20px;
  }
  .content-image {
    width: 100%;
    flex: none;
  }
  footer .first-row .footer-menus {
    flex-direction: column;
    gap: 28px;
  }
  footer .first-row .footer-menus .menu-column {
    width: 100%;
  }
  footer .first-row .footer-cred p {
    width: 100%;
  }
  .card .card-text span {
    font-size: 18px;
    line-height: 24px;
  }
  .card .card-info span {
    font-size: 16px;
  }
  .card .card-info .btn-gradient {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 390px) {
  .section-mainpage-banner .mainpage-banner-text .text-wrap .text-btns .btn-gradient {
    padding: 12px 10px 15px 10px;
  }
  .section-banner .banner-img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-header span {
    font-size: 20px;
    line-height: 26px;
  }
  .section-mainpage-banner .mainpage-banner-text .text-wrap h1 {
    font-size: 43px;
    line-height: 48px;
  }
  .section-banner .container .banner-text h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .section-banner .container .banner-text h1 span {
    font-size: 24px;
    line-height: 32px;
  }
  .card {
    padding: 0.875rem;
  }
  footer .second-row p {
    font-size: 12px;
  }
}
/* ================================================================
   CONTACT PAGE
   ─ .contact-page              outer wrapper (position: relative)
     ─ .contact-page__top       ROW 1 — white bg
     ─ .contact-page__bottom    ROW 2 — photo bg
     ─ .contact-page__form-wrap position:absolute right panel
       ─ .contact-page__form-card  white card
================================================================ */
.contact-page {
  position: relative;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── ROW 1 — white ─────────────────────────────────── */
.contact-page__top {
  background: var(--cp-white);
  width: 100%;
  min-height: 340px;
  position: relative;
}

.contact-page__top-inner {
  max-width: 100%;
  /* Restrict text to left ~46% so it doesn't overlap card */
  padding: 68px 0 60px 68px;
  width: 46%;
}
.contact-page__top-inner .contact-page__info {
  display: flex;
  flex-direction: column;
}

.contact-page__heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--cp-navy);
  letter-spacing: -0.03em;
  margin: 0 0 38px;
}

.contact-page__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page__detail-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.4;
}

.contact-page__detail-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #5a6680;
}

.contact-page__detail-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── ROW 2 — photo ─────────────────────────────────── */
.contact-page__bottom {
  width: 100%;
  min-height: 260px;
  background-color: #1e3a5f;
  /* Geometric glass-building simulation — replace with real photo */
  background-image: linear-gradient(160deg, rgba(8, 16, 36, 0.55) 0%, rgba(12, 24, 52, 0.45) 35%, rgba(18, 38, 76, 0.3) 70%, rgba(30, 58, 95, 0.15) 100%), linear-gradient(135deg, #0d1b35 0%, #14305a 18%, #1e4a7a 38%, #2a6296 55%, #3a7eb8 70%, #5a9fd4 84%, #8ac4e8 100%);
  /* Glass panel lines texture */
  background-size: cover, cover;
  position: relative;
  overflow: hidden;
}
.contact-page__bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ── FORM WRAP — absolute, covers full right half ──── */
.contact-page__form-wrap {
  position: absolute;
  top: 0;
  right: 0;
  /* Stretch to bottom of .contact-page (both rows combined) */
  bottom: 0;
  width: 52%;
  display: flex;
  align-items: self-start;
  padding: 36px 52px 36px 0;
  z-index: 10;
}

/* ── FORM CARD ─────────────────────────────────────── */
.contact-page__form-card {
  background: var(--cp-white);
  border-radius: var(--cp-radius-card);
  padding: 36px 36px 30px;
  width: 100%;
  box-shadow: 0 12px 56px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.07);
}

.contact-page__form-title {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--cp-navy);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.contact-page__form-desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.65;
  margin: 0 0 20px;
}

/* ── Form rows ─────────────────────────────────────── */
.contact-page__form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-page__form-row--cols .contact-page__field {
  flex: 1 1 0;
  min-width: 0;
}

.contact-page__form-row--footer {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.contact-page__field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Labels ────────────────────────────────────────── */
.contact-page__label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cp-label);
  margin-bottom: 5px;
}

.contact-page__required {
  color: var(--cp-error);
  margin-left: 1px;
}

/* ── Inputs ────────────────────────────────────────── */
.contact-page__input,
.contact-page__textarea {
  width: 100%;
  height: 40px;
  padding: 0 11px;
  border: 1.5px solid var(--cp-border);
  border-radius: var(--cp-radius-field);
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  color: var(--cp-body);
  background: var(--cp-white);
  transition: border-color var(--cp-ease), box-shadow var(--cp-ease);
  outline: none;
  -webkit-appearance: none;
}

.contact-page__input::-moz-placeholder, .contact-page__textarea::-moz-placeholder {
  color: var(--cp-placeholder);
}

.contact-page__input::placeholder,
.contact-page__textarea::placeholder {
  color: var(--cp-placeholder);
}

.contact-page__input:focus,
.contact-page__textarea:focus {
  border-color: var(--cp-border-focus);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.contact-page__input.is-invalid,
.contact-page__textarea.is-invalid {
  border-color: var(--cp-error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.contact-page__textarea {
  height: auto;
  min-height: 100px;
  padding: 9px 11px;
  resize: vertical;
  line-height: 1.55;
}

.contact-page__field-error {
  display: block;
  font-size: 0.69rem;
  color: var(--cp-error);
  min-height: 14px;
  margin-top: 3px;
}

/* ── Checkbox ──────────────────────────────────────── */
.contact-page__gdpr {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex: 1;
}

.contact-page__gdpr-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.contact-page__gdpr-input:checked + .contact-page__gdpr-box {
  background: var(--cp-btn);
  border-color: var(--cp-btn);
}

.contact-page__gdpr-input:checked + .contact-page__gdpr-box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.contact-page__gdpr-box {
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1.5px solid var(--cp-border);
  border-radius: 3px;
  background: var(--cp-white);
  position: relative;
  transition: background var(--cp-ease), border-color var(--cp-ease);
}

.contact-page__gdpr-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: 2px solid var(--cp-white);
  border-top: none;
  border-left: none;
  opacity: 0;
  transform: rotate(45deg) scale(0.4);
  transition: opacity var(--cp-ease), transform var(--cp-ease);
}

.contact-page__gdpr-text {
  font-size: 0.79rem;
  color: #555;
  line-height: 1.35;
}

.contact-page__gdpr-link {
  color: var(--cp-link);
  text-decoration: none;
}

.contact-page__gdpr-link:hover {
  text-decoration: underline;
}

/* ── Submit ────────────────────────────────────────── */
.contact-page__submit {
  display: inline-flex;
  gap: 9px;
}

.contact-page__submit:active {
  transform: translateY(1px);
}

.contact-page__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.contact-page__submit-arrow {
  display: flex;
  align-items: center;
  transition: transform var(--cp-ease);
}

.contact-page__submit-arrow svg {
  width: 15px;
  height: 15px;
}

.contact-page__submit:hover .contact-page__submit-arrow {
  transform: translateX(3px);
}

/* ── Messages ──────────────────────────────────────── */
.contact-page__msg {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: var(--cp-radius-field);
  font-size: 0.83rem;
  font-weight: 500;
}

.contact-page__msg--ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.contact-page__msg--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-page__msg[hidden] {
  display: none;
}

/* ================================================================
   TABLET  668px – 1023px
   White row → photo row → card on photo
================================================================ */
@media (max-width: 1023px) {
  body {
    padding: 24px 12px;
  }
  .contact-page {
    display: flex;
    flex-direction: column;
  }
  .contact-page__top {
    order: 1;
    min-height: unset;
  }
  .contact-page__top-inner {
    width: 100%;
    padding: 44px 36px 36px;
  }
  .contact-page__heading {
    font-size: clamp(1.9rem, 5.5vw, 2.4rem);
    margin-bottom: 24px;
  }
  .contact-page__bottom {
    order: 2;
    min-height: 440px;
    height: 40rem;
  }
  /* Card: static flow, overlaps photo via negative margin */
  .contact-page__form-wrap {
    position: static;
    order: 3;
    width: 100%;
    padding: 28px 36px 52px;
    margin-top: -37rem;
    display: block;
  }
  .contact-page__form-card {
    max-width: 580px;
    margin: 0 auto;
  }
}
/* ================================================================
   MOBILE  < 668px
================================================================ */
@media (max-width: 667px) {
  body {
    padding: 0;
  }
  .demo-frame {
    border-radius: 0;
    box-shadow: none;
  }
  .contact-page__top-inner {
    padding: 32px 18px 26px;
  }
  .contact-page__heading {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
  .contact-page__bottom {
    min-height: 260px;
    height: 46rem;
  }
  .contact-page__form-wrap {
    padding: 16px 12px 36px;
    margin-top: -44rem;
  }
  .contact-page__form-card {
    padding: 22px 16px 20px;
    max-width: 100%;
  }
  /* Single-column fields */
  .contact-page__form-row--cols {
    flex-direction: column;
    gap: 0;
  }
  .contact-page__form-row--cols .contact-page__field {
    margin-bottom: 10px;
  }
  .contact-page__form-row--cols .contact-page__field:last-child {
    margin-bottom: 0;
  }
  .contact-page__form-row--footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .contact-page__submit {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  .contact-page__form-title {
    font-size: 1.35rem;
  }
  .contact-page__form-desc {
    font-size: 0.81rem;
    margin-bottom: 16px;
  }
}
.form-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}/*# sourceMappingURL=style.css.map */














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

  :root {
    --blue: #1a3a6b;
    --blue-mid: #2356a8;
    --blue-light: #3b82f6;
    --accent: #0ea5e9;
    --bg: #f0f4f9;
    --card-bg: #ffffff;
    --border: #d1dce8;
    --text: #1e2d45;
    --muted: #6b7f99;
    --selected-bg: #eff6ff;
    --price-color: #0284c7;
    --company-bg: #f7faff;
    --company-border: #c8d8ee;
  }


  .card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(26,58,107,0.10);
    width: 100%;
    margin:50px auto;
    max-width: 680px;
    overflow: hidden;
  }

  /* ── Steps ── */
  .steps {
    display: flex;
    flex-direction:row;
    border-bottom: 1px solid var(--border);
  }
  .step-form {
    flex: 1;
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 500;
    bord
    color: var(--muted);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
  }
  .step-form.active {
    color: var(--blue-mid);
    border-bottom-color: var(--blue-mid);
    background: #f7faff;
  }
  .step-form span { font-weight: 600; font-size: 12px; color: inherit; }

  /* ── Screens ── */
  .screen { display: none; padding: 32px 28px 28px; animation: fadeIn .25s ease; }
  .screen.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

  h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
  }

  /* ── Service cards ── */
  .services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .service-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .service-card:hover { border-color: var(--blue-light); box-shadow: 0 2px 12px rgba(59,130,246,0.1); }
  .service-card.selected { border-color: var(--blue-mid); background: var(--selected-bg); box-shadow: 0 2px 16px rgba(35,86,168,0.12); }
  .radio-dot {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid var(--border); flex-shrink: 0; margin-top: 2px;
    transition: all .15s; display: flex; align-items: center; justify-content: center;
  }
  .service-card.selected .radio-dot { border-color: var(--blue-mid); background: var(--blue-mid); }
  .radio-dot::after {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: white;
    opacity: 0; transition: opacity .15s;
  }
  .service-card.selected .radio-dot::after { opacity: 1; }
  .service-info { flex: 1; }
  .service-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
  .service-price { font-size: 13px; font-weight: 500; color: var(--price-color); }

  /* ── Form fields ── */
  .field { display: flex; flex-direction: column; gap: 6px; }
  label.field-label {
    font-size: 11px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--muted);
  }
  label.field-label .req { color: #e74c3c; margin-left: 1px; }
  .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .mb16 { margin-bottom: 16px; }

  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: white;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
  }
  select {
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    cursor: pointer;
  }
  input::placeholder, textarea::placeholder { color: #b0bccc; }
  input:focus, textarea:focus, select:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(35,86,168,0.08); }
  textarea { resize: none; height: 100px; }

  /* ── Radio group ── */
  .radio-group { display: flex; gap: 20px; align-items: center; margin-top: 4px; }
  .radio-option { display: flex; align-items: center; gap: 7px; cursor: pointer; font-size: 14px; color: var(--text); font-weight: 500; }
  .radio-option input[type="radio"] { display: none; }
  .radio-circle {
    width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center; transition: all .15s; flex-shrink: 0;
  }
  .radio-option.checked .radio-circle { border-color: var(--blue-mid); background: var(--blue-mid); }
  .radio-circle::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: white; }

  /* ── Checkbox ── */
  .checkbox-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; cursor: pointer; user-select: none; }
  .checkbox-row input[type="checkbox"] { display: none; }
  .custom-check {
    width: 18px; height: 18px; border-radius: 5px;
    border: 2px solid var(--border); background: white;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .15s;
  }
  .custom-check.on { background: var(--blue-mid); border-color: var(--blue-mid); }
  .custom-check svg { opacity: 0; transition: opacity .15s; }
  .custom-check.on svg { opacity: 1; }
  .checkbox-row .cb-label { font-size: 14px; font-weight: 600; color: var(--text); }

  /* ── Company block ── */
  .company-block {
    background: var(--company-bg); border: 1.5px solid var(--company-border);
    border-radius: 12px; padding: 18px; margin-bottom: 16px;
    overflow: hidden; max-height: 0; opacity: 0; transition: max-height .3s ease, opacity .25s ease, padding .3s ease, margin .3s ease;
    padding-top: 0; padding-bottom: 0; margin-bottom: 0;
  }
  .company-block.visible { max-height: 300px; opacity: 1; padding: 18px; margin-bottom: 16px; }
  .company-inner-field { margin-bottom: 14px; }
  .company-inner-field:last-child { margin-bottom: 0; }

  /* ── Summary (step 3) ── */
  .summary-block {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .summary-section {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
  }
  .summary-section:last-child { border-bottom: none; }
  .summary-section-title {
    font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px;
  }
  .summary-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 4px 0;
  }
  .summary-key { font-size: 13px; color: var(--muted); font-weight: 500; }
  .summary-val { font-size: 14px; color: var(--text); font-weight: 600; text-align: right; }

  /* ── Price summary ── */
  .price-summary { border-top: 1px solid var(--border); padding-top: 18px; margin-bottom: 20px; }
  .price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
  .price-label { font-size: 14px; color: var(--muted); font-weight: 500; }
  .price-val { font-size: 15px; color: var(--text); font-weight: 600; }
  .price-val.big { font-size: 22px; font-weight: 700; color: var(--blue); }

  /* ── GDPR checkbox ── */
  .gdpr-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; cursor: pointer; }
  .gdpr-row input[type="checkbox"] { display: none; }
  .gdpr-check {
    width: 17px; height: 17px; border-radius: 4px; border: 2px solid var(--border);
    background: white; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all .15s;
  }
  .gdpr-check.on { background: var(--blue-mid); border-color: var(--blue-mid); }
  .gdpr-check svg { opacity: 0; transition: opacity .15s; }
  .gdpr-check.on svg { opacity: 1; }
  .gdpr-text { font-size: 13px; color: var(--text); font-weight: 500; line-height: 1.4; }
  .gdpr-text a { color: var(--blue-mid); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }

  /* ── Buttons ── */
  .btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
  .btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px; border-radius: 12px;
    font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all .2s; border: none; letter-spacing: -0.1px;
  }
  .btn-back { background: white; color: var(--text); border: 1.5px solid var(--border); }
  .btn-back:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
  .btn-next { background: var(--blue); color: white; }
  .btn-next:hover { background: var(--blue-mid); }
  .btn:active { transform: scale(.98); }
  .btn svg { transition: transform .2s; flex-shrink: 0; }
  .btn-back:hover .arrow-left { transform: translateX(-4px); }
  .btn-next:hover .arrow-right { transform: translateX(4px); }

  /* ── Step1 specific ── */
  .field-row-labels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }


  .woocommerce-notices-wrapper {
    display: none !important;
}

#order_comments {
    min-height: 150px; 
    line-height: 1.5;
    padding: 12px;
    resize: vertical;
}










