@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@100..900&display=swap");
html {
  font-size: 16px;
}
@media (max-width: 560px) {
  html {
    font-size: 14px;
  }
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
body.sub-body {
  background-color: transparent;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
}

a {
  color: #38bdf8;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #0ea5e9;
}

.lamp-page {
  background-color: #F5EFE1 !important;
  color: #2F353B;
  min-height: 100vh;
  padding: 2rem 1rem;
  margin: 0;
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.lamp-page * {
  font-family: inherit;
}
.lamp-page__container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: cardAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.lamp-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.lamp-header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #2F353B;
}
.lamp-header__brand:hover {
  color: #2F353B;
  text-decoration: none;
}
.lamp-header__logo {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  flex-shrink: 0;
  background-color: #2F353B;
  padding: 0.125rem;
}
.lamp-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lamp-header__title h1 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: #2F353B;
  line-height: 1;
}
.lamp-header__title span {
  font-size: 10px;
  font-weight: 700;
  color: #6B8E8E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}
.lamp-header__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(47, 53, 59, 0.05);
}
.lamp-header__status span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lamp-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(47, 53, 59, 0.05);
  border-radius: 1.875rem;
  width: fit-content;
  text-decoration: none;
}
@media (max-width: 560px) {
  .lamp-nav.header__nav {
    display: none;
  }
}
.lamp-nav.center {
  margin: 1rem auto;
}
.lamp-nav.center .lamp-nav__item {
  padding: 0.5rem 1.5rem;
}
.lamp-nav__item {
  padding: 0.25rem 1rem;
  border-radius: 1.25rem;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(47, 53, 59, 0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.lamp-nav__item:hover {
  color: #2F353B;
  text-decoration: none;
}
.lamp-nav__item--active {
  background-color: #2F353B;
  color: #FEFAE0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.lamp-nav__item--active:hover {
  color: #FEFAE0;
}

.lamp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
  text-align: center;
}
.lamp-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lamp-footer__legal a {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(47, 53, 59, 0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.lamp-footer__legal a:hover {
  color: #D4A373;
}
.lamp-footer__legal .separator {
  color: rgba(47, 53, 59, 0.1);
  font-size: 0.75rem;
}
.lamp-footer__copyright {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(47, 53, 59, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  height: 3rem;
  padding: 0 2rem;
}
.btn--primary {
  background-color: #2F353B;
  color: #FEFAE0;
  box-shadow: 0 10px 20px -5px rgba(47, 53, 59, 0.3);
}
.btn--primary:hover {
  background-color: #D4A373;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(212, 163, 115, 0.4);
}
.btn--secondary {
  background-color: #F5EFE1;
  color: #2F353B;
  border: 1px solid rgba(47, 53, 59, 0.05);
}
.btn--secondary:hover {
  background-color: #2F353B;
  color: #FEFAE0;
  transform: translateY(-2px);
}
.btn--mobile-full {
  width: 100%;
}
@media (min-width: 640px) {
  .btn--mobile-full {
    width: auto;
    min-width: 10rem;
  }
}
.btn--mobile-icon {
  flex: 1;
}
@media (min-width: 640px) {
  .btn--mobile-icon {
    flex: none;
    min-width: 4rem;
  }
}
.btn--mobile-action {
  flex: 2;
}
@media (min-width: 640px) {
  .btn--mobile-action {
    flex: none;
    min-width: 10rem;
  }
}
.btn--sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 10px;
  border-radius: 0.75rem;
  gap: 0.375rem;
}
@media (max-width: 480px) {
  .btn--sm .btn__text {
    display: none;
  }
}
.btn--no-shadow {
  box-shadow: none !important;
  transform: none !important;
}
.btn--no-shadow:hover {
  box-shadow: none !important;
  transform: none !important;
}

.badge {
  font-size: 9px;
  padding: 0.125rem 0.625rem;
  background-color: #D4A373;
  color: #FEFAE0;
  font-weight: 800;
  border-radius: 9999px;
  text-transform: uppercase;
}

.dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background-color: #6B8E8E;
}
.dot--pulse {
  animation: lamp-pulse 2s infinite;
}
.dot--expired {
  background-color: #ef4444;
}

@keyframes lamp-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.lamp-notice {
  background: white;
  padding: 1.5rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(47, 53, 59, 0.05);
  box-shadow: 0 10px 40px -15px rgba(47, 53, 59, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lamp-notice__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #F5EFE1;
  color: #D4A373;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.lamp-notice__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.lamp-notice__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2F353B;
  margin: 0;
}
.lamp-notice__text {
  font-size: 1.0625rem;
  color: rgba(47, 53, 59, 0.6);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}
.lamp-notice__action {
  margin-top: 0.5rem;
  width: 100%;
}
.lamp-notice__action .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .lamp-notice__action .btn {
    width: auto;
  }
}

.home-page__hero {
  padding: 4rem 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.home-page__hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #2F353B;
  font-weight: 800;
}
.home-page__hero p {
  font-size: 1.25rem;
  color: rgba(47, 53, 59, 0.7);
  margin-bottom: 3rem;
  line-height: 1.6;
}
.home-page__hero .cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lamp-apps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.app-card {
  background: white;
  border-radius: 2rem;
  padding: 1.5rem;
  position: relative;
  border: 1px solid rgba(47, 53, 59, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -5px rgba(47, 53, 59, 0.05);
}
.app-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(47, 53, 59, 0.1);
  border-color: rgba(212, 163, 115, 0.2);
}
.app-card--featured {
  background: linear-gradient(135deg, white 0%, #fffcf5 100%);
  border: 1px solid rgba(212, 163, 115, 0.3);
}
.app-card--featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2rem;
  border: 1.5px solid #D4A373;
  pointer-events: none;
}
.app-card__badge {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: #D4A373;
  color: white;
  padding: 0.2rem 0.875rem;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(212, 163, 115, 0.2);
  z-index: 10;
}
.app-card__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .app-card__main {
    grid-template-columns: 1fr 280px;
  }
}
.app-card__info {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.app-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background: #F5EFE1;
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F353B;
  background-color: #2F353B;
}
.app-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.app-card__details h3 {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  color: #2F353B;
}
.app-card__details p {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(47, 53, 59, 0.5);
  font-weight: 600;
}
.app-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.app-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #2F353B;
  border-radius: 1.25rem;
  text-decoration: none;
  color: white;
  border: 1.5px solid #2F353B;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.download-link:hover {
  background: #1a1e22;
  border-color: #1a1e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.download-link:hover svg {
  transform: translateY(2px);
}
.download-link__content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.download-link__label {
  font-weight: 800;
  font-size: 1rem;
  color: white;
}
.download-link__sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.download-link svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.btn--full {
  width: 100%;
}

