:root {
  --fg-teal: #0d9488;
  --fg-teal-light: #14b8a6;
  --fg-teal-dark: #0f766e;
  --fg-slate: #475569;
  --fg-ink: #0f172a;
  --fg-bg: #f8fafc;
  --fg-radius: 1rem;
  --fg-radius-lg: 1.5rem;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

[id] {
  scroll-margin-top: 5rem;
}

.fg-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.fg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: #0d9488;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.fg-btn-primary:hover {
  background-color: #0f766e;
  color: #ffffff;
}

.fg-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: transparent;
  color: #0d9488;
  border: 2px solid #0d9488;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  font-size: 0.875rem;
}

.fg-btn-outline:hover {
  background-color: rgba(13, 148, 136, 0.08);
  color: #0f766e;
}

.fg-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.fg-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.fg-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(71, 85, 105, 0.12);
}

.fg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

.fg-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0d9488;
  text-decoration: none;
}

.fg-logo:hover {
  color: #0f766e;
}

.fg-logo__img {
  display: block;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  object-fit: contain;
}

.fg-logo__text {
  font-weight: 700;
}

.fg-logo--light {
  color: #ffffff;
}

.fg-logo--light:hover {
  color: rgba(255, 255, 255, 0.9);
}

.fg-logo--light .fg-logo__img {
  opacity: 1;
}

.fg-logo--light:hover .fg-logo__img {
  opacity: 0.9;
}

.fg-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.fg-nav__link {
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.fg-nav__link:hover {
  background: rgba(13, 148, 136, 0.06);
  color: #0f766e;
}

.fg-header-auth {
  position: relative;
}

.fg-user-block {
  position: relative;
}

.fg-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
  border: none;
  border-radius: 1rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0f172a;
  transition: background-color 0.2s;
}

.fg-user-trigger:hover {
  background: rgba(13, 148, 136, 0.08);
}

.fg-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #0d9488;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.fg-user-avatar--img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.fg-user-name {
  max-width: 8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fg-user-chevron {
  flex-shrink: 0;
  color: #475569;
  transition: transform 0.2s;
}

.fg-user-trigger[aria-expanded=true] .fg-user-chevron {
  transform: rotate(180deg);
}

.fg-user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  min-width: 11rem;
  padding: 0.25rem 0;
  background: #ffffff;
  border: 1px solid rgba(71, 85, 105, 0.15);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  z-index: 60;
}

.fg-user-dropdown__item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.9375rem;
  color: #0f172a;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.fg-user-dropdown__item:hover {
  background: rgba(13, 148, 136, 0.06);
  color: #0f766e;
}

.fg-user-dropdown__item--logout {
  border-top: 1px solid rgba(71, 85, 105, 0.1);
}

.fg-main {
  flex: 1;
  padding-top: 4rem;
}

.fg-footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.fg-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .fg-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.fg-footer__brand {
  max-width: 20rem;
}

.fg-footer__tagline {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.fg-footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.fg-footer__links,
.fg-footer__contacts {
  display: flex;
  flex-direction: column;
}

.fg-footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.fg-footer__link:hover {
  color: #ffffff;
}

.fg-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fg-footer__copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.fg-module-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.fg-module-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.fg-module-card--icon-right {
  flex-direction: row-reverse;
}

.fg-module-card--icon-top {
  flex-direction: column;
}

.fg-module-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fg-module-card:hover .fg-module-card__icon {
  background: rgba(13, 148, 136, 0.15);
}

.fg-module-card__img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.fg-module-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fg-module-card__title {
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
}

.fg-module-card__desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.45;
}

.fg-contact-block {
  border-radius: 1.5rem;
  border: 1px solid rgba(71, 85, 105, 0.2);
  background: rgba(248, 250, 252, 0.6);
  padding: 1.5rem;
}

.fg-contact-block__title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.fg-contact-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fg-contact-block__link {
  color: #0d9488;
  font-weight: 500;
  text-decoration: none;
}

.fg-contact-block__link:hover {
  text-decoration: underline;
}

