/*
Theme Name: VersionFixer
Theme URI: http://localhost/versionfixer/
Author: VersionFixer
Description: RTL WordPress theme for a creative file compatibility and version conversion SaaS.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: versionfixer
*/

:root {
  --ink: #171717;
  --muted: #66615b;
  --line: #dedbd2;
  --paper: #fbfaf6;
  --white: #ffffff;
  --teal: #087f73;
  --teal-dark: #075f57;
  --coral: #d95d39;
  --amber: #c98919;
  --green: #2b7a4b;
  --violet: #5c4a86;
  --shadow: 0 22px 60px rgba(23, 23, 23, 0.12);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(14px);
}

.launch-banner {
  border-bottom: 1px solid rgba(201, 137, 25, 0.28);
  background: #fff4d6;
  color: #3b2a09;
}

.launch-banner-inner {
  width: var(--container);
  min-height: 46px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
  text-align: center;
}

.launch-banner strong {
  flex: 0 0 auto;
  border: 1px solid rgba(201, 137, 25, 0.38);
  border-radius: 999px;
  background: #ffffff;
  padding: 3px 10px;
  color: #7a4e04;
  font-size: 12px;
  line-height: 1.4;
}

.launch-banner span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.header-inner {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  min-height: 40px;
  padding: 8px 8px;
  border-radius: var(--radius);
  color: #3d3934;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(8, 127, 115, 0.1);
  color: var(--teal-dark);
}

.locale-switcher {
  position: relative;
  flex: 0 0 auto;
}

.locale-trigger {
  min-width: 78px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.06);
}

.locale-trigger:hover,
.locale-trigger[aria-expanded="true"] {
  border-color: rgba(8, 127, 115, 0.35);
  color: var(--teal-dark);
}

.locale-flag {
  font-size: 20px;
  line-height: 1;
}

.locale-code {
  min-width: 26px;
  font-size: 13px;
  letter-spacing: 0;
}

.locale-menu {
  position: absolute;
  inset-block-start: calc(100% + 10px);
  inset-inline-end: 0;
  width: min(280px, calc(100vw - 28px));
  z-index: 40;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow);
}

.locale-menu[hidden] {
  display: none;
}

.locale-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 9px 10px;
  text-align: start;
  cursor: pointer;
}

.locale-option:hover,
.locale-option.is-active {
  border-color: rgba(8, 127, 115, 0.18);
  background: rgba(8, 127, 115, 0.08);
}

.locale-option strong,
.locale-option small {
  display: block;
}

.locale-option strong {
  font-size: 14px;
  line-height: 1.25;
}

.locale-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.header-cta,
.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.primary-button {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 127, 115, 0.22);
}

.header-cta:hover,
.primary-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.header-auth-action {
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(8, 127, 115, 0.24);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-auth-action:hover {
  transform: translateY(-1px);
}

.header-login-action {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 127, 115, 0.22);
}

.header-login-action:hover {
  background: var(--teal-dark);
}

.header-account-action {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.06);
}

.header-account-action:hover {
  border-color: rgba(8, 127, 115, 0.38);
  color: var(--teal-dark);
}

.header-account-menu {
  position: relative;
  flex: 0 0 auto;
}

.header-auth-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
}

.header-login-action .header-auth-icon {
  background: rgba(255, 255, 255, 0.18);
}

.header-account-action .header-auth-icon {
  background: rgba(8, 127, 115, 0.1);
  color: var(--teal-dark);
}

.header-auth-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.header-account-meta {
  display: block;
  min-width: 0;
  line-height: 1.15;
}

.header-account-meta strong,
.header-account-meta small {
  display: block;
  max-width: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-account-meta strong {
  font-size: 13px;
}

.header-account-meta small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.header-account-dropdown {
  position: absolute;
  inset-block-start: calc(100% + 10px);
  inset-inline-end: 0;
  width: min(330px, calc(100vw - 28px));
  z-index: 45;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow);
}

.header-account-dropdown[hidden] {
  display: none;
}

.header-account-user {
  border-bottom: 1px solid var(--line);
  padding: 3px 2px 11px;
}

.header-account-user strong,
.header-account-user small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-account-user strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.header-account-user small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.header-account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.header-account-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f3ec;
  padding: 10px;
}

.header-account-stats div.is-empty {
  border-color: rgba(217, 93, 57, 0.24);
  background: rgba(217, 93, 57, 0.08);
}

.header-account-stats span,
.header-account-stats strong {
  display: block;
}

.header-account-stats span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.header-account-stats strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.header-account-links {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}

.header-account-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  border-radius: 6px;
  color: var(--ink);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 850;
}

.header-account-links a:hover {
  background: rgba(8, 127, 115, 0.08);
  color: var(--teal-dark);
}

