:root {
  --navy:   #1A2E45;
  --blue:   #185FA5;
  --ink:    #1a1a2e;
  --ink2:   #4a5568;
  --ink3:   #718096;
  --bg:     #f8fafc;
  --white:  #ffffff;
  --border: #e2e8f0;
  --green:  #2d6a4f;
  --amber:  #b45309;
  --radius: 10px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  padding-bottom: 84px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img { width: clamp(220px, 42vw, 520px); height: auto; }

.nav-logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-links a {
  color: var(--ink2);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover { color: var(--navy); text-decoration: none; }

.btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover { background: var(--navy); text-decoration: none; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover { background: var(--blue); color: var(--white); text-decoration: none; }

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 40px 64px;
  background: linear-gradient(160deg, #f0f6ff 0%, var(--white) 60%);
}

.hero-tag {
  display: inline-block;
  background: #e8f0fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  max-width: 700px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--blue); }

.hero p {
  font-size: 19px;
  color: var(--ink2);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink3);
}

/* ── Features grid ── */
.section { padding: 72px 40px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--ink2);
  max-width: 560px;
  margin: 0 auto 48px;
}

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

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing-section { background: var(--bg); }

.price-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  width: 300px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(24,95,165,0.12);
}

.price-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.price-amount sup { font-size: 20px; vertical-align: top; margin-top: 8px; display: inline-block; }

.price-once {
  font-size: 13px;
  color: var(--ink3);
  margin: 6px 0 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 14px;
  color: var(--ink2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.price-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Demo CTA ── */
.demo-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 40px;
}

.demo-cta h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.demo-cta p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 32px;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.btn-white:hover { background: #e8f0fb; text-decoration: none; color: var(--navy); }

/* ── Footer ── */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 13px; color: var(--ink3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--ink3); }
.footer-links a:hover { color: var(--navy); }

/* ── Download buttons ── */
.dl-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.dl-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dl-hint {
  font-size: 12px;
  color: var(--ink3);
  margin: 0;
}

/* ── Linux install block ── */
.linux-install {
  margin: 20px auto 0;
  max-width: 660px;
}
.linux-install-label {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 8px;
  text-align: center;
}
.linux-install-cmd {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--blue);
  border-radius: 7px;
  padding: 12px 16px;
}
.linux-install-cmd code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--navy);
  white-space: nowrap;
  overflow-x: auto;
  text-align: left;
}
.linux-copy-btn {
  flex-shrink: 0;
  font-size: 14px;
  padding: 9px 20px;
}

/* ── Contact ── */
.contact-header {
  text-align: center;
  padding: 64px 40px 48px;
  background: linear-gradient(160deg, #f0f6ff 0%, var(--white) 60%);
}

.contact-header h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin: 10px 0 12px;
}

.contact-header p {
  font-size: 17px;
  color: var(--ink2);
  max-width: 520px;
  margin: 0 auto;
}

.contact-section { padding-top: 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-block strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-block p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0;
}

.contact-detail-list {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
}

.contact-detail-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink2);
}

.contact-detail-row:last-child { border-bottom: none; }

.contact-detail-label {
  font-weight: 600;
  color: var(--navy);
  width: 72px;
  flex-shrink: 0;
}

.contact-detail-row a { color: var(--blue); }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-req { color: var(--blue); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 100px; }

.platform-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  user-select: none;
}

.platform-pill:has(input:checked) {
  border-color: var(--blue);
  color: var(--blue);
  background: #eef4fd;
}

.platform-pill input { display: none; }

.form-licence-note {
  background: #eef4fd;
  border: 1.5px solid #b8d0ef;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}

.form-submit {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error {
  background: #fff5f5;
  border: 1.5px solid #feb2b2;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 13px;
  color: #c53030;
  margin-bottom: 14px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p { font-size: 15px; color: var(--ink2); }

/* ── Comparison Table ── */
.cmp-wrap {
  overflow-x: auto;
  margin: 40px 0 12px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cmp-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.cmp-feat-col { width: 220px; }

/* Header row */
.cmp-table thead th {
  text-align: center;
  padding: 18px 16px;
  border-bottom: 2px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.cmp-table thead th:last-child { border-right: none; }

.cmp-feat-col {
  text-align: left !important;
  padding-left: 16px !important;
}

.cmp-col--featured {
  background: var(--blue) !important;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.15) !important;
  border-bottom: 2px solid var(--blue) !important;
}

.cmp-product-name { font-size: 15px; font-weight: 700; }

.cmp-product-price {
  font-size: 12px;
  margin-top: 3px;
  opacity: 0.8;
}

.cmp-col--featured .cmp-product-price { color: #c8dcf8; }

/* Category section rows */
.cmp-category td {
  background: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 9px 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left !important;
}

/* Body cells */
.cmp-table tbody tr:not(.cmp-category) td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--ink2);
}

.cmp-table tbody tr:not(.cmp-category) td:last-child { border-right: none; }
.cmp-table tbody tr:not(.cmp-category):last-child td { border-bottom: none; }

/* Alternating rows */
.cmp-table tbody tr:not(.cmp-category):nth-child(even) td:not(.cmp-cell--featured) {
  background: #fafbfc;
}

.cmp-feat {
  text-align: left !important;
  padding-left: 16px !important;
  font-weight: 500;
  color: var(--ink) !important;
  border-right: 1px solid var(--border) !important;
}

.cmp-cell--featured {
  background: #e8f2fe !important;
  color: var(--navy) !important;
  font-weight: 500;
  border-right: 2px solid #b8d0ef !important;
  border-left: 2px solid #b8d0ef !important;
}

.cmp-tick  { color: #2d6a4f; font-weight: 700; font-size: 15px; }
.cmp-cross { color: #aab0bb; font-size: 15px; }

.cmp-good {
  color: var(--blue);
  font-weight: 600;
}

.cmp-bad { color: #c53030; }

.cmp-partial {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: #fef3c7;
  color: #92400e;
  padding: 2px 7px;
  border-radius: 4px;
}

.cmp-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--amber);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
}

.cmp-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink3);
}

/* ── Pricing Timeline ── */
.pt-timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 48px 0 36px;
}

.pt-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.pt-phase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
}

