* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #06070e;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(73, 120, 255, 0.22), transparent 29%),
    radial-gradient(circle at 88% 18%, rgba(255, 75, 193, 0.17), transparent 30%),
    radial-gradient(circle at 50% 95%, rgba(141, 92, 255, 0.22), transparent 38%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
  z-index: -1;
}

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

.nav {
  height: 76px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  background: rgba(6, 7, 14, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 7, 14, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.nav-mobile-login-bar {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo img,
.logo .brand-logo {
  height: 65px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav nav {
  display: flex;
  gap: 30px;
  color: #c7cada;
  font-size: 14px;
}

.nav nav a:hover {
  color: #ffffff;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-locale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-buttons,
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.light {
  background: #ffffff;
  color: #06070e;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.045);
}

.btn.primary {
  background: linear-gradient(135deg, #4978ff, #8d5cff, #ff4bc1);
  box-shadow: 0 20px 60px rgba(141, 92, 255, 0.34);
}

.btn.full {
  width: 100%;
  margin-top: 28px;
}

.btn--nav-start {
  display: inline-flex;
}

.btn--hero-start {
  display: none;
}

@media (max-width: 1000px) {
  .btn--nav-start {
    display: none;
  }

  .btn--hero-start {
    display: inline-flex;
  }
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 12px 20px;
  border-radius: 999px;
  color: #eef0ff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
  box-shadow: 0 12px 45px rgba(141, 92, 255, 0.12);
}

.label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4978ff, #ff4bc1);
}

.label.small {
  margin-bottom: 24px;
}

.hero {
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 150px 48px 90px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero h1,
.intro h2,
.screens h2,
.voices h2,
.cta h2,
.page-hero h1 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(58px, 7.4vw, 105px);
  line-height: 1.02;
}

.intro h2,
.screens h2,
.voices h2,
.cta h2 {
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1.05;
}

.hero h1 span,
.intro h2 span,
.screens h2 span,
.voices h2 span,
.cta h2 span,
.page-hero h1 span {
  display: block;
  background: linear-gradient(135deg, #4978ff, #806cff, #b85cff);
  background-clip: text;
  color: transparent;
}

.hero p,
.intro p,
.screens p,
.page-hero p {
  color: #c7cada;
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-top: 30px;
}

.hero-actions {
  margin-top: 38px;
}

.hero-preview {
  border-radius: 38px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.48);
  transform: rotate(1.5deg);
}

.hero-preview img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: 28px;
  background: #ffffff;
}

.intro,
.voices,
.cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 115px 48px;
}

.intro p {
  max-width: 820px;
}

.features {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 48px 115px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 22px;
}

.feature-card,
.quote,
.price-card,
.faq-item,
.screen-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 31px;
  padding: 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 55px rgba(0, 0, 0, 0.18);
}

.feature-card {
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 92, 255, 0.55);
}

.icon {
  font-size: 34px;
  margin-bottom: 22px;
}

.feature-card h3,
.quote h3,
.price-card h3,
.screen-card h3,
.info-box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 14px;
}

.feature-card p,
.quote p,
.price-card p,
.screen-card p,
.faq-item p,
.price-card li {
  color: #c7cada;
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.screens {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
}

.screens .label {
  margin-left: auto;
  margin-right: auto;
}

.screens p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.preview-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 28px;
}

.preview-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 92, 255, 0.45);
}

.preview-card img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.screens-disclaimer {
  max-width: 780px;
  margin: 40px auto 0;
  color: #9297aa;
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
}

.screen-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 26px;
  align-items: center;
}

.screen-card {
  text-align: left;
}

.screen-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 23px;
  background: #11131d;
  margin-bottom: 24px;
}

.tilt-left {
  transform: rotate(-2deg);
}

.tilt-right {
  transform: rotate(2deg);
}

.main-screen {
  transform: translateY(-28px);
  border-color: rgba(141, 92, 255, 0.48);
}

.quote-grid,
.price-grid {
  display: grid;
  gap: 22px;
  margin-top: 56px;
}

.quote-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.price-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.price-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.price-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.quote p::before {
  content: "“";
  display: block;
  color: #b98cff;
  font-size: 52px;
  font-weight: 950;
  line-height: 0.8;
  margin-bottom: 14px;
}

