:root {
  --background: #b39eea;
  --foreground: #111111;
  --muted-foreground: #322a30;
  --primary: #8c3db8;
  --primary-foreground: #fff8f6;
  --input: rgba(255, 226, 216, 0.72);
  --border: rgba(17, 17, 17, 0.48);
  --radius: 0;
  --font: "Helvetica Neue", Arial, sans-serif;
  --content-width: 1100px;
--gradient-angle: 115deg;
--gradient-left: #aa98ea;
--gradient-right: #c99bdf;

}

/* =========================
   DESKTOP HOVERS
========================= */

@media (min-width: 701px) {
  /* Base link transition */
  a {
    transition:
      color 180ms ease,
      opacity 180ms ease;
  }

  /* =========================
     NAVIGATION
  ========================= */

  .nav nav a {
    position: relative;
    transition: color 180ms ease;
  }

  .nav nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--primary);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .nav nav a:hover {
    color: var(--primary);
  }

  .nav nav a:hover::after {
    transform: scaleX(1);
  }

  /* =========================
     TEXT LINKS
  ========================= */

  a:not(:has(img)):not(.nav nav a):not(.btn):hover {
    color: var(--primary);
  }

  /* =========================
     IMAGE LINKS
  ========================= */

  a:has(img):hover {
    opacity: 0.7;
  }

  /* =========================
     LOGO
  ========================= */

  .logo:hover {
    color: var(--foreground);
  }

  /* =========================
     BUTTONS
  ========================= */

  .btn {
    color: var(--primary-foreground);

    transition:
      background-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  .btn:hover {
    color: var(--primary-foreground);
    background-color: #7932a0;
    box-shadow: 0 6px 18px rgba(140, 61, 184, 0.28);
    transform: translateY(-2px);
  }

  /* =========================
     PORTFOLIO IMAGES
  ========================= */

  .portfolio-item img {
    transition: opacity 180ms ease;
  }

  .portfolio-item:hover img {
    opacity: 0.7;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

  /* =========================
     Auto rotation of gradiant
  ========================= */

/* body {
  margin: 0;
  font-family: var(--font);
  color: var(--foreground);

  background: linear-gradient(
    115deg,
    #aa98ea 0%,
    #c99bdf 100%
  );

  background-size: 200% 200%;
  animation: gradientRotate 12s ease-in-out infinite;

  background-attachment: fixed;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 0%;
  }

  25% {
    background-position: 100% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
} */

::selection {
  background: #d8c6f2;
  color: #111111;
}

::-moz-selection {
  background: #d8c6f2;
  color: #111111;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--foreground);

  background: linear-gradient(
    var(--gradient-angle),
    #aa98ea 0%,
    #c99bdf 100%
  );

  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.58);
}
.phone-modal[hidden] {
  display: none;
}
.phone-modal-card {
  width: min(100%, 420px);
  padding: 32px;
  background: var(--background);
  color: var(--foreground);
}
.phone-modal-card h2 {
  text-align: left;
  font-size: 24px;
}
.phone-modal-card p {
  margin: 12px 0 24px;
  font-size: 14px;
}
.phone-modal-card label {
  display: block;
  font-size: 14px;
}
.phone-modal-card input {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
}
.phone-modal-card .btn.block {
  margin-top: 16px;
}
.goverlay {
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hidden-honeypot {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.header-cnt {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
}
.nav {
  width: min(100%, var(--content-width));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px 24px;
  background-color: transparent;
  transition: background-color 250ms ease, box-shadow 250ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent;
  transition: background-color 250ms ease, box-shadow 250ms ease;
}
.nav.is-scrolled {
  background-color: transparent;
}
.nav.is-scrolled::before {
  background-color: #ead7f8;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.12);
}
.nav > * {
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.logo span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  letter-spacing: 0.45em;
  text-align: left;
  text-align-last: auto;
  white-space: nowrap;
}
.nav nav {
  display: flex;
  gap: 32px;
  font-size: 16px;
  color: var(--muted-foreground);
}
.nav nav a:hover {
  color: var(--foreground);
}
.languages {
  color: var(--primary);
}
.languages a + a {
  margin-left: 4px;
}


.blob {
  position: absolute;
  left: -60px;
  top: 130px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(190, 163, 237, 0.7);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 55%,
    55% 55%,
    55% 100%,
    0 100%
  );
  filter: blur(12px);
  opacity: 1;
}
.hero h1 {
  position: relative;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.hero p {
  position: relative;
  max-width: 440px;
  margin: 28px auto 0;
  font-size: 20px;
  color: var(--foreground);
}

.btn {
  position: relative;
  display: inline-block;
  margin-top: 68px;
  padding: 22px 52px;
  background: var(--primary);
  color: var(--primary-foreground);
  border: 0;
  border-radius: var(--radius);
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  font-family: inherit;
}

.btn.block {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  font-size: 16px;
}

.section {
  width: min(100%, var(--content-width));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 170px;
}
.section.narrow {
  max-width: var(--content-width);
}
h2 {
  text-align: center;
  font-size: 38px;
  margin: 0;
}

.accordion {
  margin-top: 52px;
  width: 100%;
}
details {
  border-bottom: 0;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 16px;
  font-style: italic;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--foreground);
  border-bottom: 1px solid var(--foreground);
  transform: rotate(45deg) translateY(-3px);
  color: var(--muted-foreground);
}
details[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}
.service-list {
  margin: 0;
  padding: 12px 0 28px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--foreground);
}
.service-list-wrap {
  overflow: hidden;
  height: 0;
  transition: height 350ms ease;
}

#contact {
  min-width: 0;
  overflow: hidden;
}