.pt-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.pt-dot--active  { background: var(--blue);   border: 3px solid var(--blue); }
.pt-dot--next    { background: var(--white);  border: 3px solid var(--blue); }
.pt-dot--future  { background: var(--white);  border: 3px solid var(--border); }

.pt-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  width: 100%;
}

.pt-card--featured {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(24,95,165,0.10);
}

.pt-card--future { opacity: 0.75; }

.pt-period {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.pt-card--future .pt-period { color: var(--ink3); }

.pt-price-big {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2px;
}

.pt-price-big span { font-size: 15px; font-weight: 500; color: var(--ink3); }

.pt-price-alt {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 6px;
}

.pt-phase-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 6px 0 14px;
}

.pt-feats { list-style: none; }

.pt-feats li {
  font-size: 13px;
  color: var(--ink2);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.pt-feats li:last-child { border-bottom: none; }

.pt-feats li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.pt-tba {
  font-size: 10px;
  font-weight: 700;
  background: var(--amber);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

.pt-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eef4fd;
  border: 1.5px solid #b8d0ef;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}

.pt-guarantee-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.pt-guarantee strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.pt-guarantee code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: rgba(24,95,165,0.08);
  padding: 1px 4px;
  border-radius: 3px;
}

.pt-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--ink3);
  margin-top: 0;
}

/* ── Pricing Tiers ── */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0 28px;
}

.tier-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.tier-card--pro {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(24,95,165,0.10);
  position: relative;
}

.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 99px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.tier-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.tier-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-price span { font-size: 15px; font-weight: 500; color: var(--ink3); }

.tier-price-sub {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 20px;
}

.tier-divider {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 18px 0;
}

.tier-feat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink3);
  margin-bottom: 10px;
}

.tier-feats {
  list-style: none;
  flex: 1;
  margin: 0 0 20px;
  padding: 0;
}

.tier-feats li {
  font-size: 13px;
  color: var(--ink2);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tier-feats li:last-child { border-bottom: none; }

.tier-feats li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-cta {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.15s;
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
  box-sizing: border-box;
}

.tier-cta:hover { opacity: 0.88; }

.tier-cta--free {
  background: transparent;
  color: var(--blue);
}

.tier-phases {
  background: #eef4fd;
  border: 1.5px solid #b8d0ef;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.6;
}

.tier-phases p { margin: 0 0 6px; }
.tier-phases p:last-child { margin: 0; }

/* ── App Preview & Setup Screenshots ── */
.scr-section { background: var(--bg); }

.scr-frame {
  margin: 40px auto 0;
  max-width: 920px;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.13);
  overflow: hidden;
  border: 1px solid var(--border);
}

.scr-img {
  display: block;
  width: 100%;
  height: auto;
}

.setup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.setup-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.setup-scr img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
}

.setup-card-body {
  padding: 16px 20px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.setup-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.setup-card-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.setup-card-text p {
  font-size: 13px;
  color: var(--ink2);
  margin: 0;
  line-height: 1.5;
}

.setup-card-text code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  background: rgba(24,95,165,0.08);
  padding: 1px 4px;
  border-radius: 3px;
}

/* ── Legal pages (Privacy, Terms) ── */
.legal-header {
  text-align: center;
  padding: 64px 40px 48px;
  background: linear-gradient(160deg, #f0f6ff 0%, var(--white) 60%);
}

.legal-header h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin: 10px 0 12px;
}

.legal-header p {
  font-size: 15px;
  color: var(--ink3);
  margin: 0;
}

.legal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

.legal-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 10px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  margin: 0 0 14px 20px;
}

.legal-body ul li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-body a { color: var(--blue); }

.legal-body code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: rgba(24,95,165,0.08);
  padding: 1px 4px;
  border-radius: 3px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] > summary::after { transform: rotate(45deg); }

.faq-item p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
  padding-bottom: 20px;
  margin: 0;
}