.header-account-links a.is-upgrade {
  background: var(--teal);
  color: var(--white);
}

.header-account-links a.is-upgrade:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.header-account-links a.is-logout {
  color: #a13f25;
}

.secondary-button {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: rgba(8, 127, 115, 0.35);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.08);
}

.converter-stage {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 127, 115, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(8, 127, 115, 0.06) 0 1px, transparent 1px 100%),
    #f6f3ec;
  background-size: 42px 42px;
}

.converter-stage-inner {
  width: min(1480px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 18px 0 22px;
}

.vf-home-converter .converter-stage-inner {
  padding: 14px 0 24px;
}

.seo-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 127, 115, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(8, 127, 115, 0.06) 0 1px, transparent 1px 100%),
    #f8f6ef;
  background-size: 42px 42px;
}

.seo-hero-inner {
  width: var(--container);
  min-height: 470px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 28px;
  padding: 54px 0;
}

.seo-kicker {
  width: fit-content;
  border: 1px solid rgba(8, 127, 115, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
}

.seo-fact-panel,
.seo-faq article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(23, 23, 23, 0.08);
}

.seo-fact-panel {
  display: grid;
}

.seo-fact-panel div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.seo-fact-panel div:last-child {
  border-bottom: 0;
}

.seo-fact-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.seo-fact-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  line-height: 1.35;
}

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

.seo-faq article {
  padding: 22px;
}

.seo-faq h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.seo-faq p {
  margin: 0;
  color: var(--muted);
}

