:root {
  --max: 960px;
  --radius: 18px;
  --text: #eef6ff;
  --muted: #c5dbf5;
  --accent: #67e4ff;
  --card-border: rgba(108, 187, 236, 0.3);
  --btn-1: #0b6f99;
  --btn-2: #0a5a84;
  --trust-desktop-shift: 0px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", "Trebuchet MS", sans-serif;
  background: #030d24;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 10, 29, 0.2) 0%, rgba(2, 10, 29, 0.84) 100%),
    url("assets/background.png") center top / cover no-repeat;
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
}

.section {
  padding: 0;
}

.header {
  position: relative;
  z-index: 20;
  background: transparent;
  max-width: 100%;
  overflow-x: clip;
}

.header .container,
.hero .container {
  width: min(1088px, 100%);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  min-width: 0;
  flex-wrap: nowrap;
  max-width: 100%;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}

.brand__name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(30px, 4.5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.028em;
}

.brand__name-main {
  color: #f2f7ff;
}

.brand__name-accent {
  color: #1aa4c8;
}

.brand__tag {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(11px, 1.06vw, 15px);
  letter-spacing: 0.055em;
  color: #78cde8;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 24px);
}

.nav a {
  text-decoration: none;
  font-size: clamp(14px, 1.45vw, 20px);
  font-weight: 500;
  color: #e1eeff;
  opacity: 0.95;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(121, 197, 240, 0.34);
  border-radius: 10px;
  background: rgba(7, 34, 70, 0.68);
  color: #e5f2ff;
  padding: 7px 10px;
  transition: border-color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: rgba(216, 236, 255, 0.9);
  font-size: 11px;
  pointer-events: none;
}

.lang-switch:hover {
  border-color: rgba(125, 217, 255, 0.66);
  filter: brightness(1.05);
}

.lang-switch:focus-within {
  border-color: rgba(125, 217, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(95, 214, 255, 0.2);
}

.lang-switch__globe {
  font-size: 16px;
  line-height: 1;
}

.lang-switch__select {
  min-width: 90px;
  margin: 0;
  border: 0;
  padding: 1px 18px 1px 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.lang-switch__select:focus {
  outline: none;
}

.lang-switch__select option {
  color: #08294c;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(130, 200, 244, 0.42);
  border-radius: 10px;
  background: rgba(7, 37, 73, 0.66);
  color: #dff0ff;
  font-size: 22px;
  cursor: pointer;
}

.mobile-nav {
  border-top: 1px solid rgba(112, 187, 233, 0.22);
  background: rgba(5, 24, 52, 0.92);
}

.mobile-nav__inner {
  display: grid;
  gap: 12px;
  padding: 16px 20px 20px;
}

.mobile-nav a {
  text-decoration: none;
  color: #d7e8fb;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 1.45vw, 22px);
  padding: 13px 28px;
  background: linear-gradient(180deg, var(--btn-1) 0%, var(--btn-2) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn--small {
  min-width: 188px;
  padding: 12px 18px;
  font-size: clamp(15px, 1.1vw, 18px);
}

.hero {
  padding: 34px 0 64px;
  max-width: 100%;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 206px;
  align-items: start;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}

.trust-badges {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 206px;
  display: grid;
  gap: 8px;
  margin-top: 0;
  margin-right: 0;
  transform: translateX(var(--trust-desktop-shift));
  will-change: transform;
  min-width: 0;
  max-width: 100%;
}

.trust-badge {
  position: relative;
  isolation: isolate;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(121, 219, 255, 0.55);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(252, 255, 255, 0.98) 0%, rgba(234, 245, 253, 0.95) 60%, rgba(219, 233, 246, 0.93) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 0 rgba(100, 143, 179, 0.26),
    0 0 10px rgba(94, 227, 255, 0.26),
    0 0 22px rgba(28, 162, 255, 0.2),
    0 14px 30px rgba(0, 0, 0, 0.28);
  padding: 8px 10px;
  min-height: 56px;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  min-width: 0;
}

.trust-badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 16px;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(130, 241, 255, 0.5) 0%,
    rgba(67, 176, 255, 0.24) 36%,
    rgba(4, 21, 44, 0) 76%
  );
  filter: blur(11px);
  opacity: 0.7;
}

.trust-badge:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -2px 0 rgba(100, 143, 179, 0.24),
    0 0 12px rgba(94, 227, 255, 0.3),
    0 0 24px rgba(28, 162, 255, 0.24),
    0 16px 32px rgba(0, 0, 0, 0.32);
  filter: brightness(1.02);
}

.trust-badge:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(100, 143, 179, 0.18),
    0 0 8px rgba(94, 227, 255, 0.2),
    0 0 18px rgba(28, 162, 255, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.24);
}

.trust-badge:focus-visible {
  outline: 2px solid rgba(123, 226, 255, 0.9);
  outline-offset: 2px;
}

.trust-badge img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.trust-badge--mta img {
  max-height: 33px;
}

.trust-badge--ria img {
  max-height: 36px;
}

.trust-badge--riigiportaal img {
  max-height: 34px;
}

.trust-badge--eariregister img {
  max-height: 32px;
}

.trust-badge--merit img {
  max-height: 28px;
}

.trust-badge--calculator {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(121, 219, 255, 0.55);
  min-height: 56px;
  padding: 8px 10px;
  color: #0e4778;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.02em;
  text-align: center;
  font-family: inherit;
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 660px;
  min-width: 0;
}