.carousel {
  --arrow-space: 0px;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  column-gap: 12px;
  width: calc(100% + (var(--arrow-space) * 2));
  margin: 40px 0 0 calc(var(--arrow-space) * -1);
}
.track {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.track img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.portfolio-item {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.portfolio-item:hover img {
  opacity: 0.85;
}
.gslide-description {
  display: none !important;
}
.gslide-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.arrow {
  background: none;
  border: 0;
  font-size: 32px;
  line-height: 1;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 8px;
}
.arrow:hover {
  color: var(--foreground);
}

.form {
  width: 100%;
  max-width: 650px;
  margin: 32px auto 0;
}
.form label {
  display: block;
  margin-top: 24px;
  font-size: 16px;
  color: var(--foreground);
}
.form input,
.form textarea {
  width: 100%;
  margin-top: 10px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 16px;
  border: 0;
  border-radius: var(--radius);
  background: #ffffff;
  resize: none;
}
.form input {
  height: 55px;
}
.form textarea {
  height: 140px;
  background: #ead7f8;
}
.form textarea::placeholder {
  color: #d5bde9;
}
.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--primary);
}

.email {
  background: #ead7f8 !important;
}

.contact-icons {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 0 24px 80px;
  text-align: center;
  font-size: 16px;
  color: var(--muted-foreground);
}
.contact-icons p {
  margin: 0 0 12px;
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 28px;
  font-weight: 700;
}
.icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.chat-viber {
  background: var(--primary);
}
.chat-viber img {
  width: 56px;
  height: 56px;
}
.icon-row {
  display: inline-flex;
  gap: 8px;
}

footer {
  background: #454142;
  color: #aaa4a5;
  text-align: center;
  padding: 36px 16px 32px;
  font-size: 12px;
  letter-spacing: 0;
}

footer p {
  margin: 0;
}

footer p + p {
  margin-top: 8px;
}

.privacy-page {
  padding-top: 120px;
  padding-bottom: 160px;
}

.privacy-page > h1 {
  margin: 0;
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}

.privacy-intro {
  margin: 18px 0 70px;
  text-align: center;
  font-size: 14px;
  color: var(--muted-foreground);
}

.privacy-content {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin: 48px 0 16px;
  text-align: left;
  font-size: 22px;
  font-weight: 500;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--foreground);
}

.privacy-page .btn {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
}

@media (max-width: 700px) {
  .privacy-page {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .privacy-page > h1 {
    font-size: 32px;
  }

  .privacy-intro {
    margin-bottom: 50px;
  }

  .privacy-content h2 {
    font-size: 19px;
    margin-top: 38px;
  }

  .privacy-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

.hero {
  position: relative;
  width: min(100%, var(--content-width));
  max-width: var(--content-width);

  min-height: 100vh;
  min-height: 100svh;

  margin: 0 auto;
  padding: 160px 24px 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
  }
  .nav nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 12px;
  }
  .logo {
    font-size: 15px;
  }
  .logo span {
    font-size: 10px;
  }
  .hero {
    min-height: 100svh;
    padding: 120px 24px 80px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero p {
    font-size: 16px;
  }
  .blob {
    left: -30px;
    top: 80px;
  }
  .carousel {
    position: relative;

    width: 100%;
    margin: 40px 0 0;

    display: block;
  }

  .track {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow {
    position: absolute;
    top: 50%;
    z-index: 2;

    transform: translateY(-50%);

    width: 32px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    font-size: 32px;
  }

  .arrow[data-dir="-1"] {
    left: -30px;
  }

  .arrow[data-dir="1"] {
    right: -30px;
  }

  .contact-icons {
    gap: 32px;
  }
}