.market-panel {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 14px;
  border: 1px solid rgba(8, 127, 115, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.market-panel span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.market-panel h3 {
  margin: 6px 0 8px;
  font-size: 22px;
}

.market-panel p {
  margin: 0;
  color: var(--muted);
}

.local-keywords {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
}

.local-keywords span {
  border: 1px solid rgba(8, 127, 115, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 13px;
}

.workspace {
  min-height: auto;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 127, 115, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(8, 127, 115, 0.07) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 42px 42px;
}

.workspace-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.copy-stack {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 6px 10px;
  border: 1px solid rgba(8, 127, 115, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 780px;
  margin-bottom: 22px;
  margin-inline: auto;
  color: #4e4943;
  font-size: 18px;
}

.quick-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.vf-trial-note {
  margin: 0 auto 14px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
}

.vf-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 22px;
}

.vf-trust-row span {
  border: 1px solid rgba(8, 127, 115, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #2f4f4a;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 850;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.metric {
  padding: 14px 16px;
  border-inline-start: 1px solid var(--line);
}

.metric:first-child {
  border-inline-start: 0;
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.tool-shell {
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tool-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #f4f1ea;
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.traffic span:nth-child(2) {
  background: var(--amber);
}

.traffic span:nth-child(3) {
  background: var(--green);
}

.tool-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.converter-form {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.upload-zone {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px dashed rgba(8, 127, 115, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 127, 115, 0.08), rgba(217, 93, 57, 0.06));
  cursor: pointer;
  text-align: center;
}

.upload-zone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.upload-zone strong {
  display: block;
  font-size: 18px;
}

.upload-zone span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.option-group-title {
  color: #3d3934;
  font-size: 13px;
  font-weight: 800;
}

.field select,
.field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 9px 11px;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.option-grid label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: #3f3a34;
  font-size: 13px;
  font-weight: 800;
}

.option-grid input {
  accent-color: var(--teal);
}

.estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(8, 127, 115, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 127, 115, 0.08);
}

.estimate-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.estimate-row strong {
  font-size: 20px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.notice {
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(43, 122, 75, 0.11);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.notice.is-visible {
  display: block;
}

.section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: #ffffff;
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1.16;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.price-card,
.seo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  padding: 18px;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(8, 127, 115, 0.1);
  color: var(--teal-dark);
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: rgba(217, 93, 57, 0.11);
  color: var(--coral);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(92, 74, 134, 0.11);
  color: var(--violet);
}

.service-card:nth-child(4) .service-icon {
  background: rgba(201, 137, 25, 0.14);
  color: var(--amber);
}

.service-card h3,
.price-card h3,
.seo-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.service-card p,
.price-card p,
.seo-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
  color: #514d47;
  font-size: 12px;
  font-weight: 800;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.workflow-step {
  min-height: 190px;
  padding: 22px;
  background: var(--paper);
}

.workflow-step strong {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  position: relative;
  padding: 20px;
}

.price-card.featured {
  border-color: rgba(8, 127, 115, 0.46);
  box-shadow: 0 18px 44px rgba(8, 127, 115, 0.14);
}

.badge {
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(8, 127, 115, 0.1);
  color: var(--teal-dark);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 12px 0 16px;
  font-size: 34px;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 13px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 8px;
  color: #3f3a34;
  font-size: 14px;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.vf-proof-section {
  background: linear-gradient(180deg, #f6f1ea 0%, #fbf8f2 100%);
}

.vf-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vf-proof-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

.vf-proof-card span {
  width: fit-content;
  margin-bottom: 16px;
  display: block;
  border-radius: 999px;
  background: rgba(217, 93, 57, 0.11);
  color: var(--coral);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.vf-proof-card h3 {
  margin-bottom: 9px;
  font-size: 22px;
}

.vf-proof-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.vf-support-block {
  margin-top: 34px;
}

.vf-support-heading {
  margin-bottom: 18px;
}

.vf-support-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.vf-support-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.vf-support-table th,
.vf-support-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: start;
  vertical-align: top;
}

.vf-support-table th {
  background: #f7f3ec;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vf-support-table td {
  color: #3f3a34;
  font-size: 14px;
  font-weight: 750;
}

.vf-support-table tr:last-child td {
  border-bottom: 0;
}

.vf-limit-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  border: 1px solid rgba(8, 127, 115, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 127, 115, 0.06);
  padding: 24px;
}

.vf-limit-band h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.vf-limit-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.vf-limit-band ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.vf-limit-band li {
  display: flex;
  gap: 9px;
  color: #3f3a34;
  font-weight: 800;
}

.vf-limit-band li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.seo-subheading {
  max-width: 760px;
  margin: 34px 0 18px;
}

.seo-subheading h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.seo-subheading p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.seo-card {
  min-height: 140px;
  padding: 18px;
}

.seo-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 14px;
}

.seo-detail-main,
.seo-detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.seo-detail-main {
  min-height: 250px;
  display: grid;
  align-content: start;
}

.seo-detail-main h2 {
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
}

.seo-detail-main p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.seo-detail-panel h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.seo-detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.seo-detail-panel li {
  display: flex;
  gap: 9px;
  color: #413c36;
  font-weight: 750;
}

.seo-detail-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.seo-query-panel {
  grid-column: 1 / -1;
}

.query-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.query-list span {
  direction: ltr;
  border: 1px solid rgba(8, 127, 115, 0.2);
  border-radius: 999px;
  background: rgba(8, 127, 115, 0.07);
  color: var(--teal-dark);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 850;
}

.slug {
  direction: ltr;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: #f0eee8;
  padding: 5px 8px;
  color: #514d47;
  font-size: 13px;
  font-weight: 800;
}

.api-band {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  padding: 28px;
}

.api-band p {
  color: rgba(255, 255, 255, 0.72);
}

.code-sample {
  direction: ltr;
  margin: 0;
  border-radius: var(--radius);
  background: #0b0b0b;
  padding: 18px;
  color: #e7e2d8;
  overflow-x: auto;
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer {
  background: #111111;
  color: var(--white);
}

.footer-inner {
  width: var(--container);
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.footer-links a:hover {
  color: #ffffff;
}

.visit-strip {
  border-top: 1px solid var(--line);
  background: #f4f1ea;
}

.visit-strip-inner {
  width: var(--container);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 0;
  text-align: center;
}

.visit-strip-inner span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.visit-strip-inner strong {
  min-width: 92px;
  border: 1px solid rgba(8, 127, 115, 0.28);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--teal-dark);
  padding: 8px 14px;
  font-size: 28px;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.08);
}

@media (max-width: 980px) {
  .workspace-inner,
  .api-band,
  .seo-hero-inner,
  .market-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-proof-grid,
  .vf-limit-band {
    grid-template-columns: 1fr;
  }

  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-detail-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 68px;
    gap: 8px;
  }

  .launch-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 0;
    text-align: start;
  }

  .launch-banner strong {
    width: fit-content;
  }

  .brand small {
    display: none;
  }

  .header-auth-action {
    min-height: 40px;
    padding: 7px 10px;
  }

  .header-account-action {
    width: 42px;
    padding: 6px;
  }

  .header-account-dropdown {
    inset-inline-end: 0;
    width: min(330px, calc(100vw - 28px));
  }

  .header-account-meta {
    display: none;
  }

  .header-auth-icon {
    width: 26px;
    height: 26px;
  }

  .workspace-inner {
    padding-top: 28px;
  }

  h1 {
    font-size: 38px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .metric-strip,
  .field-grid,
  .option-grid,
  .form-actions,
  .service-grid,
  .vf-proof-grid,
  .workflow,
  .pricing-grid,
  .seo-grid,
  .seo-faq {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:first-child {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }

  .metric:first-child {
    border-top: 0;
  }

  .section {
    padding: 54px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
