:root {
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.55);

  --a1: #0aa7a4;
  --a2: #19c4b1;
  --a3: #5fe08a;
  --a4: #baf7e4;

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.28);

  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(25, 196, 177, 0.35), transparent 60%),
    radial-gradient(1000px 600px at 90% 10%, rgba(95, 224, 138, 0.25), transparent 60%),
    linear-gradient(180deg, #061416, #050f10 60%, #040b0c);
  min-height: 100vh;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 15, 16, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(10, 167, 164, 0.25);
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav__toggleLines {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  position: relative;
  border-radius: 99px;
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 99px;
}

.nav__toggleLines::before {
  top: -6px;
}

.nav__toggleLines::after {
  top: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px;
  border-radius: 12px;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.96);
}

.nav__cta {
  margin-left: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow2);
}

.btn--primary {
  border-color: rgba(10, 167, 164, 0.55);
  background: linear-gradient(135deg, rgba(10, 167, 164, 0.95), rgba(95, 224, 138, 0.9));
  color: rgba(2, 8, 8, 0.92);
}

.btn--primary:hover {
  box-shadow: 0 16px 50px rgba(10, 167, 164, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
}

.btn--full {
  width: 100%;
}

.input {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  outline: none;
}

.input:focus {
  border-color: rgba(186, 247, 228, 0.7);
  box-shadow: 0 0 0 4px rgba(186, 247, 228, 0.12);
}

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

select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-color: rgba(0, 0, 0, 0.18);
  color: var(--text);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    calc(100% - 44px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 22px;
  background-repeat: no-repeat;
}

select.input option {
  background-color: #050f10;
  color: rgba(255, 255, 255, 0.92);
}

.field {
  display: block;
  margin: 12px 0;
}

.field__label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}

.field__hint {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 8px;
}

.field__error {
  display: block;
  font-size: 12px;
  color: rgba(255, 170, 170, 0.95);
  margin-top: 8px;
  min-height: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 167, 164, 0.55), rgba(95, 224, 138, 0.25));
  opacity: 0.95;
}

.hero__wave {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 240px;
  bottom: -80px;
}

.hero__wave--back {
  bottom: -100px;
  opacity: 0.45;
  transform: rotate(-1.2deg);
  background:
    radial-gradient(120% 120% at 50% 20%, rgba(186, 247, 228, 0.55), transparent 55%),
    linear-gradient(90deg, rgba(10, 167, 164, 0.55), rgba(95, 224, 138, 0.35));
  border-radius: 999px;
}

