@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  --isp-bg: #fbfaf8;
  --isp-white: #ffffff;
  --isp-ivory: #f4f2ee;
  --isp-ink: #0f172a;
  --isp-ink-soft: #334155;
  --isp-mute: #64748b;
  --isp-line: rgba(15, 23, 42, 0.1);
  --isp-accent: #0b5f4a;
  --isp-accent-deep: #07453a;
  --isp-accent-soft: #e6f0ec;
  --isp-dark: #0d1420;
  --isp-dark-2: #141d2d;
  --isp-serif: "Playfair Display", Georgia, serif;
  --isp-sans: "Manrope", "Segoe UI", sans-serif;
  --isp-radius: 18px;
  --isp-shadow: 0 24px 60px -30px rgba(15, 23, 42, 0.25);
  --isp-shadow-sm: 0 10px 30px -18px rgba(15, 23, 42, 0.28);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--isp-sans);
  background: var(--isp-bg);
  color: var(--isp-ink);
}
img {
  max-width: 100%;
  display: block;
}

.font-serif,
.serif {
  font-family: var(--isp-serif);
}

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
.wrap--wide {
  max-width: 1440px;
}
.wrap--narrow {
  max-width: 880px;
}

.sec {
  padding: clamp(3.6rem, 7vw, 6.5rem) 0;
  position: relative;
}
.sec--tight {
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}
.sec--ivory {
  background: var(--isp-ivory);
}
.sec--white {
  background: var(--isp-white);
}
.sec--dark {
  background: var(--isp-dark);
  color: #f4f6f9;
}
.sec--dark .lead,
.sec--dark p {
  color: rgba(244, 246, 249, 0.72);
}
.sec--dark .eyebrow {
  color: #7fd8bf;
}
.sec--line {
  border-top: 1px solid var(--isp-line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--isp-accent);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--bare::before {
  display: none;
}

.h1,
h1.isp,
.display-1 {
  font-family: var(--isp-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h2,
.display-2 {
  font-family: var(--isp-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.h3,
.display-3 {
  font-family: var(--isp-serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.2;
}
.h4 {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  color: var(--isp-ink-soft);
}
.txt {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--isp-ink-soft);
}
.mute {
  color: var(--isp-mute);
}
.small {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.accent {
  color: var(--isp-accent);
}
.serif-i {
  font-family: var(--isp-serif);
  font-style: italic;
}

.sec-head {
  max-width: 780px;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head--center .eyebrow {
  justify-content: center;
}
.sec-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.sec-head--split > * {
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--isp-accent);
  color: #fff;
  box-shadow: 0 14px 30px -16px rgba(11, 95, 74, 0.65);
}
.btn--primary:hover {
  background: var(--isp-accent-deep);
}
.btn--dark {
  background: var(--isp-ink);
  color: #fff;
}
.btn--dark:hover {
  background: #000;
}
.btn--outline {
  border-color: var(--isp-ink);
  color: var(--isp-ink);
  background: transparent;
}
.btn--outline:hover {
  background: var(--isp-ink);
  color: #fff;
}
.btn--ghost {
  border-color: var(--isp-line);
  color: var(--isp-ink);
  background: var(--isp-white);
}
.btn--ghost:hover {
  border-color: var(--isp-ink);
}
.btn--light {
  background: #fff;
  color: var(--isp-ink);
}
.btn--light:hover {
  background: var(--isp-accent-soft);
}
.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--isp-ink);
}
.btn i {
  font-size: 0.85em;
}
.btn--lg {
  padding: 1.15rem 2.4rem;
  font-size: 0.88rem;
}
.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--isp-accent);
  text-decoration: none;
}
.link-arrow i {
  transition: transform 0.25s ease;
}
.link-arrow:hover i {
  transform: translateX(5px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--isp-line);
  border-radius: 999px;
  background: var(--isp-white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--isp-ink-soft);
}
.chip i {
  color: var(--isp-accent);
  font-size: 0.7rem;
}
.chip--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.badge-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  70% {
    box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.card {
  background: var(--isp-white);
  border: 1px solid var(--isp-line);
  border-radius: var(--isp-radius);
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  box-shadow: var(--isp-shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--isp-shadow);
  border-color: rgba(11, 95, 74, 0.35);
}
.card--flat {
  box-shadow: none;
}
.card--dark {
  background: var(--isp-dark-2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f4f6f9;
  box-shadow: none;
}
.card--dark:hover {
  border-color: rgba(127, 216, 191, 0.4);
}
.card--accent {
  background: var(--isp-accent-soft);
  border-color: rgba(11, 95, 74, 0.18);
  box-shadow: none;
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--isp-accent-soft);
  color: var(--isp-accent);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.card--dark .card__icon {
  background: rgba(127, 216, 191, 0.12);
  color: #7fd8bf;
}

.media {
  position: relative;
  border-radius: var(--isp-radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--isp-dark-2);
}
.media--tall {
  min-height: 420px;
}
.media--mid {
  min-height: 320px;
}
.media--short {
  min-height: 240px;
}
.media--card {
  min-height: 200px;
  border-radius: var(--isp-r, 14px);
}
.media--full {
  min-height: 72vh;
}
.media__tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(13, 20, 32, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.media__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem;
  color: #fff;
}

.img-round {
  border-radius: var(--isp-radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.img-frame {
  border: 1px solid var(--isp-line);
  border-radius: var(--isp-radius);
  padding: 0.6rem;
  background: var(--isp-white);
}
.img-frame img {
  border-radius: calc(var(--isp-radius) - 6px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: center;
}
.split--rev {
  grid-template-columns: 0.95fr 1.05fr;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.list-check li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--isp-ink-soft);
}
.list-check li i {
  color: var(--isp-accent);
  margin-top: 0.28rem;
  font-size: 0.8rem;
}
.sec--dark .list-check li {
  color: rgba(244, 246, 249, 0.8);
}
.sec--dark .list-check li i {
  color: #7fd8bf;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat__num {
  font-family: var(--isp-serif);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--isp-ink);
}
.stat__num span {
  color: var(--isp-accent);
}
.sec--dark .stat__num {
  color: #fff;
}
.stat__lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--isp-mute);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.marquee {
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--isp-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  white-space: nowrap;
  color: var(--isp-ink-soft);
}
.marquee__item i {
  color: var(--isp-accent);
  font-size: 0.6em;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--isp-line);
}
.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid var(--isp-accent);
  background: var(--isp-white);
}
.timeline__year {
  font-family: var(--isp-serif);
  font-size: 1.5rem;
  color: var(--isp-accent);
}
.timeline--h {
  display: flex;
  gap: 0;
  padding-left: 0;
  overflow-x: auto;
}
.timeline--h::before {
  display: none;
}
.timeline--h .timeline__item {
  min-width: 220px;
  padding: 1.8rem 1.4rem 0 0;
}
.timeline--h .timeline__item::before {
  left: 0;
  top: 0;
}
.timeline--h .timeline__item::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 0;
  top: 7px;
  height: 1px;
  background: var(--isp-line);
}

.faq details,
details.faq-i {
  border: 1px solid var(--isp-line);
  border-radius: 14px;
  background: var(--isp-white);
  padding: 0;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.faq details + details {
  margin-top: 0.8rem;
}
.faq details[open] {
  border-color: rgba(11, 95, 74, 0.4);
  box-shadow: var(--isp-shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--isp-ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--isp-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(180deg);
}
.faq details > div,
.faq .faq-a {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--isp-ink-soft);
}
.sec--dark .faq details {
  background: var(--isp-dark-2);
  border-color: rgba(255, 255, 255, 0.12);
}
.sec--dark .faq summary {
  color: #fff;
}
.sec--dark .faq details > div {
  color: rgba(244, 246, 249, 0.7);
}

.form {
  display: grid;
  gap: 1.1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field {
  display: grid;
  gap: 0.45rem;
}
.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--isp-ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--isp-line);
  background: var(--isp-white);
  font: inherit;
  font-size: 0.95rem;
  color: var(--isp-ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--isp-accent);
  box-shadow: 0 0 0 4px rgba(11, 95, 74, 0.12);
}
.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.field__err {
  display: none;
  font-size: 0.76rem;
  color: #dc2626;
  font-weight: 600;
}
.field.is-error .field__err {
  display: block;
}
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--isp-ink-soft);
}
.consent input {
  margin-top: 0.25rem;
  accent-color: var(--isp-accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.consent a {
  color: var(--isp-accent);
  font-weight: 600;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.toast-wrap {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 100000;
  display: grid;
  gap: 0.7rem;
  max-width: min(92vw, 380px);
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--isp-ink);
  color: #fff;
  box-shadow: 0 18px 45px -18px rgba(0, 0, 0, 0.5);
  font-size: 0.88rem;
  line-height: 1.55;
  animation: toast-in 0.35s ease;
}
.toast i {
  margin-top: 0.15rem;
  color: #7fd8bf;
}
.toast--err i {
  color: #fca5a5;
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.toast.is-out {
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: -3px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none !important;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--isp-radius);
}
.slider--hero {
  border-radius: 0;
  min-height: 88vh;
  display: flex;
}
.slider__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  height: 100%;
  width: 100%;
}
.slide {
  min-width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.slide__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.4rem, 6vw, 5rem);
}
.slider__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(13, 20, 32, 0.35);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.slider__nav:hover {
  background: #fff;
  color: var(--isp-ink);
}
.slider__nav--prev {
  left: 1.4rem;
}
.slider__nav--next {
  right: 1.4rem;
}
.slider__dots {
  position: absolute;
  z-index: 5;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}
