@charset "UTF-8";
.lp-auto {
  margin: 12px auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-auto {
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    margin: 6px auto;
  }
}

main {
  padding-top: 12px;
  padding-bottom: 18px;
}
main .lp-auto {
  margin-bottom: 12px;
}
main .lp-auto:last-child {
  margin-bottom: 0;
}
main label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 14px;
}
main select {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 6px 10px;
  margin-bottom: 12px;
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  color: var(--color-text-primary);
  transition: all 0.2s ease;
  font-family: inherit;
  cursor: pointer;
}
main select:focus {
  outline: none;
  border-color: #e89c0a;
  box-shadow: 0 0 0 3px rgba(232, 156, 10, 0.1);
}
main select:hover {
  border-color: #e89c0a;
}
@media (max-width: 600px) {
  main select {
    max-width: 100%;
  }
}

.lp-border {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.lp-border:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(232, 156, 10, 0.3);
}

.lp-border-grey {
  border-color: var(--color-border);
}

.lp-white {
  background: var(--color-bg-body);
  color: var(--color-text-primary);
}

.lp-round {
  border-radius: 6px;
}

.lp-margin-top {
  margin-top: 12px;
}

.lp-margin-bottom {
  margin-bottom: 12px;
}

.lp-container {
  padding: 18px;
}
.lp-container:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.lp-container h1 {
  margin: 0;
}

.lp-padding {
  padding: 18px;
}

h1.lp-xlarge {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  letter-spacing: -0.5px;
}
@media (max-width: 600px) {
  h1.lp-xlarge {
    font-size: 20px;
  }
}

h2.lp-large {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--color-text-primary);
}

p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
p:not(:last-child) {
  margin-bottom: 10px;
}

.lp-table-all {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  background: var(--color-bg-body);
}
.lp-table-all thead {
  background: #f9fafb;
}
@media (prefers-color-scheme: dark) {
  .lp-table-all thead {
    background: #0f172a;
  }
}
html[data-theme="dark"] .lp-table-all thead {
  background: #0f172a;
}
html[data-theme="light"] .lp-table-all thead {
  background: #f9fafb !important;
}
.lp-table-all th,
.lp-table-all td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 14px;
}
.lp-table-all th {
  font-weight: 700;
  background: #f9fafb;
  color: var(--color-text-primary);
}
@media (prefers-color-scheme: dark) {
  .lp-table-all th {
    background: #0f172a;
  }
}
html[data-theme="dark"] .lp-table-all th {
  background: #0f172a;
}
html[data-theme="light"] .lp-table-all th {
  background: #f9fafb !important;
}
.lp-table-all tr:hover {
  background: rgba(232, 156, 10, 0.02);
}
@media (max-width: 600px) {
  .lp-table-all th,
  .lp-table-all td {
    padding: 6px 10px;
    font-size: 13px;
  }
}

.old-price {
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 6px;
  font-size: 13px;
}

.new-price {
  color: #5ba831;
  font-weight: 700;
  font-size: 14px;
}

#packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  #packages-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 600px) {
  #packages-container {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.package {
  padding: 12px;
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.package:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(232, 156, 10, 0.3);
  transform: translateY(-2px);
}
.package h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--color-text-primary);
}
.package .price {
  font-size: 17px;
  font-weight: 700;
  color: #e89c0a;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.package .price .tax-info {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}
.package ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  flex: 1;
}
.package ul li {
  padding: 6px 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.package ul li:last-child {
  border-bottom: none;
}
.package ul li.ad-limit {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}
.package ul li.ad-limit span {
  background: rgba(232, 156, 10, 0.1);
  color: #e89c0a;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
}
.package ul li:before {
  content: "✓";
  color: #5ba831;
  font-weight: 700;
  margin-right: 6px;
}
.package button {
  align-self: flex-start;
  padding: 6px 12px;
  background: #e89c0a;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.package button:hover {
  background: #c18208;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.package button:active {
  transform: translateY(0);
}
.package button:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .package button {
    width: 100%;
    align-self: stretch;
  }
}

.explanation {
  padding: 10px;
  background: rgba(232, 156, 10, 0.05);
  border-left: 4px solid #e89c0a;
  border-radius: 2px;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 12px;
}
@media (prefers-color-scheme: dark) {
  .explanation {
    background: rgba(232, 156, 10, 0.1);
  }
}
html[data-theme="dark"] .explanation {
  background: rgba(232, 156, 10, 0.1);
}
html[data-theme="light"] .explanation {
  background: rgba(232, 156, 10, 0.05) !important;
}

.lp-light-grey {
  background: #f9fafb;
}
@media (prefers-color-scheme: dark) {
  .lp-light-grey {
    background: #0f172a;
  }
}
html[data-theme="dark"] .lp-light-grey {
  background: #0f172a;
}
html[data-theme="light"] .lp-light-grey {
  background: #f9fafb !important;
}

@media (max-width: 768px) {
  main {
    padding-top: 10px;
    padding-bottom: 12px;
  }
  main .lp-auto {
    margin-bottom: 10px;
  }
  main select {
    max-width: 100%;
  }

  .lp-container {
    padding: 12px;
  }

  .lp-padding {
    padding: 12px;
  }

  .lp-margin-top {
    margin-top: 10px;
  }

  .lp-margin-bottom {
    margin-bottom: 10px;
  }

  h1.lp-xlarge {
    font-size: 18px;
  }

  h2.lp-large {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  main {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .lp-container {
    padding: 10px;
  }

  .lp-padding {
    padding: 10px;
  }

  .lp-border {
    border-radius: 4px;
  }

  h1.lp-xlarge {
    font-size: 16px;
  }

  h2.lp-large {
    font-size: 14px;
  }

  .lp-table-all th,
  .lp-table-all td {
    padding: 6px;
    font-size: 12px;
  }

  .package {
    padding: 10px;
  }
  .package h2 {
    font-size: 14px;
  }
  .package .price {
    font-size: 16px;
  }
  .package ul li {
    font-size: 12px;
    padding: 3px 0;
  }
  .package button {
    font-size: 13px;
    padding: 3px 10px;
  }

  .explanation {
    font-size: 12px;
    padding: 6px;
    margin-top: 10px;
  }
}