.fg-contact-block__btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.fg-contact-wrap {
  max-width: 24rem;
}

.fg-requisites {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(71, 85, 105, 0.15);
  padding: 1.5rem 2rem;
}

.fg-requisites__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.fg-requisites__name {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.fg-requisites__list {
  display: grid;
  gap: 0.5rem 2rem;
  margin: 0;
  font-size: 0.9375rem;
}

.fg-requisites__list dt {
  color: #475569;
  font-weight: 500;
  grid-column: 1;
}

.fg-requisites__list dd {
  margin: 0;
  color: #0f172a;
  grid-column: 2;
}

@media (min-width: 600px) {
  .fg-requisites__list {
    grid-template-columns: auto 1fr;
  }
}
.fg-requisites-wrap {
  max-width: 36rem;
}

.fg-requisites-wrap--full {
  max-width: none;
}

.fg-content-link {
  color: #0d9488;
  font-weight: 500;
  text-decoration: none;
}

.fg-content-link:hover {
  text-decoration: underline;
}

.fg-page-requisites,
.fg-page-content {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.fg-page-contacts {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.fg-contacts-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .fg-contacts-grid {
    grid-template-columns: 24rem 1fr;
    align-items: start;
  }
}
.fg-contacts-lk {
  margin-top: 2rem;
}

.fg-about-block {
  margin-top: 2rem;
}

.fg-about-block:first-of-type {
  margin-top: 0;
}

.fg-about-block__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.fg-about-block__subtitle {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1rem 0 0.5rem;
}

.fg-content-list {
  margin: 0.75rem 0 1rem;
  padding-left: 1.5rem;
}

.fg-content-list li {
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.fg-page-header {
  margin-bottom: 2rem;
}

.fg-page-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.fg-page-header__subtitle {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.5;
}

.fg-breadcrumb {
  padding: 0.75rem 0 1rem;
  font-size: 0.875rem;
}

.fg-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fg-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fg-breadcrumb__link {
  color: #475569;
  text-decoration: none;
}

.fg-breadcrumb__link:hover {
  color: #0d9488;
  text-decoration: underline;
}

.fg-breadcrumb__sep {
  color: #64748b;
  pointer-events: none;
}

.fg-breadcrumb__current {
  color: #0f172a;
  font-weight: 500;
}

.fg-article {
  max-width: 48rem;
}

.fg-article__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.fg-article__date {
  display: block;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1.25rem;
}

.fg-article__lead {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fg-article__figure {
  margin: 0 0 1.5rem;
}

.fg-article__img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.fg-article__body {
  line-height: 1.6;
  color: #0f172a;
}

.fg-article__body p {
  margin-bottom: 1rem;
}

.fg-article__body p:last-child {
  margin-bottom: 0;
}

.fg-hero {
  padding: 4rem 0 5rem;
}

.fg-hero__inner {
  max-width: 42rem;
}

.fg-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
}

.fg-hero__lead {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #475569;
}

.fg-hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.fg-section {
  padding: 4rem 0;
}

.fg-section--alt {
  background: #ffffff;
}

.fg-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
}

.fg-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fg-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .fg-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fg-cta {
  padding: 4rem 0;
  text-align: center;
}

.fg-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.fg-cta__text {
  color: #475569;
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.fg-list-block {
  min-height: 2rem;
}

.fg-list-block__loading,
.fg-list-block__empty {
  color: #475569;
  font-size: 0.9375rem;
  margin: 0;
}

.fg-list-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fg-list-block__item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

.fg-list-block__item:last-child {
  border-bottom: none;
}

.fg-list-block__link {
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
}

.fg-list-block__link:hover {
  color: #0d9488;
  text-decoration: underline;
}

.fg-list-block__date {
  display: block;
  font-size: 0.8125rem;
  color: #475569;
  margin-top: 0.25rem;
}

.fg-list-block__all {
  margin-top: 1rem;
  margin-bottom: 0;
}

.fg-link {
  font-weight: 500;
  color: #0d9488;
  text-decoration: none;
}

.fg-link:hover {
  text-decoration: underline;
}

.fg-show-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  min-height: 2rem;
}

@media (min-width: 640px) {
  .fg-show-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .fg-show-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fg-show-grid__loading,
.fg-show-grid__empty {
  grid-column: 1/-1;
  color: #475569;
  font-size: 0.9375rem;
  margin: 0;
}

.fg-show-grid__all {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.fg-show-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.1);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.fg-show-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.fg-show-card__img-wrap {
  display: block;
  aspect-ratio: 16/10;
  background: rgba(71, 85, 105, 0.08);
  overflow: hidden;
}

.fg-show-card__img-wrap--placeholder {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(13, 148, 136, 0.04) 100%);
}

.fg-show-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-show-card__body {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fg-show-card__date {
  display: block;
  font-size: 0.8125rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.fg-show-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.fg-show-card__link {
  color: #0f172a;
  text-decoration: none;
}

.fg-show-card__link:hover {
  color: #0d9488;
  text-decoration: underline;
}

.fg-show-card__desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.fg-content {
  max-width: 48rem;
  line-height: 1.7;
  color: #475569;
}

.fg-content p {
  margin-bottom: 1rem;
}

.fg-content a {
  color: #0d9488;
  font-weight: 500;
}

.fg-content a:hover {
  text-decoration: underline;
}

.fg-steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

.fg-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.fg-step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fg-step__title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.fg-step__text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .fg-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .fg-step {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.fg-tariffs {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fg-tariffs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .fg-tariffs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fg-section--white-tariffs .fg-tariffs {
  --fg-tariff-bg: #ffffff;
}

.fg-tariff {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--fg-tariff-bg, #ffffff);
  border-radius: 0.5rem;
  border: 1px solid rgba(71, 85, 105, 0.12);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.fg-tariff:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.fg-tariff--featured {
  border-color: #0d9488;
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.2);
}

.fg-tariff__name {
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.fg-tariff__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d9488;
  margin-bottom: 0.25rem;
}

.fg-tariff__price-note {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
}

.fg-tariff__features {
  flex: 1;
  min-height: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.fg-tariff__features li {
  padding: 0.25rem 0;
}

.fg-tariff__btn {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  justify-content: center;
  flex-shrink: 0;
}

.fg-reviews {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .fg-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fg-review {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(71, 85, 105, 0.1);
}

.fg-review__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.fg-review__star {
  width: 1rem;
  height: 1rem;
  color: #eab308;
  flex-shrink: 0;
}

.fg-review__star--empty {
  color: rgba(71, 85, 105, 0.35);
}

.fg-review__text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.fg-review__author {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9375rem;
}

.fg-review__meta {
  font-size: 0.8125rem;
  color: #64748b;
}

.fg-stats {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 600px) {
  .fg-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fg-stat__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1.2;
}

.fg-stat__label {
  font-size: 0.9375rem;
  color: #475569;
  margin-top: 0.25rem;
}

.fg-faq {
  width: 100%;
  background: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid rgba(71, 85, 105, 0.12);
  overflow: hidden;
}

.fg-faq__item {
  border-bottom: 1px solid rgba(71, 85, 105, 0.12);
}

.fg-faq__item:last-child {
  border-bottom: none;
}

.fg-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.2s;
}

.fg-faq__summary::-webkit-details-marker {
  display: none;
}

.fg-faq__summary:hover {
  background: rgba(13, 148, 136, 0.04);
}

.fg-faq__item[open] .fg-faq__summary {
  background: rgba(13, 148, 136, 0.06);
}

.fg-faq__q {
  flex: 1;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
}

.fg-faq__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #0d9488;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.fg-faq__item[open] .fg-faq__icon {
  transform: rotate(180deg);
}

.fg-faq__content {
  padding: 0 1.25rem 1.25rem;
}

.fg-faq__a {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.fg-calc-placeholder {
  background: #ffffff;
  border: 1px dashed rgba(71, 85, 105, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 1.5rem;
  color: #475569;
  font-size: 0.9375rem;
}

.fg-calc-placeholder__title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.fg-calc-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 1rem;
  font-size: 0.875rem;
  color: #475569;
}