.quote small {
  display: block;
  margin-top: 24px;
  color: #9297aa;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cta {
  text-align: center;
}

.cta .label {
  margin-left: auto;
  margin-right: auto;
}

.cta h2 {
  margin-bottom: 36px;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 155px 48px 40px;
}

.page-hero p {
  max-width: 720px;
}

.pricing {
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 48px 115px;
}

.price-card__amount {
  margin-top: 30px;
}

.price-card strong {
  display: inline;
  font-size: 34px;
}

.price-card__period {
  display: block;
  margin-top: 6px;
  color: #9297aa;
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing--home {
  text-align: center;
  padding-top: 80px;
}

.pricing--home h2 {
  margin-bottom: 18px;
}

.pricing--home > p {
  max-width: 640px;
  margin: 0 auto 8px;
  color: #c7cada;
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
  color: #9297aa;
  font-size: 0.95rem;
}

.pricing-home-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.price-card ul {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.price-card li::before {
  content: "✓";
  color: #9d70ff;
  font-weight: 900;
  margin-right: 10px;
}

.price-card.highlight {
  border-color: rgba(141, 92, 255, 0.76);
  box-shadow:
    0 0 75px rgba(141, 92, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.faq {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 48px 115px;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  cursor: pointer;
  padding-right: 34px;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #9d70ff;
}

.faq-item.active button::after {
  content: "×";
}

.faq-item p {
  display: none;
  padding-top: 18px;
}

.faq-item p a {
  color: #b98cff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item p a:hover {
  color: #ffffff;
}

.faq-item.active p {
  display: block;
}

.feature-card,
.quote,
.price-card,
.screen-card,
.preview-card {
  opacity: 1;
}

.js-animate .feature-card,
.js-animate .quote,
.js-animate .price-card,
.js-animate .screen-card,
.js-animate .preview-card {
  opacity: 0;
}

.visible {
  animation: fadeUp 0.6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-animate .feature-card,
  .js-animate .quote,
  .js-animate .price-card,
  .js-animate .screen-card,
  .js-animate .preview-card {
    opacity: 1;
  }

  .visible {
    animation: none;
  }

  .feature-card:hover {
    transform: none;
  }
}

footer {
  padding: 38px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  color: #aeb2c6;
}

footer div:last-child,
footer nav {
  display: flex;
  gap: 24px;
}

footer a:hover {
  color: #ffffff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .main-screen {
    transform: none;
  }
}

@media (max-width: 1000px) {
  .landing-header {
    border-bottom: none;
  }

  .nav {
    container-type: inline-size;
    container-name: landing-nav;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: clamp(6px, 2vw, 12px);
    padding: 0 clamp(12px, 4vw, 22px);
    flex-wrap: nowrap;
    height: auto;
    min-height: 76px;
    row-gap: 0;
    border-bottom: none;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .logo img,
  .logo .brand-logo {
    height: clamp(38px, 11vw, 56px);
    max-width: 100%;
  }

  .nav-end {
    grid-column: 2;
    grid-row: 1;
    order: unset;
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
  }

  .nav-locale {
    gap: clamp(4px, 1.5vw, 6px);
  }

  .nav-buttons {
    display: none;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    order: unset;
    margin-left: 0;
    flex-shrink: 0;
  }

  .nav nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    order: unset;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 16px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    margin-top: 12px;
  }

  .nav nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
  }

  .nav.nav-open nav {
    display: flex;
  }

  .nav-mobile-login-bar {
    display: flex;
    justify-content: center;
    padding: 0 22px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  .nav-mobile-login-bar .btn {
    width: 100%;
    max-width: 420px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 148px 24px 70px;
  }

  .hero-preview {
    transform: none;
  }

  .hero-preview img {
    max-height: none;
  }

  .intro,
  .voices,
  .cta,
  .screens,
  .pricing,
  .faq,
  .page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1,
  .intro h2,
  .screens h2,
  .voices h2,
  .cta h2,
  .page-hero h1 {
    letter-spacing: -0.025em;
  }

  .tilt-left,
  .tilt-right,
  .main-screen {
    transform: none;
  }

  footer {
    flex-direction: column;
    gap: 20px;
  }

  footer div:last-child,
  footer nav {
    flex-wrap: wrap;
  }
}

.legal-page,
.contact-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 48px 115px;
}

.legal-card,
.contact-card,
.info-box {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 31px;
  padding: 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 55px rgba(0, 0, 0, 0.18);
}

.legal-card h2,
.contact-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 2.25rem 0 0.75rem;
  color: #ffffff;
}

.legal-card h2:first-child,
.contact-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 1.35rem 0 0.55rem;
  color: #e8eaf2;
}

