:root {
  --white: #ffffff;
  --bg: #fbfbfd;
  --text: #0f172d;
  --muted: #5f6b84;
  --line: rgba(15, 23, 45, 0.08);
  --pink: #ea2d89;
  --pink-soft: #f8d8eb;
  --violet: #9d75d7;
  --sky: #6cb7f1;
  --sky-soft: #d9eefc;
  --orange: #ff7a45;
  --orange-soft: #ffe4d7;
  --lime: #98cb49;
  --shadow: 0 18px 48px rgba(36, 47, 84, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 45, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 156px;
  padding: 18px 0;
  position: relative;
}

.brand img {
  width: 128px;
}

.brand-centered {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-centered img {
  margin: 10px 0;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #f5f6fa;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  margin-left: auto;
  background: #f3f4f8;
  border-radius: var(--radius-pill);
}

.lang-button {
  border: 0;
  min-width: 42px;
  min-height: 42px;
  color: var(--muted);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.lang-button.is-current {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--sky));
}

.main-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  gap: 18px;
  min-width: 220px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 45, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(36, 47, 84, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  width: fit-content;
  padding: 8px 0;
}

.site-header.menu-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--pink), var(--sky));
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active,
.main-nav a:hover {
  color: var(--text);
}

.section {
  position: relative;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 80px 0 70px;
}

.hero h1,
.section-heading h2,
.cta-inner h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero h1 {
  background: linear-gradient(90deg, var(--pink), var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.hero-text,
.section-heading p,
.cta-inner p,
.feature-card p,
.footer-brand p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-text {
  max-width: 850px;
  margin-top: 26px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--pink), var(--violet));
  box-shadow: 0 14px 28px rgba(234, 45, 137, 0.18);
}

.button-secondary {
  color: var(--sky);
  background: var(--white);
  border: 2px solid rgba(108, 183, 241, 0.9);
}

.button-gradient {
  color: var(--white);
  background: linear-gradient(90deg, var(--lime), var(--sky), var(--pink));
  box-shadow: 0 14px 28px rgba(108, 183, 241, 0.18);
}

.features {
  padding: 20px 0 88px;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
}

.section-heading h2 span {
  background: linear-gradient(90deg, var(--pink), var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p {
  margin-top: 14px;
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-pink {
  color: var(--pink);
  background: var(--pink-soft);
}

.feature-icon-blue {
  color: var(--sky);
  background: var(--sky-soft);
}

.feature-icon-violet {
  color: var(--violet);
  background: #eee2fb;
}

.feature-icon-orange {
  color: var(--orange);
  background: var(--orange-soft);
}

.feature-card h3,
.footer-links h3,
.footer-contacts h3 {
  margin: 0 0 10px;
  font-size: 1.85rem;
  line-height: 1.15;
}

.feature-card h3 {
  font-size: 1.35rem;
}

.feature-card p {
  font-size: 1.02rem;
}

.cta {
  padding: 70px 0 100px;
}

.cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}

.cta-inner h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  color: #000000;
}

.cta-inner p {
  max-width: 960px;
  font-size: 1.15rem;
}

.gallery {
  padding: 0 0 38px;
}

.gallery .container {
  width: 100%;
  max-width: none;
}

.gallery-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: 100%;
  border-radius: 0;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
}

.gallery-slide img {
  width: 100%;
  height: 84vh;
  object-fit: contain;
  display: block;
}

.gallery-slide figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 45, 0.58);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 45, 0.72);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: rgba(15, 23, 45, 0.88);
}

.gallery-arrow-prev {
  left: 14px;
}

.gallery-arrow-next {
  right: 14px;
}

.social {
  padding: 0 0 100px;
}

.social-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.social-inner h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.08;
}

.social-inner p {
  margin: 12px 0 0;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.94;
}

.social-link-facebook {
  background: #1877f2;
}

.social-link-instagram {
  background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af);
}

.social-link-linkedin {
  background: #0a66c2;
}