.slider__dot {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}
.slider__dot.is-active {
  background: #fff;
}
.slider__count {
  position: absolute;
  z-index: 5;
  right: 1.6rem;
  bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 700;
}

.hero-side {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 1.1rem;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.hero-widget .chip {
  background: rgba(13, 20, 32, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(6px);
}

.tabs {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid var(--isp-line);
  border-radius: 999px;
  background: var(--isp-white);
  flex-wrap: wrap;
}
.tab {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--isp-mute);
  transition: all 0.25s ease;
}
.tab.is-active {
  background: var(--isp-ink);
  color: #fff;
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fade-in 0.45s ease;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--isp-line);
  border-radius: var(--isp-radius);
  background: var(--isp-white);
  box-shadow: var(--isp-shadow-sm);
}
.table-price {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.table-price th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--isp-mute);
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--isp-line);
  background: var(--isp-ivory);
}
.table-price td {
  padding: 1.05rem 1.3rem;
  border-bottom: 1px solid var(--isp-line);
  font-size: 0.93rem;
  vertical-align: top;
}
.table-price tr:last-child td {
  border-bottom: none;
}
.table-price tbody tr {
  transition: background 0.2s ease;
}
.table-price tbody tr:hover {
  background: var(--isp-accent-soft);
}
.table-price .price {
  font-family: var(--isp-serif);
  font-size: 1.2rem;
  color: var(--isp-accent);
  white-space: nowrap;
}