.legal-card p,
.contact-card p,
.info-box p {
  color: #c7cada;
  line-height: 1.8;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 72ch;
}

.legal-card p + p,
.contact-card p + p {
  margin-top: 0.75rem;
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
}

.contact-card {
  width: 100%;
  max-width: 720px;
}

.contact-dialog {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 31px;
  padding: 0;
  margin: auto;
  width: min(100%, 520px);
  max-width: calc(100vw - 32px);
  background-color: #11131d;
  background-image: linear-gradient(145deg, #161925 0%, #0f1119 100%);
  color: #ffffff;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-dialog::backdrop {
  background: rgba(6, 7, 14, 0.88);
}

.contact-dialog__inner {
  padding: 34px;
  background: #11131d;
  border-radius: 31px;
}

.contact-dialog__title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #ffffff;
}

.contact-dialog__message {
  margin: 0;
  color: #e4e7f0;
  line-height: 1.8;
  font-size: 1.0625rem;
}

.contact-dialog__actions {
  margin-top: 1.5rem;
}

.contact-dialog__actions .btn {
  min-height: 44px;
}

.form-group {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-group label {
  color: #ffffff;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: 18px;
  padding: 15px 16px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #858b9f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(141, 92, 255, 0.75);
}

.form__group--recaptcha {
  margin-bottom: 18px;
}

.form__hint {
  color: #858b9f;
  font-size: 0.875rem;
  margin-top: 8px;
}

.recaptcha-error {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(239, 83, 80, 0.14);
  border: 1px solid rgba(239, 83, 80, 0.45);
  color: #ffcdd2;
  margin-top: 10px;
}

.recaptcha-error[hidden] {
  display: none;
}


@media (max-width: 1000px) {
  .legal-page,
  .contact-page {
    padding-left: 24px;
    padding-right: 24px;
  }
}

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

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3rem);
  }

  .intro h2,
  .screens h2,
  .voices h2,
  .cta h2 {
    font-size: clamp(2rem, 8vw, 2.625rem);
  }

  .hero p,
  .intro p,
  .screens p,
  .page-hero p,
  .cta p {
    font-size: 18px;
  }
}

@media (min-width: 1001px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav nav {
    grid-column: 2;
    justify-self: center;
  }

  .nav-end {
    grid-column: 3;
    justify-self: end;
  }

  .nav-mobile-login-bar {
    display: none;
  }
}

@container landing-nav (max-width: 380px) {
  .logo img,
  .logo .brand-logo {
    height: 36px;
  }

  .nav-locale .locale-switcher__link {
    min-width: 42px;
    padding: 0 7px;
    font-size: 11px;
  }
}

@container landing-nav (max-width: 320px) {
  .logo img,
  .logo .brand-logo {
    height: 32px;
  }
}

.logo .brand-logo {
  aspect-ratio: auto;
  object-fit: contain;
}

.locale-switcher__link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #c7cada;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.locale-switcher__link--active {
  color: #ffffff;
  border-color: rgba(141, 92, 255, 0.55);
  background: rgba(141, 92, 255, 0.16);
}

.cta p {
  color: #c7cada;
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 28px;
}

.landing-alerts {
  margin-bottom: 18px;
}

.landing-alerts .alert {
  padding: 14px 16px;
  border-radius: 18px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.landing-alerts .alert--error {
  background: rgba(239, 83, 80, 0.14);
  border: 1px solid rgba(239, 83, 80, 0.45);
  color: #ffcdd2;
}

.landing-alerts .alert--success {
  background: rgba(67, 160, 71, 0.14);
  border: 1px solid rgba(67, 160, 71, 0.45);
  color: #c8e6c9;
}

.legal-card a,
.contact-card a,
.faq-item p a {
  color: #b98cff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card a:hover,
.contact-card a:hover,
.faq-item p a:hover {
  color: #ffffff;
}