@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --color-bg: #0e1320;
  --color-bg-alt: #10182a;
  --color-surface: #141b2d;
  --color-primary: #3ec9a7;
  --color-primary-soft: #56d6b7;
  --color-primary-strong: #1fb191;
  --color-text: #e8f1f1;
  --color-text-muted: #a8b3c7;
  --color-border: #24314a;
  --color-shadow-soft: rgba(0, 0, 0, 0.28);
}

body,
button,
input,
textarea {
  font-family: "Quicksand", sans-serif;
}
body {
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover {
  color: var(--color-primary-soft);
  text-decoration: underline;
}

.tranzigo-top-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tranzigo-top-header__brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  text-decoration: none;
}
.tranzigo-top-header__brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.tranzigo-top-header__brand-text {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.tranzigo-top-header__nav-list {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tranzigo-top-header__nav-link {
  color: var(--color-text-muted);
  padding: 8px 10px;
  border-radius: 8px;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}
.tranzigo-top-header__nav-link:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

.tranzigo-top-hero,
.tranzigo-top-onboard__wrapper,
.tranzigo-top-levels,
.tranzigo-top-mechanics,
.tranzigo-top-description,
.tranzigo-top-features,
.tranzigo-top-gallery,
.tranzigo-top-faq,
.tranzigo-top-testimonials,
.tranzigo-top-cta__wrap,
.tranzigo-top-legal__inner,
.tranzigo-top-reach__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px;
}

.tranzigo-top-hero {
  background:
    radial-gradient(
      800px 300px at 20% -10%,
      rgba(62, 201, 167, 0.15),
      transparent 60%
    ),
    radial-gradient(
      700px 260px at 85% -15%,
      rgba(86, 214, 183, 0.12),
      transparent 60%
    );
  text-align: left;
}
.tranzigo-top-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.tranzigo-top-hero__tag {
  background: rgba(62, 201, 167, 0.12);
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid rgba(86, 214, 183, 0.25);
  font-weight: 600;
  font-size: 0.875rem;
}
.tranzigo-top-hero__title {
  font-size: 2.1rem;
  line-height: 1.25;
  margin: 8px 0 14px;
}
.tranzigo-top-hero__lead {
  color: var(--color-text-muted);
  max-width: 820px;
  margin: 0 0 22px;
}
.tranzigo-top-hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tranzigo-top-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.18s ease;
  border: 1px solid transparent;
}
.tranzigo-top-hero__cta--primary {
  background: var(--color-primary);
  color: #0b1416;
}
.tranzigo-top-hero__cta--primary:hover {
  background: var(--color-primary-soft);
  transform: translateY(-1px);
}
.tranzigo-top-hero__cta--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(62, 201, 167, 0.35);
}
.tranzigo-top-hero__cta--secondary:hover {
  background: rgba(62, 201, 167, 0.08);
  border-color: var(--color-primary);
}

.tranzigo-top-onboard__header,
.tranzigo-top-levels__header,
.tranzigo-top-mechanics__header,
.tranzigo-top-features__header,
.tranzigo-top-gallery__header,
.tranzigo-top-faq__header,
.tranzigo-top-testimonials__header,
.tranzigo-top-cta__header {
  font-size: 1.6rem;
  margin: 0 0 14px;
}

.tranzigo-top-onboard__stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.tranzigo-top-onboard__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
}
.tranzigo-top-onboard__step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(62, 201, 167, 0.18);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.tranzigo-top-onboard__step-title {
  font-weight: 700;
}
.tranzigo-top-onboard__step-desc {
  color: var(--color-text-muted);
}

.tranzigo-top-levels__intro {
  color: var(--color-text-muted);
  max-width: 840px;
  margin: 0 0 12px;
}
.tranzigo-top-levels__bullets {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--color-text-muted);
}
.tranzigo-top-levels__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tranzigo-top-levels__tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.tranzigo-top-mechanics__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.tranzigo-top-mechanics__visual {
  width: 100%;
}
.tranzigo-top-mechanics__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 30px var(--color-shadow-soft);
}
.tranzigo-top-mechanics__list {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--color-text-muted);
}

.tranzigo-top-description__text {
  max-width: 860px;
  color: var(--color-text-muted);
  display: grid;
  gap: 12px;
}

.tranzigo-top-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.tranzigo-top-features__feature {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.tranzigo-top-features__feature:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 201, 167, 0.4);
}
.tranzigo-top-features__feature-title {
  font-weight: 700;
}
.tranzigo-top-features__feature-desc {
  color: var(--color-text-muted);
}

.tranzigo-top-gallery__subtitle {
  color: var(--color-text-muted);
  margin: 0 0 10px;
}
.tranzigo-top-gallery__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.tranzigo-top-gallery__figure {
  margin: 0;
}
.tranzigo-top-gallery__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.18s ease;
  box-shadow: 0 10px 24px var(--color-shadow-soft);
}
.tranzigo-top-gallery__img:hover {
  transform: scale(1.02);
}
.tranzigo-top-gallery__caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.tranzigo-top-faq__list {
  display: grid;
  gap: 10px;
}
.tranzigo-top-faq__question {
  width: 100%;
  text-align: left;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}
.tranzigo-top-faq__question:hover {
  border-color: rgba(62, 201, 167, 0.45);
}
.tranzigo-top-faq__answer {
  display: none;
  color: var(--color-text-muted);
  padding: 8px 4px 0 4px;
  max-width: 900px;
}
.tranzigo-top-faq__question[aria-expanded="true"] + .tranzigo-top-faq__answer {
  display: block;
}

