@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500&display=swap');
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a, a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside, nav, footer, header, section, main {
  display: block;
}
h1, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}
ul, ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img, svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
input::-ms-clear {
  display: none;
}
button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
html {
  scroll-behavior: smooth;
}
/*------------base-styles---------------*/

:root {
  --dark: #262e34;
  --blue-dark: #627285;
  --blue-dark-hover: rgba(98, 114, 133, 0.7);
  --blue: #adc2cf;
  --blue-hover: rgba(173, 194, 207, 0.7);
  --white: #ffffff;

  --font-accent: 'Barlow Condensed', sans-serif;
  --font-base: 'IBM Plex Sans', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: var(--blue-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 0.4286rem + 2.8571vw, 3rem);
}

h1, h2, h3, h4 {
  font-family: var(--font-accent);
  color: var(--dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 1.2143rem + 1.4286vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 1rem + 0.5vw, 1.5rem);
}

p {
  margin: 0 0 1.25rem 0;
}

.spd-button {
  display: inline-block;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.06s ease;
  user-select: none;
}

.spd-button:active {
  transform: translateY(1px);
}

.spd-button--primary {
  background-color: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

.spd-button--primary:hover {
  background-color: var(--blue-dark-hover);
}

.spd-button--outline {
  background-color: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}

.spd-button--outline:hover {
  background-color: var(--dark);
  color: var(--white);
}

.spd-section {
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
}

.spd-section__heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  text-align: center;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--blue);
  background-color: var(--blue-hover);
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--dark);
}

input::placeholder,
textarea::placeholder {
  color: var(--blue-dark);
  opacity: 0.7;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-dark);
  background-color: var(--white);
}

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

.uppercase {
  text-transform: uppercase;
}

.mb-lg {
  margin-bottom: 3rem;
}

.mt-lg {
  margin-top: 3rem;
}
/**/
.spd-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
}

.spd-header__controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.spd-logo img {
  height: 50px;
}
.spd-lang a {
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 0 4px;
  position: relative;
}

.spd-lang a.is-active::after {
  content: '';
  display: block;
  height: 1px;
  background-color: var(--blue-dark);
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.spd-header__line {
  height: 1px;
  background-color: var(--blue);
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  animation: spd-line-reveal 2.5s ease forwards;
}

@keyframes spd-line-reveal {
  to {
    transform: scaleX(1);
  }
}

.spd-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.spd-burger .line {
  height: 2px;
  background-color: var(--blue-dark);
  border-radius: 1px;
  transition: all 0.7s ease-in;
}

.spd-burger .line-top {
  width: 22px;
}

.spd-burger .line-bottom {
  width: 14px;
  align-self: flex-end;
}

.spd-burger.active .line-top {
  transform: rotate(45deg) translate(4px, 3px);
  width: 20px;
}

.spd-burger.active .line-bottom {
  transform: rotate(-45deg) translate(2px, -2px);
  width: 20px;
  align-self: flex-start;
}
.spd-mobile-nav {
  border: 1px solid var(--blue);
  position: fixed;
  top: 13%;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  padding: 4rem 2rem;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.05);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 999;
}

.spd-mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.spd-mobile-nav ul {
  display: grid;
  gap: 1.5rem;
}

.spd-mobile-nav a {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s ease;
}

.spd-mobile-nav a:hover {
  color: var(--blue-dark);
}
/**/
.spd-hero {
  padding-top: clamp(3rem, 5vw, 6rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  background-color: var(--white);
  max-height: 65vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spd-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.spd-hero__text {
  flex: 1 1 60%;
}

.spd-hero__title-group {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
}

.spd-hero__title--left {
  font-family: var(--font-accent);
  font-size: clamp(2.25rem, 1.5rem + 2.5vw, 4rem);
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}

.spd-hero__title--center {
  font-family: var(--font-accent);
  font-size: clamp(2.25rem, 1.5rem + 2.5vw, 4rem);
  text-transform: uppercase;
  color: var(--blue-dark);
  margin: 0;
}

.spd-hero__subtitle {
  max-width: 280px;
  margin-top: 1rem;
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--blue-dark);
  line-height: 1.5;
}

.spd-hero__action {
  flex: 1 1 auto;
  display: flex;
}

.spd-button--circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--blue-dark);
  color: var(--white);
  font-family: var(--font-base);
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-dark);
  transition: all 0.3s ease;
  text-align: center;
  padding: 1rem;
}

.spd-button--circle:hover {
  background-color: var(--blue-dark-hover);
  color: var(--white);
}

.spd-hero__image {
  flex: 1 1 auto;
  height: 100%;
  max-height: 30vh;
  overflow: hidden;
  margin-top: 2rem;
}

.spd-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/**/
.spd-form {
  padding-block: clamp(3rem, 5vw, 6rem);
  background-color: var(--white);
  text-align: center;
}
.spd-form__subtitle {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-family: var(--font-base);
  color: var(--dark);
}

.spd-modal__title {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.spd-form__title-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.spd-form__title--left,
.spd-form__title--center {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
  margin: 0;
}

.spd-form__title--left {
  color: var(--dark);
}

.spd-form__title--center {
  color: var(--blue-dark);
}

.spd-form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 400px;
  margin: 0 auto;
}
.spd-form__body button {
  width: 110px;
  height: 110px;
}
.spd-form__body input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfd3d8;
  padding: 0.75rem 0 0.75rem 1rem;
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--dark);
  background: transparent;
  outline: none;
}

.spd-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.spd-modal.active {
  display: flex;
}

.spd-modal__inner {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.spd-modal__inner img {
  max-width: 80px;
  margin-bottom: 1rem;
}

.spd-modal__inner p {
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--dark);
  margin: 0;
}
/**/
.spd-footer {
  padding-block: clamp(2.5rem, 4vw, 4rem);
  background-color: var(--white);
  color: var(--dark);
  font-family: var(--font-base);
  text-align: center;
}

.spd-footer__divider {
  border: none;
  border-radius: 5px;
  border-top: 4px solid #dce0e4;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.spd-footer__logo {
  display: flex;
  justify-content: center;
}
.spd-footer__logo img {
  height: 48px;
  margin-bottom: 2rem;
}

.spd-footer__menu,
.spd-footer__legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.spd-footer__menu a,
.spd-footer__legal a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.spd-footer__legal a {
  font-size: 0.85rem;
  color: #6b6f74;
}

.spd-footer__menu a:hover,
.spd-footer__legal a:hover {
  text-decoration: underline;
}

.spd-footer__contacts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.spd-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.spd-footer__contact-item i {
  color: var(--blue-dark);
}

.spd-footer__contact-item a {
  color: var(--dark);
  text-decoration: none;
}

.spd-footer__contact-item a:hover {
  text-decoration: underline;
}

.spd-footer__bottom {
  font-size: 0.8rem;
  color: #6b6f74;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
/**/
.spd-age-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.spd-age-popup__inner {
  background: var(--white);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.spd-age-popup__icon {
  width: 80px;
  margin: 0 auto 1rem;
}

.spd-age-popup__title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.spd-age-popup__text {
  font-family: var(--font-base);
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.spd-age-popup__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
/**/
.spd-service__desc {
  max-width: 800px;
}
.spd-service__desc--icons p {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--dark);
}

.spd-service__desc--icons i {
  color: var(--blue-dark);
  min-width: 1.2em;
  margin-top: 0.2rem;
}
@media (max-width: 640px) {
  .spd-service__desc--icons p {
    flex-direction: column;
    align-items: center;
  }
}