.payroll-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.payroll-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.payroll-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 30, 0.48);
  backdrop-filter: blur(2px);
}

.payroll-modal__panel {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(390px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  border: 1px solid rgba(112, 203, 248, 0.42);
  border-radius: 18px;
  padding: 18px 16px 14px;
  background:
    linear-gradient(160deg, rgba(15, 52, 103, 0.88) 0%, rgba(6, 26, 58, 0.92) 100%),
    url("assets/bg-wave-clean.png") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 22px rgba(81, 215, 255, 0.18),
    0 26px 44px rgba(0, 0, 0, 0.44);
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.payroll-modal.is-open .payroll-modal__panel {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.payroll-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(121, 201, 243, 0.45);
  border-radius: 9px;
  background: rgba(8, 35, 72, 0.72);
  color: #dff2ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.payroll-modal__title {
  margin: 0;
  font-size: clamp(26px, 2.12vw, 34px);
  font-weight: 600;
}

.payroll-modal__subtitle {
  margin: 6px 0 12px;
  color: #cde2f9;
  line-height: 1.4;
  font-size: clamp(14px, 1.14vw, 16px);
}

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

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

.payroll-mode__item {
  position: relative;
}

.payroll-mode__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payroll-mode__item span {
  display: block;
  border: 1px solid rgba(121, 194, 239, 0.38);
  border-radius: 9px;
  background: rgba(9, 35, 70, 0.6);
  padding: 9px 8px;
  text-align: center;
  color: #d9ebff;
  font-size: clamp(13px, 1.02vw, 15px);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.payroll-mode__item input:checked + span {
  border-color: rgba(115, 236, 255, 0.88);
  box-shadow: 0 0 0 2px rgba(86, 213, 255, 0.2);
  filter: brightness(1.04);
}

.payroll-form__field {
  display: grid;
  gap: 6px;
}

.payroll-form__field span {
  color: #d5e9ff;
  font-size: clamp(13px, 1.02vw, 15px);
}

.payroll-form__field input,
.payroll-form__field select {
  width: 100%;
  border: 1px solid rgba(123, 190, 236, 0.4);
  border-radius: 8px;
  background: rgba(8, 31, 66, 0.72);
  color: #eff7ff;
  padding: 9px 11px;
  font-family: inherit;
  font-size: clamp(14px, 1.15vw, 17px);
}

.number-field {
  position: relative;
  display: block;
  width: 100%;
}

.number-field input[type="number"] {
  width: 100%;
  padding-right: 50px;
  appearance: textfield;
  -moz-appearance: textfield;
}

.number-field input[type="number"]::-webkit-outer-spin-button,
.number-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-field__controls {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: grid;
  gap: 5px;
}

.number-field__btn {
  width: 24px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(117, 235, 255, 0.58);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(10, 68, 116, 0.96), rgba(6, 39, 76, 0.98));
  color: #9af6ff;
  box-shadow:
    0 0 10px rgba(62, 215, 255, 0.28),
    inset 0 0 8px rgba(105, 240, 255, 0.14);
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.number-field__btn:hover:not(:disabled),
.number-field__btn:focus-visible {
  outline: none;
  border-color: rgba(135, 245, 255, 0.92);
  color: #d7fcff;
  transform: translateY(-1px);
  box-shadow:
    0 0 14px rgba(88, 227, 255, 0.5),
    0 0 22px rgba(88, 227, 255, 0.22),
    inset 0 0 12px rgba(120, 242, 255, 0.22);
}

.number-field__btn:active:not(:disabled) {
  transform: translateY(0);
}

.number-field__btn:disabled {
  opacity: 0.38;
  cursor: default;
  box-shadow: none;
}

.number-field__btn--up::before {
  content: "▲";
}

.number-field__btn--down::before {
  content: "▼";
}

.payroll-form__field input:focus,
.payroll-form__field select:focus {
  outline: none;
  border-color: rgba(123, 190, 236, 0.75);
  box-shadow: 0 0 0 3px rgba(66, 176, 224, 0.2);
}

.payroll-form__field input.is-error {
  border-color: rgba(255, 122, 137, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 94, 116, 0.18);
}

.payroll-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbeeff;
  font-size: clamp(13px, 1.02vw, 15px);
}

.payroll-check input {
  width: 17px;
  height: 17px;
  margin: 0;
}

.payroll-check__help {
  margin: -4px 0 0 27px;
  color: #b8d4ef;
  font-size: clamp(11px, 0.95vw, 13px);
}

.payroll-form__submit {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
}

.payroll-form__hint {
  min-height: 1.25em;
  margin: 0;
  color: #8fe0ff;
  font-size: clamp(12px, 0.98vw, 14px);
}

.payroll-form__hint.is-error {
  color: #ff9eb0;
}

.payroll-result {
  margin-top: 12px;
  border: 1px solid rgba(117, 197, 242, 0.28);
  border-radius: 12px;
  background: rgba(8, 31, 63, 0.58);
  padding: 11px 12px;
}

.payroll-result h4 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.24vw, 18px);
  font-weight: 600;
}

.payroll-result ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.payroll-result li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #d8ecff;
  font-size: clamp(13px, 1.01vw, 15px);
}

.payroll-result li strong {
  color: #8dedff;
}

.payroll-modal__note {
  margin: 10px 0 0;
  color: #b8d1ec;
  font-size: clamp(11px, 0.94vw, 13px);
}