@media (max-width: 1200px) {
  .gallery-slider {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .gallery-slide img {
    height: 62vh;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .gallery-slide figcaption {
    left: 10px;
    bottom: 10px;
    font-size: 0.84rem;
  }

}

.site-footer {
  padding: 42px 0 30px;
  background: #fcfcfe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 34px;
}

.footer-brand img {
  width: 90px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 540px;
  font-size: 1.1rem;
}

.footer-links,
.footer-contacts {
  display: grid;
  gap: 12px;
}

.footer-links h3,
.footer-contacts h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer-links a,
.footer-contacts a {
  color: #35435f;
  font-size: 1.05rem;
}

.footer-contacts p {
  margin: 0;
  color: #35435f;
  font-size: 1.05rem;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  font-size: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(36, 47, 84, 0.18);
}

.cookie-banner-text {
  margin: 0;
  color: #253252;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cookie-banner-link {
  color: var(--sky);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 0 16px;
}

.bg-shape,
.bg-dot {
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

.bg-shape {
  filter: blur(2px);
  opacity: 0.65;
}

.bg-shape-left {
  top: 140px;
  left: -56px;
  width: 180px;
  height: 180px;
  border-radius: 44% 56% 59% 41% / 46% 42% 58% 54%;
  background: rgba(244, 194, 222, 0.7);
}

.bg-shape-right {
  top: 360px;
  right: 82px;
  width: 72px;
  height: 102px;
  border-radius: 48px;
  background: rgba(212, 234, 251, 0.78);
}

.bg-dot {
  border-radius: 50%;
}

.bg-dot-left {
  top: 172px;
  left: 92px;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 18px rgba(251, 226, 241, 0.62);
}

.bg-dot-right {
  right: 98px;
  top: 438px;
  width: 18px;
  height: 18px;
  background: rgba(207, 229, 250, 0.95);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease var(--reveal-delay, 0ms),
    transform 700ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .feature-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    padding: 16px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 66px 0 60px;
  }

  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 96px;
  }

  .header-inner {
    min-height: 132px;
    padding: 14px 0;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero h1 {
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .bg-shape-right,
  .bg-dot-right {
    right: 20px;
  }

  .main-nav {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }
}

.services-page .bg-shape-left {
  top: 360px;
  left: -34px;
  width: 132px;
  height: 132px;
  background: rgba(252, 238, 191, 0.76);
}

.contact-hero {
  padding: 84px 0 34px;
}

.contact-heading h1 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.contact-heading h1 span:last-child {
  background: linear-gradient(90deg, var(--pink), var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-section {
  padding: 30px 0 88px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: start;
}

.contact-card,
.contact-info-item,
.contact-hours {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(36, 47, 84, 0.1);
}

.contact-card,
.contact-info {
  padding: 28px;
}

.contact-card h2,
.contact-info h2,
.contact-hours h3,
.contact-info-item h3 {
  margin: 0;
  color: var(--text);
}

.contact-card h2,
.contact-info h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-note {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-hp {
  position: absolute;
  left: -9999px;
}

.contact-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.contact-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  color: #253252;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #edf0f6;
  background: #f7f8fc;
  border-radius: 12px;
  padding: 16px 14px;
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(108, 183, 241, 0.6);
  box-shadow: 0 0 0 4px rgba(108, 183, 241, 0.12);
}

.contact-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.contact-modal.is-open {
  display: block;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 45, 0.5);
}

.contact-modal-panel {
  position: relative;
  width: min(92vw, 520px);
  margin: 12vh auto 0;
  padding: 26px 24px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(15, 23, 45, 0.24);
  border-top: 6px solid var(--lime);
}

.contact-modal.is-error .contact-modal-panel {
  border-top-color: var(--pink);
}

.contact-modal-title {
  margin: 0;
  font-size: 1.6rem;
}

.contact-modal-message {
  margin: 12px 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-modal-close {
  min-width: 120px;
  border: 0;
  cursor: pointer;
}

.contact-info-text {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info-stack {
  display: grid;
  gap: 18px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.contact-info-item p,
.contact-hours p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-info-icon-pink {
  color: var(--pink);
  background: rgba(248, 216, 235, 0.9);
}

.contact-info-icon-blue {
  color: var(--sky);
  background: rgba(217, 238, 252, 0.94);
}

.contact-info-icon-violet {
  color: var(--violet);
  background: rgba(238, 226, 251, 0.94);
}

.contact-hours {
  margin-top: 24px;
  padding: 24px 22px;
  background: linear-gradient(135deg, rgba(250, 225, 241, 0.55), rgba(225, 241, 255, 0.78));
}

.bg-shape-right-green {
  top: 130px;
  right: -42px;
  width: 126px;
  height: 126px;
  border-radius: 42% 58% 51% 49% / 51% 35% 65% 49%;
  background: rgba(225, 244, 203, 0.7);
}

.bg-dot-yellow {
  top: 388px;
  left: 54px;
  width: 18px;
  height: 18px;
  background: rgba(249, 223, 146, 0.92);
  box-shadow: 0 0 0 16px rgba(252, 240, 198, 0.44);
}

.services-hero {
  padding: 92px 0 54px;
}

.services-heading {
  margin-bottom: 0;
}

.services-heading h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.services-heading h1 span,
.process-section .section-heading h2 span {
  background: linear-gradient(90deg, var(--pink), var(--sky), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-grid-section {
  padding: 24px 0 86px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.service-panel {
  padding: 36px 36px 38px;
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(32, 43, 82, 0.1);
}

.service-panel-pink {
  background: linear-gradient(180deg, rgba(255, 243, 250, 0.96), rgba(252, 239, 247, 0.96));
}

.service-panel-blue {
  background: linear-gradient(180deg, rgba(243, 250, 255, 0.96), rgba(237, 247, 255, 0.96));
}

.service-panel-violet {
  background: linear-gradient(180deg, rgba(247, 242, 255, 0.96), rgba(242, 237, 255, 0.96));
}

.service-panel-orange {
  background: linear-gradient(180deg, rgba(255, 247, 242, 0.96), rgba(255, 241, 234, 0.96));
}

.service-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-panel-icon-pink {
  color: var(--pink);
  background: rgba(248, 216, 235, 0.9);
}

.service-panel-icon-blue {
  color: var(--sky);
  background: rgba(217, 238, 252, 0.94);
}

.service-panel-icon-violet {
  color: var(--violet);
  background: rgba(238, 226, 251, 0.94);
}

.service-panel-icon-orange {
  color: var(--orange);
  background: rgba(255, 228, 215, 0.94);
}

.service-panel h2,
.process-step h3 {
  margin: 0;
  color: var(--text);
}

.service-panel h2 {
  font-size: clamp(2rem, 2.5vw, 2.45rem);
  line-height: 1.08;
}

.service-panel p,
.process-step p {
  color: var(--muted);
  line-height: 1.55;
}

.service-panel > p {
  margin: 20px 0 24px;
  font-size: 1.05rem;
  max-width: 33ch;
}

.service-list {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 34px;
  color: #40506f;
  font-size: 1.02rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.95;
}

.service-list li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 6px;
  height: 3px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.service-panel-pink .service-list li::before,
.service-panel-pink .service-list li::after,
.service-panel-link-pink {
  color: var(--pink);
}

.service-panel-blue .service-list li::before,
.service-panel-blue .service-list li::after,
.service-panel-link-blue {
  color: var(--sky);
}

.service-panel-violet .service-list li::before,
.service-panel-violet .service-list li::after,
.service-panel-link-violet {
  color: var(--violet);
}

.service-panel-orange .service-list li::before,
.service-panel-orange .service-list li::after,
.service-panel-link-orange {
  color: var(--orange);
}

.service-panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid currentColor;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-panel-link::after {
  content: "->";
  margin-left: 12px;
  font-size: 0.95rem;
}

.service-panel-link:hover,
.service-panel-link:focus-visible {
  transform: translateY(-2px);
}

.process-section {
  padding: 92px 0 96px;
  background: linear-gradient(180deg, #f8f9fc 0%, #f7f8fb 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 66px;
}

.process-step {
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
}

.process-badge-pink {
  background: var(--pink);
}

.process-badge-blue {
  background: var(--sky);
}

.process-badge-violet {
  background: #9b59c7;
}

.process-badge-lime {
  background: #8dc63f;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-step p {
  margin: 0;
  max-width: 18ch;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .process-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding-top: 74px;
  }
}

@media (max-width: 640px) {
  .service-panel {
    padding: 28px 24px 30px;
  }

  .services-heading h1 {
    font-size: 2.8rem;
  }

  .services-page .bg-shape-left,
  .bg-shape-right-green {
    opacity: 0.45;
  }

  .contact-modal-panel {
    margin-top: 10vh;
    padding: 22px 18px 18px;
  }
}