.app-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(47, 53, 59, 0.05);
  border-radius: 2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s;
}
@media (min-width: 640px) {
  .app-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.app-item:hover {
  background-color: white;
  border-color: rgba(212, 163, 115, 0.3);
  transform: translateY(-2px);
}
.app-item__info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.app-item__icon {
  width: 4rem;
  height: 4rem;
  background-color: #F5EFE1;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2F353B;
  padding: 0.75rem;
}
.app-item__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: currentColor;
}
.app-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.app-item__details .name-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.app-item__details .name-row h3 {
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
.app-item__details .desc {
  font-size: 0.75rem;
  color: rgba(47, 53, 59, 0.5);
  font-weight: 600;
  margin: 0;
}
.app-item__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) {
  .app-item__actions {
    width: auto;
  }
}

.lamp-card {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(47, 53, 59, 0.05);
  border-radius: 2.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(47, 53, 59, 0.1);
  position: relative;
  overflow: hidden;
}
.lamp-card__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lamp-card__header {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .lamp-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lamp-card__title-group .label {
  font-size: 10px;
  font-weight: 800;
  color: #6B8E8E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}
.lamp-card__title-group h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0;
  color: #2F353B;
}
.lamp-card__stats-group {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.lamp-card__stats-group .stat__label {
  font-size: 10px;
  font-weight: 800;
  color: rgba(47, 53, 59, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}
.lamp-card__stats-group .stat__value {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.lamp-card__stats-group .stat__value--mono {
  font-family: monospace;
}
.lamp-card__stats-group .stat__value--muted {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(47, 53, 59, 0.3);
}
.lamp-card__progress .track {
  height: 0.75rem;
  width: 100%;
  background-color: rgba(47, 53, 59, 0.05);
  border-radius: 9999px;
  padding: 0.125rem;
  overflow: hidden;
}
.lamp-card__progress .bar {
  height: 100%;
  background-color: #D4A373;
  border-radius: 9999px;
  transition: width 1s ease-in-out;
}
.lamp-card__progress .bar--expired {
  background-color: rgba(47, 53, 59, 0.2);
  width: 100% !important;
}
.lamp-card__progress .bar--unlimited {
  background-color: rgba(107, 142, 142, 0.2);
  width: 100% !important;
}
.lamp-card__progress .info {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 10px;
  font-weight: 800;
  color: rgba(47, 53, 59, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.setup-wizard {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.setup-wizard__step {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(47, 53, 59, 0.05);
  display: flex;
  gap: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .setup-wizard__step {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
}
.setup-wizard__step--active {
  border-color: rgba(212, 163, 115, 0.2);
  box-shadow: 0 10px 40px -10px rgba(47, 53, 59, 0.05);
}
.setup-wizard__step:hover {
  border-color: rgba(212, 163, 115, 0.1);
}
.setup-wizard__number {
  width: 42px;
  height: 42px;
  background: #F5EFE1;
  color: #2F353B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
  border: 2px solid rgba(47, 53, 59, 0.05);
}
.setup-wizard__active-indicator {
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 4px;
  background: #D4A373;
  border-radius: 0 4px 4px 0;
}
.setup-wizard__content {
  flex: 1;
}
.setup-wizard__content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #2F353B;
}
.setup-wizard__content .step-label {
  font-size: 10px;
  font-weight: 800;
  color: #D4A373;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}
.setup-wizard__content p {
  margin: 0 0 1.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(47, 53, 59, 0.6);
}
.setup-wizard__controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}
.os-grid__item {
  background: #F5EFE1;
  border: 2px solid transparent;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.os-grid__item:hover {
  background: white;
  border-color: rgba(212, 163, 115, 0.2);
}
.os-grid__item--active {
  background: white;
  border-color: #D4A373;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.1);
}
.os-grid__item--active span {
  color: #2F353B;
  font-weight: 700;
}
.os-grid__item svg {
  width: 2rem;
  height: 2rem;
  color: #2F353B;
}
.os-grid__item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(47, 53, 59, 0.6);
}

.app-select {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.app-select__item {
  background: #F5EFE1;
  border: 2px solid transparent;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.app-select__item:hover {
  background: white;
  border-color: rgba(212, 163, 115, 0.2);
}
.app-select__item--active {
  background: white;
  border-color: #D4A373;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.1);
}
.app-select__item .app-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #2F353B;
  border-radius: 0.75rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.app-select__item .app-icon svg {
  width: 100%;
  height: 100%;
}
.app-select__item .app-info {
  flex: 1;
}
.app-select__item .app-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}
.app-select__item .app-info p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(47, 53, 59, 0.5);
}
.app-select__item .check-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(47, 53, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}
.app-select__item .check-mark--active {
  background: #D4A373;
  border-color: #D4A373;
  color: white;
}

.legal-card {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(47, 53, 59, 0.05);
  border: 1px solid rgba(47, 53, 59, 0.05);
  animation: cardAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.legal-card h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2F353B;
  margin-bottom: 0.5rem;
}
.legal-card .last-updated {
  font-size: 0.875rem;
  color: rgba(47, 53, 59, 0.4);
  font-weight: 600;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .legal-card {
    padding: 2rem 1.5rem;
    border-radius: 2rem;
  }
  .legal-card h1 {
    font-size: 1.75rem;
  }
}

.legal-section {
  margin-bottom: 2.5rem;
}
.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2F353B;
  margin-bottom: 1.25rem;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(47, 53, 59, 0.7);
  margin-bottom: 1rem;
}
.legal-section a {
  color: #D4A373;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(212, 163, 115, 0.3);
  transition: all 0.2s ease;
}
.legal-section a:hover {
  border-bottom-color: #D4A373;
}

.payment-status {
  display: flex;
  justify-content: center;
}
.payment-status__card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(47, 53, 59, 0.05);
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: cardAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.payment-status__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.payment-status__icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2.5;
}
.payment-status__icon--success {
  background: rgba(88, 129, 87, 0.1);
  color: #588157;
}
.payment-status__icon--success::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(88, 129, 87, 0.2);
  border-radius: 50%;
  animation: pulseSuccess 2s infinite;
}
.payment-status__icon--error {
  background: rgba(188, 71, 73, 0.1);
  color: #BC4749;
}
.payment-status__icon--error::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(188, 71, 73, 0.2);
  border-radius: 50%;
  animation: pulseError 2s infinite;
}
.payment-status__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2F353B;
}
.payment-status__text {
  font-size: 1rem;
  color: rgba(47, 53, 59, 0.6);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.payment-status__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@keyframes pulseSuccess {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes pulseError {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #F5EFE1;
}
.auth-page__card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(47, 53, 59, 0.05);
  max-width: 400px;
  width: 100%;
  animation: cardAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-page__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.auth-page__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2F353B;
  margin-bottom: 0.5rem;
}
.auth-page__subtitle {
  font-size: 0.875rem;
  color: rgba(47, 53, 59, 0.5);
}
.auth-page__form .form-group {
  margin-bottom: 1.5rem;
}
.auth-page__form .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2F353B;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.auth-page__form .form-group input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.auth-page__form .form-group input:focus {
  outline: none;
  background: white;
  border-color: #D4A373;
  box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
}
.auth-page__form .error-message {
  background: rgba(188, 71, 73, 0.1);
  color: #BC4749;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.auth-page__footer {
  margin-top: 2rem;
  text-align: center;
}
.auth-page__footer a {
  font-size: 0.875rem;
  color: rgba(47, 53, 59, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-page__footer a:hover {
  color: #D4A373;
}

.faq-page {
  padding: 2rem 0;
}
.faq-page__header {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-page__header h1 {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #2F353B;
  margin-bottom: 1rem;
}
.faq-page__header p {
  font-size: 1.125rem;
  color: rgba(47, 53, 59, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.faq-category {
  background: white;
  padding: 1.5rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(47, 53, 59, 0.05);
  box-shadow: 0 10px 40px -15px rgba(47, 53, 59, 0.05);
  transition: all 0.3s ease;
}
.faq-category:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 163, 115, 0.3);
  box-shadow: 0 20px 60px -20px rgba(47, 53, 59, 0.1);
}
.faq-category__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.faq-category__icon {
  width: 3rem;
  height: 3rem;
  background: #F5EFE1;
  color: #2F353B;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-category__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.faq-category h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0;
  color: #2F353B;
  line-height: 1.2;
}
.faq-category__guides {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-guide-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  padding: 1rem;
  background: rgba(47, 53, 59, 0.02);
  border-radius: 1.25rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.faq-guide-link span {
  font-weight: 700;
  color: #2F353B;
  font-size: 1rem;
}
.faq-guide-link small {
  color: rgba(47, 53, 59, 0.4);
  font-size: 0.8125rem;
}
.faq-guide-link:hover {
  background: white;
  border-color: rgba(212, 163, 115, 0.2);
  transform: translateX(5px);
}
.faq-guide-link:hover span {
  color: #D4A373;
}

.guide-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 6rem;
}
.guide-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(47, 53, 59, 0.5);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.guide-page__back:hover {
  color: #D4A373;
}
.guide-page__header {
  margin-bottom: 2rem;
}
.guide-page__header h1 {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #2F353B;
  line-height: 1.1;
}

.guide-step {
  margin-bottom: 5rem;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .guide-step {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.guide-step__number {
  width: 3.5rem;
  height: 3.5rem;
  background: #2F353B;
  color: #FEFAE0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
}
.guide-step__content {
  flex: 1;
}
.guide-step__content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2F353B;
}
.guide-step__content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(47, 53, 59, 0.6);
  margin-bottom: 2rem;
}
.guide-step__image-wrapper {
  background: white;
  padding: 1rem;
  border-radius: 2rem;
  box-shadow: 0 20px 50px -20px rgba(47, 53, 59, 0.15);
  border: 1px solid rgba(47, 53, 59, 0.05);
  overflow: hidden;
}
.guide-step__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  display: block;
  background: #f8f9fa;
  min-height: 200px;
}

.guide-back-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.guide-badge {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.guide-footer-notice {
  margin-top: 4rem;
}

.guide-alert {
  margin-top: 1.5rem;
  background: rgba(56, 189, 248, 0.1);
  border-left: 4px solid #38bdf8;
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.guide-alert--warning {
  background: rgba(212, 163, 115, 0.1);
  border-color: #D4A373;
}
.guide-alert--warning .guide-alert__icon {
  color: #D4A373;
}
.guide-alert--warning .guide-alert__title {
  color: #c8894c;
}
.guide-alert--warning .btn {
  background-color: #D4A373;
  color: #2F353B;
  border: none;
}
.guide-alert--warning .btn:hover {
  background-color: #ce965f;
  color: #2F353B;
}
.guide-alert__content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.guide-alert__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #38bdf8;
  margin-top: 0.25rem;
}
.guide-alert__title {
  display: block;
  margin-bottom: 0.5rem;
  color: #38bdf8;
  font-weight: 700;
}
.guide-alert__text {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
  color: #2F353B;
}
.guide-alert__text:last-child {
  margin-bottom: 0;
}
.guide-alert__link {
  color: #38bdf8;
  text-decoration: underline;
  font-weight: 600;
}
.guide-alert__link:hover {
  text-decoration: none;
}
.guide-alert__action {
  font-size: 0.9rem;
  padding: 0.6em 1.2em;
  text-transform: none;
  letter-spacing: normal;
}

/*# sourceMappingURL=app.output.css-pXwqLHG.map */