.faq-item a { color: var(--blue); }

.faq-item code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: rgba(24,95,165,0.08);
  padding: 1px 4px;
  border-radius: 3px;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .site-nav { padding: 14px 20px; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 8px 20px 16px;
    z-index: 99;
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .nav-links .btn-primary {
    margin-top: 10px;
    text-align: center;
    padding: 12px 20px;
    border-bottom: none;
  }
  .hero { padding: 52px 20px 48px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .section { padding: 48px 20px; }
  .site-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 110px; }

  .pt-guarantee { flex-direction: column; gap: 10px; }
  .tier-grid { grid-template-columns: 1fr; }

  .setup-grid { grid-template-columns: 1fr; gap: 20px; }

  .contact-header { padding: 48px 20px 36px; }
  .contact-header h1 { font-size: 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 24px 18px; }

  .products-strip { padding: 0 20px; overflow-x: auto; flex-wrap: nowrap; }
  .products-strip-item { white-space: nowrap; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%; padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px; justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: var(--bg); min-width: 0;
  }
  .nav-dropdown-item { padding: 10px 16px; }
  .steps-list { grid-template-columns: 1fr; gap: 16px; }
  .sec-pricing-wrap { margin: 24px 0 0; }
}

/* ── Products strip ── */
.products-strip {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 0 40px;
}
.products-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 0;
  margin-right: 24px;
  font-size: 13px;
  color: var(--ink2);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
  line-height: 1.3;
}
.products-strip-item:hover { color: var(--navy); text-decoration: none; }
.products-strip-item--active { border-bottom-color: var(--blue); color: var(--navy); }
.products-strip-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 6px; }
.products-strip-name { display: block; font-weight: 600; color: var(--navy); font-size: 13px; }
.products-strip-desc { display: block; font-size: 11px; color: var(--ink3); }

/* ── Nav dropdown (Products) ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; font-family: inherit;
  font-size: 15px; font-weight: 500; color: var(--ink2);
  cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--navy); }
.nav-dropdown-arrow { font-size: 9px; transition: transform 0.2s; display: inline-block; }
.nav-dropdown[data-open] .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.10);
  min-width: 240px; z-index: 200; overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown[data-open] .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex; flex-direction: column; padding: 12px 18px;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--border); transition: background 0.12s;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { background: var(--bg); text-decoration: none; }
.nav-dropdown-item--active { background: #eef4fd; }
.nav-dropdown-item-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.nav-dropdown-item-desc { font-size: 12px; color: var(--ink3); }

/* ── Steps list (text-only how-it-works) ── */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px;
}
.step-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-card strong { font-size: 15px; font-weight: 700; color: var(--navy); }
.step-card p { font-size: 14px; color: var(--ink2); line-height: 1.6; margin: 0; }
.step-card code {
  font-family: 'Courier New', monospace; font-size: 12px;
  background: rgba(24,95,165,.08); padding: 1px 4px; border-radius: 3px;
}

/* ── Investments single-tier pricing ── */
.sec-pricing-wrap { display: flex; justify-content: center; margin: 40px 0 0; }
.sec-pricing-wrap .tier-card { max-width: 400px; width: 100%; }

/* ── Pack grid (pricing page) ──────────────────────────────────────────────── */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 28px;
}

.pack-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.pack-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.pack-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.pack-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--ink2);
}

.pack-feats li {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.pack-feats li:last-child { border-bottom: none; }

.pack-feats li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 640px) {
  .pack-grid { grid-template-columns: 1fr; }
}

/* ── Pairing / setup guide pages ──────────────────────────────────────────── */
.guide-step {
  display: flex;
  gap: 18px;
  margin: 32px 0 0;
  align-items: flex-start;
}

.guide-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-step-body { flex: 1; }

.guide-step-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.guide-step-body p {
  font-size: 15px;
  color: var(--ink2);
  margin: 0 0 10px;
}

.guide-step-body ul {
  margin: 6px 0 10px 20px;
}

.guide-step-body ul li {
  font-size: 15px;
  color: var(--ink2);
  margin-bottom: 4px;
}

.guide-note {
  background: #fffbeb;
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin: 10px 0;
  font-size: 14px;
  color: var(--ink2);
}

.guide-note strong { color: var(--amber); }

.guide-tip {
  background: rgba(24,95,165,.06);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin: 10px 0;
  font-size: 14px;
  color: var(--ink2);
}

.guide-tip strong { color: var(--blue); }

.guide-kbd {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.guide-prereqs {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0 0;
}

.guide-prereqs h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.guide-prereqs ul {
  margin: 0 0 0 18px;
}

.guide-prereqs ul li {
  font-size: 15px;
  color: var(--ink2);
  margin-bottom: 6px;
}

.guide-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.guide-support {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 40px 0 0;
  text-align: center;
}

.guide-support p {
  font-size: 15px;
  color: var(--ink2);
  margin: 0 0 8px;
}

@media (max-width: 640px) {
  .guide-step { gap: 12px; }
  .guide-step-num { width: 30px; height: 30px; font-size: 13px; }
}
