:root {
  --bg: #fdfdfd;
  --bg-gradient: 
    radial-gradient(circle at 16% 20%, rgba(231, 47, 143, 0.1), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(0, 181, 245, 0.1), transparent 34%),
    radial-gradient(circle at 17% 82%, rgba(149, 222, 63, 0.1), transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(255, 138, 61, 0.1), transparent 36%);
  --panel: #ffffff;
  --panel-strong: #f7f7f7;
  --text: #111827;
  --muted: #3a4453;
  --accent: #f6a83c;
  --accent-strong: #ff6b00;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 20px 72px;
}

.top-bar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 253, 253, 0.2);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 22px;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.lang-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.lang-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 181, 245, 0.2), rgba(231, 47, 143, 0.18));
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.lang-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.lang-label {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}

.lang-select {
  display: none;
}

.lang-select-custom {
  position: relative;
  width: 180px;
}

.lang-select,
.lang-select-trigger {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  background-image: var(--flag-image, none);
  background-repeat: no-repeat;
  background-position: 10px 50%;
  background-size: 18px 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  padding-left: 36px;
}

.lang-select-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-image: none;
  padding-left: 12px;
  justify-content: space-between;
}

.lang-select-trigger:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(255, 139, 97, 0.25);
}

.lang-select-trigger .lang-flag {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lang-select-trigger .lang-globe {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lang-select-trigger .lang-selected-label {
  flex: 1;
  text-align: left;
}

.lang-select-trigger .lang-select-arrow {
  font-size: 14px;
  color: var(--muted);
  padding-left: 6px;
}

.lang-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: none;
  z-index: 10;
}

.lang-select-custom.open .lang-select-options {
  display: block;
}

.lang-select-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
}

.lang-select-option .lang-flag {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lang-select-option:hover,
.lang-select-option.active {
  background: var(--accent);
  color: #fff;
}

.lang-select-option.active .lang-flag {
  filter: none;
}

.lang-select option {
  background-repeat: no-repeat;
  background-position: 10px 50%;
  background-size: 18px 12px;
  padding-left: 34px;
}

.hero {
  margin-top: 36px;
  padding: 22px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-brand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  margin-bottom: 16px;
  row-gap: 5px;
}

.hero-logo {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  grid-row: 1 / span 2;
  grid-column: 1;
}

.hero-wordmark {
  margin: 0;
  font-size: clamp(34px, 8vw, 50px);
  font-weight: 700;
  letter-spacing: clamp(2px, 1.2vw, 6px);
  color: #0f172a;
  grid-column: 2;
  grid-row: 1;
  line-height: 0.9;
}

.hero-subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: var(--muted);
  color: #535e6e;
  grid-column: 2;
  grid-row: 2;
  line-height: 1.2;
}

.hero-title {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.4;
}

.hero-lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.price-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 18px;
}

.price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}

.price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: #d56133;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.price-currency {
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.price-number {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.4px;
}

.audience {
  margin: 0;
  color: var(--muted);
}

.cta {
  display: grid;
  gap: 10px;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(255, 107, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 107, 0, 0.26);
}

.primary-btn:active {
  transform: translateY(0);
}

.line-add-btn {
  display: inline-block;
}

.line-add-btn img {
  display: block;
}

.bottom-cta {
  margin: 36px auto 12px;
  text-align: center;
}

.bottom-cta .cta {
  justify-items: center;
}

.legal-links {
  margin: 50px 0 12px;
  text-align: center;
  font-size: 13px;
}

.legal-links a {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 400;
}

.legal-links a:hover {
  text-decoration: underline;
}

.cta-notice {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.terms,
.cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.terms a {
  color: var(--accent-strong);
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.card {
  margin-top: 22px;
  padding: 22px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

#featuresList {
  list-style: none;
  padding-left: 0;
}

#featuresList li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}

#featuresList li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-strong);
  font-weight: 1000;
  font-size: 18px;
  line-height: 1;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid #ececec;
  text-align: left;
}

th {
  color: var(--text);
  font-weight: 700;
}

.steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section-lead {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.emphasis {
  margin: 12px 0 0;
  font-weight: 700;
  color: #0f172a;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 16px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.inline-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-card .inline-cta {
  margin-top: 16px;
}

.site-footer {
  margin-top: 42px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 14px;
}

.footer-links a {
  color: var(--accent-strong);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 640px) {
  .top-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero {
    margin-top: 18px;
  }

  .primary-btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    align-items: flex-start;
  }
}