@media (max-height: 760px) {
  .payroll-modal__panel {
    max-height: calc(100dvh - 14px);
    padding: 14px 14px 12px;
  }
}

.hero__title {
  margin: 0;
  display: grid;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 6.05vw, 72px);
}

.hero__title [data-i18n="heroTitleMain"] {
  white-space: pre-line;
}

.hero__title-accent {
  color: #75edff;
}

.hero__text {
  margin: 22px 0 32px;
  max-width: 59ch;
  color: #d4e5f9;
  font-weight: 500;
  line-height: 1.47;
  font-size: clamp(17px, 1.8vw, 26px);
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn {
  min-width: 300px;
}

.hero__secondary-link {
  color: #8ee7ff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.28vw, 18px);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.hero__secondary-link:hover {
  color: #d9f7ff;
}

.about,
.services,
.pricing,
.bottom {
  scroll-margin-top: 96px;
}

.about {
  padding: 0 0 54px;
}

.services {
  padding: 0 0 54px;
}

.about .container,
.services .container,
.pricing .container {
  width: min(1088px, 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #7fdfff;
  font-size: clamp(12px, 0.98vw, 14px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section__title {
  margin: 0 0 26px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(40px, 4.95vw, 68px);
}

.section__title--left {
  margin-bottom: 14px;
  text-align: left;
}

.section__lead {
  margin: 0;
  color: #d2e3f7;
  line-height: 1.52;
  font-size: clamp(17px, 1.45vw, 23px);
}

.about__lead {
  max-width: 62ch;
}

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

.about-card,
.service-list-card,
.pricing-panel,
.consult-card {
  border: 1px solid rgba(106, 181, 231, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15, 52, 96, 0.76), rgba(8, 30, 66, 0.82)),
    url("assets/bg-wave-clean.png") center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.about-card {
  padding: 22px 20px;
}

.about-card--wide {
  grid-column: span 2;
}

.about-card h3 {
  margin: 0 0 14px;
  color: #eef8ff;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
}

.about-card p {
  margin: 0;
  color: #d4e5f8;
  line-height: 1.55;
  font-size: clamp(15px, 1.14vw, 17px);
}

.about-card p + p {
  margin-top: 12px;
}

.service-list-card {
  padding: 22px 20px;
}

.service-list-card__lead {
  margin: 0 0 14px;
  color: #eef8ff;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 600;
}

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

.service-overview li {
  position: relative;
  padding-left: 26px;
  color: #d4e5f8;
  line-height: 1.5;
  font-size: clamp(15px, 1.14vw, 17px);
}

.service-overview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8ff0ff 0%, #1fb0db 100%);
  box-shadow: 0 0 10px rgba(113, 236, 255, 0.35);
}

.pricing {
  padding: 0 0 54px;
}

.pricing__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.consult-card {
  padding: 20px 18px;
}

.consult-card__label {
  margin: 0;
  color: #bfe8ff;
  font-size: clamp(14px, 1.04vw, 16px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consult-card__price {
  display: block;
  margin-top: 10px;
  color: #f8fcff;
  font-size: clamp(34px, 3.1vw, 46px);
  font-weight: 700;
  line-height: 1.05;
}

.pricing__vat-note,
.consult-card__vat,
.price__vat,
.service-order__vat,
.association-result__vat {
  color: #8defff;
  font-size: clamp(12px, 0.98vw, 14px);
  line-height: 1.4;
}

.pricing__vat-note {
  margin: 10px 0 0;
}

.consult-card__vat {
  margin: 8px 0 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.consult-card__text {
  margin: 12px 0 18px;
  color: #d3e4f8;
  line-height: 1.48;
  font-size: clamp(14px, 1.05vw, 16px);
}

.consult-card .btn {
  width: 100%;
}

.pricing-panel {
  padding: 22px 20px;
}

.pricing-panel + .pricing-panel {
  margin-top: 18px;
}

.pricing-panel--secondary {
  background:
    linear-gradient(180deg, rgba(11, 44, 90, 0.86), rgba(6, 28, 59, 0.92)),
    url("assets/bg-wave-clean.png") center / cover no-repeat;
}

.pricing-panel__heading {
  margin-bottom: 18px;
}

.pricing-panel__heading h3 {
  margin: 0;
  color: #eef8ff;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 600;
}

.pricing-panel__heading p {
  margin: 10px 0 0;
  color: #d3e4f8;
  line-height: 1.48;
  font-size: clamp(15px, 1.12vw, 17px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.association-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: start;
}

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

.association-field {
  display: grid;
  gap: 6px;
}

.association-field span {
  color: #d7e9fb;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.35;
  hyphens: none;
  word-break: normal;
}

.association-field input,
.association-field select {
  width: 100%;
  border: 1px solid rgba(123, 190, 236, 0.4);
  border-radius: 8px;
  background: rgba(8, 31, 66, 0.72);
  color: #eff7ff;
  padding: 10px 12px;
  font-family: inherit;
  font-size: clamp(14px, 1.08vw, 16px);
}

.association-field input:focus,
.association-field select:focus {
  outline: none;
  border-color: rgba(123, 190, 236, 0.75);
  box-shadow: 0 0 0 3px rgba(66, 176, 224, 0.2);
}

.association-calculator__hint {
  grid-column: 1 / -1;
  margin: 0;
  color: #afcde8;
  line-height: 1.45;
  font-size: clamp(12px, 0.98vw, 14px);
}

.association-result {
  border: 1px solid rgba(117, 197, 242, 0.28);
  border-radius: 18px;
  background: rgba(8, 31, 63, 0.58);
  padding: 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.association-result h4 {
  margin: 0 0 14px;
  color: #eef8ff;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
}

.association-result__row,
.association-result__total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: #d8ebff;
  font-size: clamp(14px, 1.05vw, 16px);
}

.association-result__row span,
.association-result__total span {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
  hyphens: none;
  word-break: normal;
}

.association-result__row + .association-result__row {
  margin-top: 10px;
}

.association-result__row strong,
.association-result__total strong {
  color: #8ef0ff;
  font-weight: 700;
  text-align: right;
}

.association-result__total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(120, 197, 239, 0.24);
  color: #f2f9ff;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
}

.association-result__vat {
  margin: 10px 0 0;
}

.association-result__note {
  margin: 14px 0 0;
  color: #b8d1ec;
  line-height: 1.45;
  font-size: clamp(12px, 0.98vw, 14px);
}

.association-result__cta {
  width: 100%;
  margin-top: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 526px;
  min-width: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 22px 18px;
  background:
    linear-gradient(180deg, rgba(16, 51, 100, 0.78), rgba(8, 32, 69, 0.86)),
    url("assets/bg-wave-clean.png") center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.pricing-compare {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(114, 191, 238, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(14, 47, 93, 0.58), rgba(8, 29, 59, 0.72));
}

.pricing-compare__title {
  margin: 0 0 12px;
  color: #f2fbff;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
}

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

.pricing-compare__item {
  padding: 14px 16px;
  border: 1px solid rgba(113, 197, 246, 0.24);
  border-radius: 14px;
  background: rgba(7, 28, 58, 0.46);
}

.pricing-compare__item strong {
  display: block;
  color: #eef8ff;
  font-size: clamp(16px, 1.28vw, 20px);
  font-weight: 600;
}

.pricing-compare__item p {
  margin: 8px 0 0;
  color: #c4dbf3;
  line-height: 1.42;
  font-size: clamp(13px, 1.03vw, 16px);
}

.price-card--interactive {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.price-card--interactive:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.36);
}

.price-card--interactive:focus-visible {
  outline: 2px solid rgba(120, 235, 255, 0.85);
  outline-offset: 2px;
}

.price-card.is-selected {
  border-color: rgba(114, 236, 255, 0.9);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(114, 236, 255, 0.4),
    0 0 18px rgba(84, 217, 255, 0.24);
}

.price-card__icon {
  width: 66px;
  height: 66px;
  display: block;
  object-fit: cover;
  object-position: center top;
  clip-path: inset(0 0 5px 0);
  margin: 0 auto 14px;
}

.price-card h3 {
  margin: 0;
  min-height: 2.7em;
  text-align: center;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(18px, 1.7vw, 28px);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.price-card p {
  margin: 10px auto 8px;
  min-height: 3em;
  text-align: center;
  color: #c4dbf3;
  line-height: 1.34;
  font-size: clamp(13px, 1.02vw, 16px);
  max-width: 26ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.price-card__link {
  border: 0;
  background: transparent;
  padding: 0;
  align-self: center;
  text-decoration: none;
  color: #63e7ff;
  font-size: clamp(15px, 1.45vw, 21px);
  font-family: inherit;
  cursor: pointer;
}

.price {
  margin: 14px 0 12px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 5px;
  text-align: center;
}

.price span {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  line-height: 1;
  font-size: clamp(34px, 3.2vw, 52px);
  max-width: 100%;
}

.price .price__prefix {
  font-size: 0.6em;
  color: #d6e8fa;
  letter-spacing: 0.01em;
}

.price .price__amount {
  font-size: 1em;
}

.price small {
  color: #c0d6ef;
  font-size: clamp(14px, 1.35vw, 24px);
  line-height: 1.1;
  max-width: 100%;
  text-wrap: balance;
}

.price__vat {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 24px;
  line-height: 1.34;
  color: #def0ff;
  font-size: clamp(13px, 1.03vw, 17px);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #72ebff;
  font-weight: 700;
}

.btn--card {
  width: 156px;
  margin: auto auto 0;
  padding: 9px 14px;
  font-size: clamp(15px, 1.2vw, 18px);
}

.service-configurator {
  margin-top: 22px;
  border: 1px solid rgba(108, 187, 236, 0.32);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(15, 48, 94, 0.78), rgba(8, 29, 62, 0.84)),
    url("assets/bg-wave-clean.png") center / cover no-repeat;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.service-configurator__layout {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 16px;
}

.service-configurator__panel,
.service-order {
  border: 1px solid rgba(121, 191, 235, 0.26);
  border-radius: 14px;
  background: rgba(7, 29, 61, 0.58);
  padding: 16px;
}

.service-configurator__title,
.service-order h3,
.service-order-form h3 {
  margin: 0;
  font-size: clamp(24px, 2.15vw, 32px);
  font-weight: 600;
}

.service-configurator__text {
  margin: 8px 0 0;
  color: #cfdef2;
  line-height: 1.42;
  font-size: clamp(14px, 1.25vw, 18px);
}

.service-configurator__block {
  margin-top: 14px;
}

.service-configurator__block h4 {
  margin: 0 0 8px;
  font-weight: 600;
  color: #dff0ff;
  font-size: clamp(16px, 1.34vw, 20px);
}

.service-period {
  display: grid;
  gap: 6px;
}

.service-period label {
  color: #d5e8fd;
  font-size: clamp(13px, 1.06vw, 15px);
}

.service-period__hint {
  margin: 6px 0 0;
  color: #bcd7ef;
  line-height: 1.35;
  font-size: clamp(12px, 1vw, 14px);
}

.service-period__hint.is-optional {
  color: #8be6ff;
}

.service-period select {
  width: 100%;
  border: 1px solid rgba(123, 190, 236, 0.44);
  border-radius: 8px;
  background: rgba(8, 31, 66, 0.72);
  color: #eff7ff;
  padding: 9px 12px;
  font-family: inherit;
  font-size: clamp(14px, 1.16vw, 17px);
}

.service-period select:focus {
  outline: none;
  border-color: rgba(123, 190, 236, 0.75);
  box-shadow: 0 0 0 3px rgba(66, 176, 224, 0.2);
}

.service-period select.is-error {
  border-color: rgba(255, 122, 137, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 94, 116, 0.18);
}

.service-period.is-error label {
  color: #ff9eb0;
}

.service-regfee {
  border: 1px solid rgba(118, 198, 241, 0.26);
  border-radius: 12px;
  padding: 10px 12px 11px;
  background: rgba(9, 36, 72, 0.46);
}

.service-regfee h4 {
  margin-bottom: 6px;
}

.service-regfee__list {
  gap: 4px;
}

.service-regfee__list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.service-regfee__list li.is-selected {
  color: #ecf8ff;
}

.service-regfee__list li.is-selected strong {
  color: #8ef1ff;
}

.service-regfee__list li::before {
  top: 0;
}

.service-regfee__list strong {
  color: #84ecff;
  font-weight: 600;
  white-space: nowrap;
}

.service-regfee__note {
  margin: 8px 0 0;
  color: #a8cbe6;
  line-height: 1.35;
  font-size: clamp(12px, 0.98vw, 14px);
}

.service-workload {
  border: 1px solid rgba(118, 198, 241, 0.22);
  border-radius: 12px;
  padding: 12px;
  background: rgba(9, 36, 72, 0.42);
}

.service-workload__text {
  margin: 0 0 10px;
  color: #cfe2f7;
  line-height: 1.42;
  font-size: clamp(13px, 1.04vw, 15px);
}

.service-workload__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.service-workload__selected > span {
  color: #d5e8fd;
  font-size: clamp(13px, 1.06vw, 15px);
}

.service-workload__selected {
  border: 1px solid rgba(114, 191, 238, 0.24);
  border-radius: 10px;
  background: rgba(7, 29, 61, 0.54);
  padding: 10px 12px;
}

.service-workload__selected strong {
  display: block;
  margin-top: 6px;
  color: #f2fbff;
  font-size: clamp(17px, 1.34vw, 21px);
  font-weight: 700;
}

.service-workload__selected p {
  margin: 6px 0 0;
  color: #a8cbe6;
  line-height: 1.38;
  font-size: clamp(12px, 0.98vw, 14px);
}

.service-package-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-package-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(114, 191, 238, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(7, 29, 61, 0.4);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.service-package-item:hover {
  transform: translateY(-1px);
}

.service-package-item:focus-visible {
  outline: none;
  border-color: rgba(114, 236, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(83, 214, 255, 0.16);
}

.service-package-item.is-active {
  border-color: rgba(114, 236, 255, 0.82);
  box-shadow: 0 0 0 2px rgba(83, 214, 255, 0.14);
}

.service-package-item__info {
  display: grid;
  gap: 4px;
}

.service-package-item__info strong {
  color: #eef8ff;
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 600;
}

.service-package-item__info span {
  color: #b7d1ea;
  line-height: 1.34;
  font-size: clamp(12px, 0.96vw, 14px);
}

.service-package-item__price {
  color: #7ceaff;
  white-space: nowrap;
  font-size: clamp(13px, 1.08vw, 16px);
  font-weight: 700;
}

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

.service-type-btn {
  border: 1px solid rgba(113, 197, 246, 0.34);
  border-radius: 10px;
  background: rgba(8, 37, 77, 0.68);
  color: #e6f4ff;
  padding: 10px 12px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.service-type-btn:hover {
  transform: translateY(-1px);
}

.service-type-btn.is-active {
  border-color: rgba(114, 236, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(83, 214, 255, 0.18);
}

.service-type-btn__title {
  display: block;
  color: #eef8ff;
  font-size: clamp(15px, 1.14vw, 17px);
  font-weight: 700;
}

.service-type-btn__subtitle {
  display: block;
  margin-top: 4px;
  color: #c5dbf2;
  line-height: 1.34;
  font-size: clamp(12px, 0.98vw, 14px);
}

.service-type-btn__note {
  display: block;
  margin-top: 8px;
  color: #7ceaff;
  font-size: clamp(12px, 0.98vw, 14px);
  font-weight: 600;
}

.service-types__hint {
  margin: 10px 0 0;
  color: #a8cbe6;
  line-height: 1.38;
  font-size: clamp(12px, 0.98vw, 14px);
}

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

.service-list li {
  position: relative;
  padding-left: 22px;
  color: #d8ebff;
  line-height: 1.35;
  font-size: clamp(13px, 1.12vw, 17px);
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #72ebff;
  font-weight: 700;
}

.service-extras {
  display: grid;
  gap: 8px;
}

.service-extra {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(114, 191, 238, 0.28);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(9, 34, 67, 0.56);
}

.service-extra__main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-extra__main input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.service-extra__label {
  flex: 1;
  color: #e2f1ff;
  line-height: 1.34;
  font-size: clamp(13px, 1.08vw, 16px);
}

.service-extra__price {
  color: #7ceaff;
  white-space: nowrap;
  font-size: clamp(13px, 1.08vw, 16px);
  font-weight: 600;
}

.service-extra__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 28px;
}

.service-extra__qty span {
  color: #c3d8ee;
  font-size: clamp(12px, 1.01vw, 14px);
}

.service-extra__qty input {
  width: 88px;
  border: 1px solid rgba(123, 190, 236, 0.42);
  border-radius: 7px;
  background: rgba(8, 31, 66, 0.7);
  color: #eef8ff;
  padding: 6px 8px;
  font-family: inherit;
  font-size: clamp(12px, 1.02vw, 14px);
}

.service-extra__qty .number-field {
  width: 96px;
  flex: 0 0 96px;
}

.service-extra__qty .number-field input {
  width: 100%;
  padding-right: 36px;
}

.service-order {
  display: flex;
  flex-direction: column;
}

.service-order__line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: #d4e8ff;
  line-height: 1.35;
  font-size: clamp(14px, 1.2vw, 17px);
}

.service-order__line strong,
.service-order__total strong {
  text-align: right;
}

#orderMonthlyRow strong {
  color: #84ebff;
}

.service-order__extras {
  margin-top: 14px;
}

.service-order__extras p {
  margin: 0 0 6px;
  color: #dcecff;
  font-size: clamp(14px, 1.18vw, 17px);
  font-weight: 600;
}

.service-order__extras ul {
  margin: 0;
  padding-left: 18px;
  color: #d1e5fc;
  display: grid;
  gap: 4px;
  font-size: clamp(13px, 1.06vw, 15px);
}

.service-order__total {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(117, 200, 247, 0.28);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #eaf6ff;
  font-weight: 600;
  font-size: clamp(16px, 1.35vw, 20px);
}

.service-order__vat {
  margin: 8px 0 0;
}

.service-order__btn {
  width: 100%;
  margin-top: auto;
  min-height: 50px;
}

.service-order-form {
  margin-top: 14px;
  border: 1px solid rgba(114, 188, 233, 0.3);
  border-radius: 14px;
  background: rgba(9, 32, 65, 0.72);
  padding: 16px;
}

.service-order-form__note {
  margin: 8px 0 0;
  color: #8defff;
  line-height: 1.42;
  font-size: clamp(12px, 0.98vw, 14px);
}

.service-order-form__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.service-order-form input,
.service-order-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 190, 236, 0.4);
  border-radius: 8px;
  background: rgba(8, 31, 66, 0.72);
  color: #eff7ff;
  padding: 10px 12px;
  font-family: inherit;
  font-size: clamp(14px, 1.2vw, 17px);
}

.service-order-form textarea {
  grid-column: 1 / -1;
  min-height: 94px;
  resize: vertical;
}

.service-order-form input:focus,
.service-order-form textarea:focus {
  outline: none;
  border-color: rgba(123, 190, 236, 0.75);
  box-shadow: 0 0 0 3px rgba(66, 176, 224, 0.2);
}

.service-order-form input.is-error,
.service-order-form textarea.is-error {
  border-color: rgba(255, 122, 137, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 94, 116, 0.18);
}

.service-order-form__submit {
  margin-top: 10px;
}

.bottom {
  padding: 0 0 38px;
}

.bottom__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: 18px;
}

.company-card .section__title {
  text-align: left;
}

.company-info {
  border: 1px solid rgba(106, 181, 231, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(15, 52, 96, 0.72), rgba(9, 36, 74, 0.76)),
    url("assets/bg-wave-clean.png") center / cover no-repeat;
  padding: 16px 14px;
}

.company-info__name {
  margin: 0;
  color: #e9f6ff;
  font-weight: 600;
  font-size: clamp(24px, 2.12vw, 34px);
}

.company-info__rows {
  margin-top: 12px;
  display: grid;
  gap: 9px;
}

.company-info__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  color: #d6e9ff;
  line-height: 1.34;
  font-size: clamp(14px, 1.12vw, 17px);
}

.company-info__row > span {
  color: #bcd8f2;
  flex: 0 0 auto;
}

.company-info__row > strong,
.company-info__row > a {
  text-align: right;
  color: #eef7ff;
  font-weight: 600;
}

.company-info__row > a {
  text-decoration: none;
}

.company-info__row--phone {
  align-items: center;
}

.company-info__phone-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.company-info__phone {
  color: #84ecff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 20px);
}

.company-info__call.btn--small {
  min-width: 0;
  padding: 7px 12px;
  font-size: clamp(13px, 1.04vw, 15px);
}

.company-info__site {
  margin-top: 14px;
  display: inline-block;
  color: #76deff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 1.25vw, 18px);
}

.company-info__note {
  margin: 9px 0 0;
  color: #a8cce8;
  line-height: 1.33;
  font-size: clamp(12px, 0.96vw, 14px);
}

.review {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(106, 181, 231, 0.28);
  background: rgba(15, 52, 96, 0.66);
}

.avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(121, 205, 251, 0.46);
  object-fit: cover;
}

.review h3 {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 24px);
}

.review p {
  margin: 0 0 7px;
  color: #d7e7fb;
  font-weight: 500;
  line-height: 1.35;
  font-size: clamp(13px, 1.2vw, 17px);
}

.review a {
  color: #76deff;
  text-decoration: none;
  font-size: clamp(14px, 1.2vw, 17px);
}

.quick-contact {
  border: 1px solid rgba(106, 181, 231, 0.3);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(16, 51, 93, 0.8), rgba(11, 39, 78, 0.78)),
    url("assets/bg-wave-clean.png") center / cover no-repeat;
  padding: 20px 20px 14px;
}

.quick-contact h2 {
  margin: 0;
  font-size: clamp(42px, 4.95vw, 64px);
}

.quick-contact > p {
  margin: 10px 0 15px;
  color: #d4e4f8;
  font-weight: 500;
  line-height: 1.36;
  font-size: clamp(17px, 1.65vw, 24px);
}

.quick-contact__note {
  margin: -4px 0 15px;
  color: #8defff;
  line-height: 1.42;
  font-size: clamp(12px, 0.98vw, 14px);
}

.quote-context {
  margin: 0 0 16px;
  border: 1px solid rgba(118, 208, 248, 0.3);
  border-radius: 14px;
  background: rgba(8, 31, 66, 0.58);
  padding: 14px 14px 12px;
}

.quote-context h3 {
  margin: 0;
  color: #eef8ff;
  font-size: clamp(18px, 1.34vw, 22px);
  font-weight: 600;
}

.quote-context p {
  margin: 8px 0 12px;
  color: #d3e4f8;
  line-height: 1.42;
  font-size: clamp(13px, 1vw, 15px);
}

.quote-context__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.quote-context__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #d8ebff;
  font-size: clamp(13px, 1vw, 15px);
}

.quote-context__list strong {
  color: #8ef0ff;
  font-weight: 700;
  text-align: right;
}

.quote-context__edit {
  margin-top: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #86e8ff;
  font-family: inherit;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  cursor: pointer;
}

.quote-context__edit:hover {
  color: #d7f7ff;
}

.quick-contact__form {
  display: grid;
  gap: 9px;
}

.quick-contact__form input,
.quick-contact__form textarea {
  width: 100%;
  border: 1px solid rgba(123, 190, 236, 0.4);
  border-radius: 8px;
  background: rgba(8, 31, 66, 0.72);
  color: #eff7ff;
  padding: 10px 13px;
  font-family: inherit;
  font-size: clamp(15px, 1.28vw, 19px);
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
}

.quick-contact__form input:focus,
.quick-contact__form textarea:focus {
  outline: none;
  border-color: rgba(123, 190, 236, 0.75);
  box-shadow: 0 0 0 3px rgba(66, 176, 224, 0.2);
}

.quick-contact__form input.is-error,
.quick-contact__form textarea.is-error {
  border-color: rgba(255, 122, 137, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 94, 116, 0.18);
}

.quick-contact__form textarea {
  min-height: 84px;
  resize: vertical;
}

.file-field {
  display: grid;
  gap: 6px;
}

.file-field__picker {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px dashed rgba(133, 199, 243, 0.5);
  border-radius: 8px;
  background: rgba(8, 31, 66, 0.64);
  padding: 8px 10px;
}

.file-field__picker.is-error {
  border-color: rgba(255, 122, 137, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 94, 116, 0.18);
}

.file-field__label {
  color: #d8e9fb;
  font-size: clamp(13px, 1.12vw, 16px);
  font-weight: 600;
}

.file-field__choose {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #0b6f99 0%, #0a5a84 100%);
  color: #fff;
  padding: 7px 12px;
  font-family: inherit;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  cursor: pointer;
  flex: 0 0 auto;
}

.file-field__choose:hover {
  filter: brightness(1.04);
}

.file-field__choose:focus-visible {
  outline: 2px solid rgba(127, 226, 255, 0.8);
  outline-offset: 2px;
}

.quick-contact__form input.file-field__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  min-width: 1px;
  max-width: 1px;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(50%);
}