.tranzigo-top-testimonials__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.tranzigo-top-testimonials__card {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 26px var(--color-shadow-soft);
}
.tranzigo-top-testimonials__quote {
  margin: 0 0 8px;
}
.tranzigo-top-testimonials__persona {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.tranzigo-top-cta {
  background: linear-gradient(
    180deg,
    rgba(62, 201, 167, 0.12),
    rgba(62, 201, 167, 0)
  );
}
.tranzigo-top-cta__wrap {
  text-align: center;
}
.tranzigo-top-cta__lead {
  color: var(--color-text-muted);
  margin: 6px 0 14px;
}
.tranzigo-top-cta__button {
  display: inline-block;
  background: var(--color-primary);
  color: #0b1416;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  transition:
    background-color 0.18s ease,
    transform 0.18s ease;
}
.tranzigo-top-cta__button:hover {
  background: var(--color-primary-soft);
  transform: translateY(-1px);
}

.tranzigo-top-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  margin-top: 24px;
}
.tranzigo-top-footer__nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.tranzigo-top-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tranzigo-top-footer__nav-link {
  color: var(--color-text-muted);
  transition: color 0.18s ease;
}
.tranzigo-top-footer__nav-link:hover {
  color: var(--color-text);
}
.tranzigo-top-footer__copy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 24px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.tranzigo-top-legal {
  padding-top: 16px;
}
.tranzigo-top-legal__title {
  margin: 0 0 10px;
}
.tranzigo-top-legal__text {
  color: var(--color-text-muted);
  max-width: 900px;
}
.tranzigo-top-legal__list {
  list-style: disc;
  padding-left: 18px;
  color: var(--color-text-muted);
}
.tranzigo-top-legal__section {
  margin-bottom: 18px;
}
.tranzigo-top-legal__subtitle {
  margin: 0 0 6px;
}

.tranzigo-top-reach__intro {
  color: var(--color-text-muted);
  max-width: 860px;
}
.tranzigo-top-reach__block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px;
  margin-top: 14px;
}
.tranzigo-top-reach__rows {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.tranzigo-top-reach__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  align-items: center;
}
.tranzigo-top-reach__label {
  color: var(--color-text-muted);
}
.tranzigo-top-reach__value a {
  word-break: break-word;
}

.cookie-drawer {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 32px));
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 18px 40px var(--color-shadow-soft);
  z-index: 1000;
}
.cookie-drawer__header {
  padding: 14px 14px 0;
}
.cookie-drawer__badge {
  display: inline-block;
  background: rgba(62, 201, 167, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(62, 201, 167, 0.3);
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.cookie-drawer__title {
  margin: 4px 0 6px;
  font-size: 1.25rem;
}
.cookie-drawer__desc {
  color: var(--color-text-muted);
  margin: 0 0 6px;
}
.cookie-drawer__body {
  padding: 10px 14px 14px;
}
.cookie-drawer__categories {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-drawer__category {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px;
}
.cookie-drawer__category--required {
  background: rgba(255, 255, 255, 0.02);
}
.cookie-drawer__cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cookie-drawer__always-active {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.cookie-drawer__switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cookie-drawer__switch-label {
  font-weight: 600;
}
.cookie-drawer__privacy-link a {
  color: var(--color-text-muted);
}
.cookie-drawer__privacy-link a:hover {
  color: var(--color-primary);
}
.cookie-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-drawer__btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.cookie-drawer__btn--accept {
  background: var(--color-primary);
  color: #0b1416;
  border-color: transparent;
}
.cookie-drawer__btn--accept:hover {
  background: var(--color-primary-soft);
}
.cookie-drawer__btn--save {
  border-color: rgba(62, 201, 167, 0.45);
  color: var(--color-primary);
}
.cookie-drawer__btn--save:hover {
  background: rgba(62, 201, 167, 0.08);
}
.cookie-drawer__btn--reject:hover {
  background: rgba(255, 255, 255, 0.04);
}
.cookie-drawer--hidden {
  display: none;
}

@media (max-width: 1199px) {
  .tranzigo-top-hero,
  .tranzigo-top-onboard__wrapper,
  .tranzigo-top-levels,
  .tranzigo-top-mechanics,
  .tranzigo-top-description,
  .tranzigo-top-features,
  .tranzigo-top-gallery,
  .tranzigo-top-faq,
  .tranzigo-top-testimonials,
  .tranzigo-top-cta__wrap,
  .tranzigo-top-legal__inner,
  .tranzigo-top-reach__inner {
    padding: 44px 18px;
  }
  .tranzigo-top-mechanics__split {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .tranzigo-top-header {
    padding: 10px 12px;
  }
  .tranzigo-top-header__nav-list {
    gap: 10px;
    flex-wrap: wrap;
  }
  .tranzigo-top-hero__title {
    font-size: 1.7rem;
  }
  .tranzigo-top-hero__cta-row {
    flex-direction: column;
  }
  .tranzigo-top-hero__cta {
    width: 100%;
  }
  .tranzigo-top-mechanics__split {
    grid-template-columns: 1fr;
  }
  .tranzigo-top-gallery__images {
    grid-template-columns: 1fr 1fr;
  }
  .tranzigo-top-reach__row {
    grid-template-columns: 1fr;
  }
  .cookie-drawer {
    bottom: 12px;
    width: calc(100% - 24px);
  }
}
