/* src/landing/styles/landing.css */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fafafa;
}
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 2px solid #f0f0f0;
  padding: 14px 24px;
}
.header-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.logo img {
  height: 48px;
}
.login-link {
  text-decoration: none;
  font-weight: 500;
}
.landing-main {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}
.hero {
  text-align: center;
  padding: 20px 0;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.feature {
  border: 1px solid #eee;
  padding: 20px;
}
.pricing {
  margin-top: 30px;
}
.landing-block:last-of-type {
  margin-bottom: 40px;
}
.landing-footer {
  border-top: 1px solid #eee;
  padding: 20px;
}
.footer-inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.sticker-card {
  border: 1px solid #e5e5e5;
  padding: 26px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.price {
  font-size: 28px;
  margin: 10px 0;
}
.subscribe-button {
  width: 100%;
  padding: 14px;
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.2s;
}
.subscribe-button:hover {
  background: #1565c0;
}
#stickers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.sticker-card {
  border: 1px solid #ddd;
  padding: 24px;
  border-radius: 10px;
  background: white;
  display: flex;
  flex-direction: column;
}
.sticker-title {
  font-size: 20px;
  margin-bottom: 14px;
  text-align: center;
}
.sticker-description {
  margin-bottom: 20px;
}
.price-block {
  text-align: center;
  margin-bottom: 20px;
}
.price-full {
  color: black;
  text-decoration: line-through;
  text-decoration-color: red;
  text-decoration-thickness: 2px;
  font-size: 14px;
}
.price-discount {
  color: #1565ff;
  font-size: 24px;
  font-weight: bold;
}
.landing-block {
  max-width: 820px;
  margin: 20px auto;
}
.subscribe-link {
  justify-self: center;
  background: #ffc400;
  color: black;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.subscribe-link:hover {
  background: #ffb300;
}
.login-link {
  justify-self: end;
  text-decoration: none;
}
.sticker-spacer {
  flex-grow: 1;
}
.sticker-card ul,
.sticker-card ol {
  line-height: 1.6;
}
.hero {
  text-align: center;
  padding: 20px 20px 10px;
  max-width: 900px;
  margin: auto;
}
.landing-block:first-of-type {
  margin-top: 20px;
}
.hero-logo {
  width: 420px;
  max-width: 90%;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}
.cta-button,
.hero-button {
  display: inline-block;
  background: #ffc400;
  color: black;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}
.login-text {
  font-size: 14px;
}
.login-button {
  background: #1976d2;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.discount-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  background: #e53935;
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  vertical-align: middle;
}
.price-discount {
  color: #1565ff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 18px;
  line-height: 1.6;
}
.legal-page h1 {
  margin-top: 10px;
}
.legal-page h2 {
  margin-top: 28px;
}
.legal-page ul {
  padding-left: 20px;
}
html {
  scroll-behavior: smooth;
}
#pricing {
  scroll-margin-top: 0px;
}
@media (max-width: 700px) {
  .hero-top {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .login-block {
    position: absolute;
    top: -40px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .login-text {
    font-size: 12px;
    white-space: nowrap;
  }
  .login-button {
    padding: 6px 10px;
    font-size: 13px;
  }
  .hero-logo {
    display: block;
    width: 260px;
    margin: 0 auto;
  }
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.login-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-card {
  background: white;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.card-cta {
  margin-top: auto;
  text-align: center;
  padding-top: 30px;
}
.section-card h2 {
  margin-bottom: 10px;
  line-height: 0.8;
  text-align: center;
}
.section-card ul,
.section-card ol {
  margin-bottom: 16px;
}
.section-card p {
  margin-bottom: 10px;
}
.pricing {
  max-width: 1000px;
  margin: 60px auto;
}
.section-card ul,
.section-card ol {
  line-height: 1.4;
  padding-left: 20px;
}
.section-card li {
  margin-bottom: 10px;
}
.pricing h2 {
  text-align: center;
}
/*# sourceMappingURL=landing.css.map */
