@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #f8f9fa;
  min-height: 100vh;
}

a {
  color: #0056b3;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #003d82;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

code {
  font-family: "SF Mono", "Fira Code", monospace;
  background: #e8f0fe;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #dee2e6;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-header .logo {
  display: flex;
  align-items: center;
}
.site-header .logo-img {
  height: 32px;
  width: auto;
}
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header .nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a2e;
}
.site-header .nav a:hover {
  color: #0056b3;
}
.site-header .nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.site-header .logout-icon {
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.site-header .logout-icon[href*=logout] {
  color: #dc3545;
}
.site-header .logout-icon[href*=logout]:hover {
  color: #a71d2a;
}
.site-header .lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.site-header .lang-switcher .lang-current {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.site-header .lang-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 10;
  white-space: nowrap;
}
.site-header .lang-switcher .lang-dropdown a {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  padding: 2px;
  border-radius: 3px;
  transition: transform 0.15s ease;
}
.site-header .lang-switcher .lang-dropdown a:hover {
  transform: scale(1.2);
}
.site-header .lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.site-footer {
  background: #1a1a2e;
  color: #adb5bd;
  padding: 3rem 0;
  text-align: center;
  font-size: 0.875rem;
}
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.site-footer .footer-links a {
  color: #adb5bd;
  font-size: 0.875rem;
  text-decoration: underline;
}
.site-footer .footer-links a:hover {
  color: #ffffff;
}

section {
  padding: 5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: #0056b3;
  color: #ffffff;
  border-color: #0056b3;
}
.btn-primary:hover {
  background: #003d82;
  border-color: #003d82;
  color: #ffffff;
}
.btn-outline {
  background: transparent;
  color: #0056b3;
  border-color: #0056b3;
}
.btn-outline:hover {
  background: #0056b3;
  color: #ffffff;
}
.btn-danger {
  background: #dc3545;
  color: #ffffff;
  border-color: #dc3545;
}
.btn-danger:hover {
  background: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  color: #ffffff;
}
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 16px;
}
.btn-block {
  width: 100%;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
.card-body {
  padding: 3rem;
}
.card h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.alert {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.alert-error {
  background: #fde8e8;
  color: #dc3545;
  border: 1px solid #f8d7da;
}
.alert-success {
  background: #e8f5e9;
  color: #28a745;
  border: 1px solid #c8e6c9;
}

.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1a1a2e;
}

input.field-error {
  border-color: #dc3545 !important;
  background: #fff5f5;
}

input[type=text],
input[type=email],
input[type=password] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  transition: border-color 0.2s ease;
  outline: none;
  background: #ffffff;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  border-color: #0056b3;
}

.badge {
  display: inline-block;
  padding: 0.2em 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-active {
  background: #e8f5e9;
  color: #28a745;
}
.badge-blocked {
  background: #fde8e8;
  color: #dc3545;
}

.text-muted {
  color: #6c757d;
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(15, 59, 153, 0.88) 0%, rgba(10, 40, 100, 0.92) 100%), url("/assets/images/hero-start.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero h1 .highlight {
  color: #00c9a7;
}
.hero .hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
}
.hero .hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.hero .btn-outline:hover {
  background: #ffffff;
  color: #0056b3;
  border-color: #ffffff;
}

.features {
  background: #ffffff;
}
.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
}
.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #6c757d;
  font-size: 0.875rem;
}

.pricing {
  background: #f8f9fa;
}
.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 2px solid #dee2e6;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease;
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00c9a7;
  color: #ffffff;
  padding: 0.25rem 1rem;
}
.pricing-card.featured {
  border-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.03);
}
.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 2rem;
}
.pricing-card .price span {
  font-size: 16px;
  font-weight: 400;
  color: #6c757d;
}
.pricing-card ul {
  flex: 1;
  margin-bottom: 3rem;
}
.pricing-card ul li {
  padding: 0.5rem 0;
  color: #6c757d;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.5em;
}
.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c9a7;
  font-weight: 700;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #00c9a7 0%, #00a88b 100%);
  color: #ffffff;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}
.cta-section .btn-primary {
  background: #ffffff;
  color: #00a88b;
  border-color: #ffffff;
}
.cta-section .btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

.auth-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px - 80px);
}

.auth-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
}
.auth-card h1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.auth-link {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.dashboard-section {
  padding: 3rem 0;
}

.dashboard-header {
  margin-bottom: 3rem;
}
.dashboard-header h1 {
  font-size: 2.5rem;
}
.dashboard-header .user-email {
  color: #6c757d;
  margin-top: 0.25rem;
}

.license-key-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.license-key-display code {
  font-size: 1.1em;
  padding: 0.5em 1em;
  background: #e8f0fe;
  border-radius: 8px;
  word-break: break-all;
  user-select: all;
}

.license-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.device-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.device-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  gap: 1rem;
  flex-wrap: wrap;
}