.file-field__hint {
  margin: 0;
  color: #bcd3ea;
  font-size: clamp(12px, 0.98vw, 14px);
  line-height: 1.2;
  text-wrap: balance;
}

.quick-contact__form .btn {
  margin-top: 4px;
  font-size: clamp(16px, 1.9vw, 28px);
}

.form__hint {
  min-height: 1.25em;
  margin: 1px 0 0;
  color: #89d9ff;
  font-size: clamp(12px, 1.05vw, 16px);
}

.form__hint.is-error {
  color: #ff9eb0;
}

.banks {
  padding: 6px 0 30px;
}

.banks__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.banks__item {
  position: relative;
  isolation: isolate;
  margin: 0;
  text-decoration: none;
  border: 1px solid rgba(112, 187, 233, 0.24);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(247, 252, 255, 0.95), rgba(232, 243, 252, 0.92));
  min-height: 92px;
  padding: 14px 10px;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -2px 0 rgba(76, 120, 156, 0.26),
    0 10px 24px rgba(0, 0, 0, 0.2),
    0 0 14px rgba(79, 200, 246, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.banks__item::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(84, 209, 253, 0.2) 0%, rgba(84, 209, 253, 0) 74%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.banks__item:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 187, 233, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -2px 0 rgba(76, 120, 156, 0.24),
    0 14px 28px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(79, 200, 246, 0.18);
  filter: brightness(1.01);
}