.hero__wave--front {
  opacity: 0.9;
  transform: rotate(1deg);
  background:
    radial-gradient(120% 120% at 50% 10%, rgba(255, 255, 255, 0.25), transparent 55%),
    linear-gradient(90deg, rgba(10, 167, 164, 0.85), rgba(95, 224, 138, 0.75));
  border-radius: 999px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.hero__title {
  margin: 16px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
}

.card--glass {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(2, 8, 8, 0.9);
  background: linear-gradient(135deg, rgba(186, 247, 228, 0.95), rgba(95, 224, 138, 0.85));
}

.card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.card__title {
  margin: 14px 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card__desc {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.miniForm .field {
  margin: 10px 0;
}

.formNote {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.formNote a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.formToast {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(2, 8, 8, 0.92);
  background: linear-gradient(135deg, rgba(186, 247, 228, 0.92), rgba(95, 224, 138, 0.86));
  border-radius: 14px;
  padding: 10px 12px;
  display: none;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(10, 167, 164, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(95, 224, 138, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sectionHead {
  display: block;
  margin-bottom: 22px;
}

.sectionTitle {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.sectionDesc {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.list li {
  margin: 8px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.split--contact {
  grid-template-columns: 1fr 1fr;
}

.socialTitle {
  margin: 26px 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.socialCards {
  display: grid;
  gap: 10px;
}

.socialCards .infoCard {
  min-height: 87px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.14);
  padding: 18px;
  box-shadow: var(--shadow2);
}

.panel__title {
  margin: 0 0 14px;
  font-size: 18px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 88px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.steps li>div {
  flex: 1;
}

.steps__num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(2, 8, 8, 0.92);
  background: linear-gradient(135deg, rgba(186, 247, 228, 0.95), rgba(95, 224, 138, 0.75));
}

.steps__title {
  font-weight: 750;
}

.steps__desc {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.quote {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.quote blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.quote__name {
  margin-top: 12px;
  font-weight: 800;
}

.quote__role {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin-top: 4px;
}

.contactCards {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.infoCard {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.infoCard__k {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.infoCard__v {
  margin-top: 6px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.9);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(10, 167, 164, 0.14), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(95, 224, 138, 0.1), transparent 60%),
    rgba(0, 0, 0, 0.18);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 247, 228, 0.35), transparent);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  height: 90px;
  width: auto;
  opacity: 0.95;
  filter:
    brightness(0) saturate(100%) invert(69%) sepia(45%) saturate(700%) hue-rotate(125deg) brightness(98%) contrast(98%);
}

.footer__tag {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__title {
  font-weight: 800;
  margin-bottom: 10px;
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
}

.socialRow {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social:hover {
  background: rgba(255, 255, 255, 0.08);
}

.social svg {
  width: 18px;
  height: 18px;
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 0 26px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottomLinks a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottomLinks a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.toTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .30);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow2);
  opacity: .92;

  z-index: 9999;
  /* ось це головне */
}

.toTop:hover {
  opacity: 1;
}

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

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

@media (max-width: 980px) {

  .hero__inner,
  .split,
  .split--contact,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__menu {
    position: absolute;
    top: 64px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 15, 16, 0.92);
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__cta {
    margin-left: 0;
  }

  .grid--3,
  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__logo {
    height: 72px;
  }
}

/* ===== Services dropdown ===== */
.servicesDropdown {
  position: relative;
}

.servicesDropdown__toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.servicesDropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 15, 16, 0.96);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 30;
}

.servicesDropdown.is-open .servicesDropdown__menu {
  display: flex;
}

.servicesDropdown__item {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease, transform 0.2s ease;
}

.servicesDropdown__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

/* ===== Services modal ===== */
.servicesModal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.servicesModal.is-open {
  display: block;
}

.servicesModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.servicesModal__dialog {
  position: relative;
  width: min(700px, calc(100% - 32px));
  margin: 8vh auto 0;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(10, 167, 164, 0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(95, 224, 138, 0.12), transparent 60%),
    rgba(5, 15, 16, 0.96);
  box-shadow: var(--shadow);
}

.servicesModal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.servicesModal__title {
  margin: 0 0 10px;
  font-size: 28px;
}

.servicesModal__text {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.servicesModal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.servicesChoice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.servicesChoice:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow2);
}

.servicesChoice__title {
  font-size: 20px;
  font-weight: 800;
}

.servicesChoice__desc {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.servicesChoice--accounting {
  background:
    linear-gradient(135deg, rgba(10, 167, 164, 0.22), rgba(95, 224, 138, 0.10)),
    rgba(255, 255, 255, 0.04);
}

.servicesChoice--legal {
  background:
    linear-gradient(135deg, rgba(25, 196, 177, 0.22), rgba(186, 247, 228, 0.10)),
    rgba(255, 255, 255, 0.04);
}

/* ===== Inner pages ===== */
.hero--inner {
  padding: 72px 0 64px;
}

.hero__inner--single {
  grid-template-columns: 1fr;
}

.servicePageCard {
  min-height: 100%;
}

.servicePageCta {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(10, 167, 164, 0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(95, 224, 138, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.04);
}

@media (max-width: 700px) {
  .servicesDropdown {
    width: 100%;
  }

  .servicesDropdown__menu {
    position: static;
    margin-top: 6px;
    min-width: 100%;
  }

  .servicesModal__dialog {
    margin-top: 5vh;
    padding: 22px;
  }

  .servicesModal__actions {
    grid-template-columns: 1fr;
  }
}

.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.priceCard {
  position: relative;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow2);
}

.priceCard--accent {
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(10, 167, 164, .18), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(95, 224, 138, .12), transparent 60%),
    rgba(255, 255, 255, .07);
  border-color: rgba(186, 247, 228, .24);
}

.priceCard__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(186, 247, 228, .95), rgba(95, 224, 138, .85));
  color: #041011;
  font-size: 12px;
  font-weight: 800;
}

.priceCard__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.priceCard__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.priceCard__price {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.priceCard__price span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  margin-left: 4px;
}

.priceCard__desc {
  color: rgba(255, 255, 255, .74);
  line-height: 1.55;
  margin: 0 0 10px;
}

.miniPriceList {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.miniPriceList div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.sectionHead--spaced {
  margin-top: 38px;
}

@media (max-width: 1100px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.modulesBlock {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modulesBlock__item {
  padding: 18px 20px;
  border-radius: 20px;

  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
}

.modulesBlock__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.modulesBlock__text {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.list__title {
  list-style: none;
  /* прибирає крапку */
  margin-top: 10px;
  margin-bottom: 4px;
  font-weight: 600;
  padding-left: 0;
}

.servicePageCta {
  margin-top: 40px;
}

.card--wide {
  grid-column: 1 / -1;
}

.innerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .innerGrid {
    grid-template-columns: 1fr;
  }
}

.socialTitle {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
}

.socialBlock:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.socialIcon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialIcon svg {
  width: 22px;
  height: 22px;
}

/* ===== Mobile cleanup overrides ===== */
body {
  overflow-x: hidden;
}

svg {
  max-width: 100%;
  height: auto;
}

.brand__text {
  min-width: 0;
}

.hero__content,
.hero__card,
.card,
.priceCard,
.servicesChoice,
.modulesBlock__item {
  min-width: 0;
}

.priceCard__price,
.hero__title,
.sectionTitle {
  overflow-wrap: anywhere;
}

.socialRow {
  flex-wrap: wrap;
}

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

  .header__inner {
    gap: 12px;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__title {
    font-size: clamp(30px, 6vw, 48px);
    line-height: 1.06;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .card--wide {
    grid-column: auto;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .servicesModal__actions,
  .split,
  .split--contact,
  .footer__inner,
  .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .brand {
    min-width: 0;
    max-width: calc(100% - 60px);
  }

  .brand__logo {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .brand__name {
    font-size: 16px;
    line-height: 1.2;
  }

  .brand__tag {
    font-size: 11px;
    line-height: 1.35;
  }

  .nav__menu {
    top: calc(100% + 10px);
    right: 0;
    left: 0;
  }

  .nav__link,
  .nav__cta,
  .servicesDropdown__toggle {
    width: 100%;
    text-align: left;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    min-height: 46px;
  }

  .card,
  .priceCard,
  .servicePageCta,
  .servicesModal__dialog,
  .modulesBlock__item {
    padding: 18px;
    border-radius: 20px;
  }

  .priceCard__name {
    font-size: 18px;
  }

  .priceCard__price {
    font-size: 24px;
    line-height: 1.15;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .sectionTitle {
    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.15;
  }

  .sectionDesc,
  .card__desc,
  .priceCard__desc,
  .modulesBlock__text {
    font-size: 15px;
    line-height: 1.6;
  }

  .list {
    padding-left: 18px;
  }

  .footer__bottomLinks {
    line-height: 1.7;
  }

  .social {
    width: 48px;
    height: 48px;
  }

  .toTop {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 20px);
  }

  .brand__tag {
    display: none;
  }

  .eyebrow {
    letter-spacing: 0.1em;
  }

  .hero__title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .priceCard__badge {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
  }

  .servicesDropdown__menu {
    min-width: 100%;
  }
}

.quote__meta a {
  color: #fff;
  /* білий текст */
  text-decoration: none;
  /* прибрати підкреслення */
}

.quote__meta a:hover {
  text-decoration: underline;
  /* при наведенні */
  opacity: 0.8;
}

.quote__meta a:visited {
  color: #fff;
  /* щоб після кліку не ставав фіолетовим */
}