.cookie {
  position: fixed;
  z-index: 99999;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  max-width: 620px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--isp-line);
  border-radius: 20px;
  box-shadow: 0 30px 70px -25px rgba(15, 23, 42, 0.4);
  padding: 1.3rem 1.5rem;
  display: none;
  gap: 1.2rem;
  align-items: center;
}
.cookie.is-visible {
  display: flex;
  animation: cookie-in 0.5s ease;
}
@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cookie__txt {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--isp-ink-soft);
  margin: 0;
}
.cookie__txt strong {
  display: block;
  color: var(--isp-ink);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.topbar {
  background: var(--isp-ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.topbar__group {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.topbar a:hover {
  color: #fff;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar__item i {
  color: #7fd8bf;
  font-size: 0.7rem;
}
.topbar__social {
  display: flex;
  gap: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: rgba(251, 250, 248, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--isp-line);
  box-shadow: 0 12px 30px -22px rgba(15, 23, 42, 0.35);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--isp-ink);
}
.brand img {
  height: 44px;
  width: auto;
}
.brand__name {
  font-family: var(--isp-serif);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.1;
}
.brand__name small {
  display: block;
  font-family: var(--isp-sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--isp-accent);
}
.brand--light {
  color: #fff;
}
.brand--light .brand__name {
  color: #fff;
}
.brand--light .brand__name small {
  color: #7fd8bf;
}
.brand--light img {
  height: 38px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-main a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--isp-ink-soft);
  text-decoration: none;
  padding: 0.4rem 0;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--isp-accent);
  transition: width 0.25s ease;
}
.nav-main a:hover {
  color: var(--isp-ink);
}
.nav-main a:hover::after {
  width: 100%;
}
.nav-main a.nav-hl {
  color: var(--isp-accent);
}
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--isp-line);
  background: var(--isp-white);
  color: var(--isp-ink);
  font-size: 1.05rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99995;
  background: var(--isp-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: none;
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.mobile-menu__close {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.mobile-menu nav {
  display: grid;
  gap: 0.4rem;
}
.mobile-menu nav a {
  font-family: var(--isp-serif);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu nav a i {
  font-size: 0.85rem;
  color: #7fd8bf;
}
.mobile-menu nav a:hover {
  color: #7fd8bf;
}
.mobile-menu__contacts {
  margin-top: auto;
  padding-top: 2.2rem;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.mobile-menu__contacts i {
  color: #7fd8bf;
  width: 1.2rem;
}
.mobile-menu__social {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.2rem;
}
.mobile-menu__social a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
}
.mobile-menu__social a:hover {
  color: #7fd8bf;
}

.site-footer {
  background: var(--isp-dark);
  color: rgba(244, 246, 249, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.1rem;
}
.footer-blurb {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(244, 246, 249, 0.7);
  letter-spacing: 0.02em;
}
.footer-title--mt {
  margin-top: 1.6rem;
}
.footer-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.footer-links a {
  color: rgba(244, 246, 249, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.footer-links a:hover {
  color: #7fd8bf;
  padding-left: 4px;
}
.footer-contact {
  display: grid;
  gap: 0.8rem;
  font-size: 0.88rem;
}
.footer-contact i {
  color: #7fd8bf;
  width: 1.1rem;
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.3rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: var(--isp-accent);
  border-color: var(--isp-accent);
  color: #fff;
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.76rem;
  color: rgba(244, 246, 249, 0.5);
}
.footer-reg {
  font-size: 0.76rem;
  color: rgba(244, 246, 249, 0.45);
  line-height: 1.7;
  margin-top: 1.4rem;
}

.totop {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 9998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--isp-ink);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s ease;
  box-shadow: var(--isp-shadow);
}
.totop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.totop:hover {
  background: var(--isp-accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.6rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--isp-serif);
  font-size: 2rem;
  color: var(--isp-accent);
  opacity: 0.85;
}
.step::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 3rem;
  right: 0;
  height: 1px;
  background: var(--isp-line);
}
.step:last-child::after {
  display: none;
}

.hscroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.hscroll > * {
  scroll-snap-align: start;
  flex: 0 0 min(78vw, 340px);
}

.quote-block {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-left: 3px solid var(--isp-accent);
  background: var(--isp-white);
  border-radius: 0 var(--isp-radius) var(--isp-radius) 0;
  box-shadow: var(--isp-shadow-sm);
}
.quote-block p {
  font-family: var(--isp-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  color: var(--isp-ink);
  margin: 0 0 1rem;
}
.quote-block footer {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--isp-mute);
}

.badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: var(--isp-accent-soft);
  color: var(--isp-accent);
  font-family: var(--isp-serif);
  font-size: 1.1rem;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--isp-shadow-sm);
}

.kv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  font-size: 0.88rem;
}
.kv dt {
  color: var(--isp-mute);
  font-weight: 600;
}
.kv dd {
  margin: 0;
  color: var(--isp-ink);
  font-weight: 600;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--isp-radius);
  filter: grayscale(0.4) contrast(1.02);
}

.divider {
  height: 1px;
  background: var(--isp-line);
  border: none;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.thankyou-check {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--isp-accent-soft);
  color: var(--isp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
}

@media (max-width: 1080px) {
  .nav-main {
    display: none;
  }
  .burger {
    display: flex;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step::after {
    display: none;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .split--rev {
    grid-template-columns: 1fr;
  }
  .sec-head--split {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-side {
    display: none;
  }
  .slider--hero {
    min-height: 78vh;
  }
}
@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .topbar .topbar__item--hide-sm {
    display: none;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .cookie {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__actions {
    justify-content: flex-end;
  }
  .slider__nav {
    width: 42px;
    height: 42px;
  }
  .slider__nav--prev {
    left: 0.7rem;
  }
  .slider__nav--next {
    right: 0.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