.banks__item:hover::before {
  opacity: 1;
}

.banks__item:active {
  transform: translateY(1px);
}

.banks__item:focus-visible {
  outline: 2px solid rgba(108, 221, 255, 0.82);
  outline-offset: 2px;
}

.banks__logo {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.banks__logo--swedbank {
  max-height: 34px;
}

.banks__logo--seb {
  max-height: 42px;
}

.banks__logo--lhv {
  max-height: 30px;
}

.banks__logo--revolut {
  max-height: 48px;
}

.banks__logo--paypal {
  max-height: 34px;
}

.footer {
  padding: 16px 0 30px;
  color: #a5c8ea;
  font-size: clamp(13px, 1.02vw, 16px);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer__copy {
  color: #a5c8ea;
}

.footer__credit {
  color: #7edfff;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(90, 210, 255, 0.25);
  text-align: right;
}

@media (max-width: 980px) {
  .container {
    padding: 0 18px;
  }

  .header__inner {
    min-height: 94px;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card:last-child {
    grid-column: span 2;
  }

  .about__grid,
  .pricing__header,
  .association-calculator {
    grid-template-columns: 1fr;
  }

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

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

  .service-configurator__layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero__content {
    order: 1;
  }

  .trust-badges {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    justify-self: stretch;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    margin-top: 0;
    margin-right: 0;
    transform: none;
    padding: 2px 2px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-badges::-webkit-scrollbar {
    display: none;
  }

  .trust-badge {
    flex: 0 0 150px;
    min-height: 50px;
    padding: 8px;
  }

  .trust-badge--mta img {
    max-height: 26px;
  }

  .trust-badge--ria img {
    max-height: 27px;
  }

  .trust-badge--riigiportaal img {
    max-height: 25px;
  }

  .trust-badge--eariregister img {
    max-height: 24px;
  }

  .trust-badge--merit img {
    max-height: 22px;
  }

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

@media (max-width: 760px) {
  .header__inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 6px;
    gap: 0;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand__name {
    font-size: clamp(20px, 7.2vw, 28px);
    line-height: 1.02;
  }

  .brand__tag {
    font-size: 8px;
    letter-spacing: 0.03em;
  }

  .nav,
  .header .btn--small {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
    padding: 4px 6px;
    gap: 4px;
    border-radius: 9px;
    max-width: 62px;
    min-width: 62px;
    flex: 0 0 62px;
  }

  .lang-switch__select {
    min-width: 26px;
    width: 26px;
    font-size: 11px;
    font-weight: 700;
    padding-right: 8px;
    text-align: center;
    text-align-last: center;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 18px;
  }

  .lang-switch::after {
    right: 5px;
    font-size: 8px;
  }

  .lang-switch__globe {
    font-size: 12px;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 58px;
  }

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

  .trust-badges {
    gap: 7px;
    padding: 1px 1px 4px 1px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .trust-badge {
    flex: 0 0 118px;
    min-height: 48px;
  }

  .trust-badge::before {
    inset: -5px;
  }

  .trust-badge--mta img {
    max-height: 24px;
  }

  .trust-badge--ria img {
    max-height: 24px;
  }

  .trust-badge--riigiportaal img {
    max-height: 22px;
  }

  .trust-badge--eariregister img {
    max-height: 22px;
  }

  .trust-badge--merit img {
    max-height: 20px;
  }

  .hero__content {
    order: 1;
    max-width: 100%;
  }

  .hero .btn {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section__title,
  .quick-contact h2 {
    font-size: clamp(34px, 8.2vw, 48px);
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .about-card,
  .service-list-card,
  .pricing-panel,
  .consult-card {
    padding: 18px 16px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-compare__grid {
    grid-template-columns: 1fr;
  }

  .price-card:last-child {
    grid-column: auto;
  }

  .price-card {
    min-height: 0;
  }

  .price-card h3,
  .price-card p {
    min-height: 0;
  }

  .service-types {
    grid-template-columns: 1fr;
  }

  .service-workload__grid {
    grid-template-columns: 1fr;
  }

  .service-order-form__grid {
    grid-template-columns: 1fr;
  }

  .association-calculator__form {
    grid-template-columns: 1fr;
  }

  .company-info__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .company-info__row > strong,
  .company-info__row > a {
    text-align: left;
  }

  .banks {
    padding-bottom: 24px;
  }

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

  .footer__inner {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 14px;
  }

  .brand__name {
    font-size: clamp(18px, 7.1vw, 24px);
  }

  .brand__tag {
    font-size: 7px;
    letter-spacing: 0.03em;
  }

  .header__inner {
    gap: 6px;
  }

  .lang-switch {
    min-width: 58px;
    flex-basis: 58px;
    padding: 4px 5px;
    gap: 3px;
  }

  .lang-switch__select {
    width: 24px;
    min-width: 24px;
    font-size: 10px;
  }

  .trust-badges {
    gap: 6px;
  }

  .trust-badge {
    flex-basis: 108px;
    min-height: 46px;
    padding: 7px;
  }

  .hero__text {
    max-width: none;
  }

  .review {
    align-items: flex-start;
  }

  .company-info__phone-wrap {
    flex-wrap: wrap;
  }

  .quick-contact__form textarea {
    min-height: 92px;
  }

  .mobile-nav__inner {
    padding: 14px 14px 18px;
  }

  .banks__item {
    min-height: 84px;
    padding: 12px 9px;
  }

  .banks__logo--swedbank,
  .banks__logo--seb,
  .banks__logo--lhv,
  .banks__logo--revolut,
  .banks__logo--paypal {
    max-height: 32px;
  }
}