.device-info {
  display: flex;
  flex-direction: column;
}
.device-info strong {
  font-size: 0.875rem;
}
.device-info .text-muted {
  font-size: 0.8125rem;
}

.update-info p {
  margin-bottom: 1rem;
}
.update-info .update-expired {
  color: #ffc107;
  font-weight: 600;
}
.update-info .renew-btn {
  margin-top: 0.5rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
}

.download-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a2e;
  transition: all 0.2s ease;
}
.download-item:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
}

.download-icon {
  font-size: 1.5rem;
}

.download-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  text-align: center;
}
.download-info strong {
  font-size: 16px;
}

.download-item-old {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.download-item-old .download-info {
  align-items: flex-start;
  text-align: left;
  flex: 1;
}

.version-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.version-table th, .version-table td {
  text-align: left;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
}
.version-table th {
  font-weight: 600;
  color: #6c757d;
}
.version-table tr:last-child td {
  border-bottom: none;
}

.page-section {
  padding: 5rem 0;
}
.page-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #f8f9fa;
}

.faq-arrow {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #adb5bd;
  border-bottom: 2px solid #adb5bd;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 1rem;
}

.faq-item.open .faq-arrow {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 2rem;
  color: #6c757d;
  line-height: 1.7;
  font-size: 0.875rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 2rem 2rem;
}

.checkout-section {
  padding: 5rem 0;
}

.checkout-layout {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

.checkout-summary {
  flex: 0 0 340px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 3rem;
  position: sticky;
  top: calc(3rem + 64px);
}
.checkout-summary h1 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.checkout-product {
  margin-bottom: 2rem;
}
.checkout-product h2 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.checkout-product ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.checkout-product li {
  font-size: 0.875rem;
  color: #6c757d;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.checkout-product li::before {
  content: "✓";
  color: #28a745;
  position: absolute;
  left: 0;
}

.checkout-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0056b3;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
  font-size: 1.125rem;
}

.checkout-form-wrap {
  flex: 1;
  min-width: 0;
}

.checkout-form h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.terms-group {
  margin-bottom: 2rem;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}
.terms-label input {
  margin-top: 0.2rem;
}
.terms-label a {
  color: #0056b3;
  text-decoration: underline;
}

.checkout-secure {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.checkout-return-policy {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.checkout-success {
  text-align: center;
  padding: 5rem 2rem;
}
.checkout-success h2 {
  margin: 1rem 0;
}

.checkout-success-icon {
  font-size: 3rem;
}

.checkout-license-key {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.checkout-license-key code {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  word-break: break-all;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.checkout-form input[readonly] {
  background: #f8f9fa;
  cursor: not-allowed;
  opacity: 0.7;
}

.checkout-paddle-wait {
  text-align: center;
  padding: 2rem;
  margin-bottom: 1rem;
}
.checkout-paddle-wait p {
  color: #6c757d;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.paddle-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #dee2e6;
  border-top-color: #0056b3;
  border-radius: 50%;
  animation: paddle-spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes paddle-spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-form {
  max-width: 640px;
}

.contact-prompt {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.contact-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn-category {
  border: 2px solid #dee2e6;
  background: #ffffff;
  color: #1a1a2e;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 3rem 2rem;
  font-size: 1.125rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.btn-category:hover {
  border-color: #0056b3;
  background: #e8f0fe;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.btn-category.active {
  border-color: #0056b3;
  background: #0056b3;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  transition: border-color 0.2s ease;
  outline: none;
  background: #ffffff;
  resize: vertical;
}
.contact-form textarea:focus {
  border-color: #0056b3;
}

.contact-selected {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1rem 2rem;
  background: #e8f0fe;
  border-radius: 8px;
  border: 1px solid #0056b3;
  font-weight: 600;
  font-size: 16px;
  color: #003d82;
}

.contact-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #0056b3;
  border-radius: 50%;
  background: #ffffff;
  color: #0056b3;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.contact-back:hover {
  background: #0056b3;
  color: #ffffff;
}

.captcha-group {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #dee2e6;
}
.captcha-group label {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.captcha-group input {
  max-width: 120px;
  font-size: 1.125rem;
  text-align: center;
}

.contact-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #fde8e8;
  color: #dc3545;
  border: 1px solid #f8d7da;
  border-radius: 8px;
  font-size: 0.875rem;
}
.contact-error div {
  padding: 2px 0;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: #adb5bd;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .pricing-card.featured {
    transform: none;
  }
  .site-header .nav {
    gap: 0.5rem;
  }
  .license-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/*# sourceMappingURL=main.css.map */
