/* VCFtoCSV — Global Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #06080f;
  --surface:     #0c1220;
  --surface2:    #111927;
  --border:      #1e3352;
  --border-hi:   #2a4a70;
  --accent:      #06b6d4;
  --accent-dim:  #0891b2;
  --accent-glow: rgba(6,182,212,.14);
  --accent-glow-hi: rgba(6,182,212,.28);
  --text:        #e8f0f8;
  --text-sub:    #8ba3be;
  --text-dim:    #4a6080;
  --success:     #22c55e;
  --error:       #f87171;
  --warn:        #fbbf24;
  --mono: 'DM Mono', 'Courier New', monospace;
  --sans: 'Inter', system-ui, sans-serif;
  --display: 'Syne', var(--sans);
  --r: 10px;
  --r-sm: 6px;
  --r-lg: 16px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100dvh;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(6,182,212,.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(6,182,212,.03) 0%, transparent 60%),
    radial-gradient(circle, rgba(30,51,82,.6) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Typography ──────────────────────────────────────── */
.section-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
}
.section-sub {
  color: var(--text-sub);
  margin-bottom: 2.5rem;
  font-size: .95rem;
}
code {
  font-family: var(--mono);
  font-size: .88em;
  color: var(--accent);
  background: rgba(6,182,212,.08);
  padding: .1em .35em;
  border-radius: 3px;
}

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,8,15,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--text);
}
.logo-icon { font-size: 1.25rem; }
.logo-text {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--text-sub);
  font-size: .875rem;
  font-weight: 500;
  transition: color .15s;
}
.site-nav a:hover { color: var(--text); }
.site-nav .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: .4rem .9rem;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--accent-dim); color: var(--bg); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 4rem 0 2rem;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }

.badge-row {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .65rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--text-sub);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.hero-title .accent { color: var(--accent); }

.hero-sub {
  color: var(--text-sub);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.nudge-bar {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(6,182,212,.07);
  border: 1px solid rgba(6,182,212,.2);
  border-radius: 99px;
  padding: .35rem .9rem;
  font-size: .8rem;
  color: var(--text-sub);
  font-family: var(--mono);
  margin-bottom: .5rem;
}
.nudge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ── Tool Section ────────────────────────────────────── */
.tool-section {
  padding: 1.5rem 0 4rem;
}

/* License Bar */
.license-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .75rem 1rem;
  margin-bottom: 1rem;
}
.license-bar-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.license-label {
  font-size: .8rem;
  color: var(--text-dim);
  font-family: var(--mono);
  white-space: nowrap;
}
.license-bar input {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: .4rem .75rem;
  color: var(--text);
  font-family: var(--mono);
  font-size: .875rem;
  outline: none;
}
.license-bar input:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-glow); }
.license-status { font-size: .8rem; font-family: var(--mono); }
.license-status.ok { color: var(--success); }
.license-status.err { color: var(--error); }
.license-close {
  background: none; border: none;
  color: var(--text-dim); cursor: pointer;
  font-size: 1.2rem; line-height: 1;
  margin-left: auto;
}

/* Drop Zone */
.drop-zone {
  border: 2px dashed var(--border-hi);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.drop-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}
.drop-zone:hover::before, .drop-zone.drag-over::before { opacity: 1; }
.drop-zone.drag-over { background: rgba(6,182,212,.04); }

.drop-zone-inner { position: relative; z-index: 1; }
.drop-icon { margin-bottom: 1rem; display: inline-block; }
.drop-icon svg { filter: drop-shadow(0 0 8px var(--accent-glow-hi)); }
.drop-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.drop-sub { color: var(--text-sub); font-size: .9rem; margin-bottom: .5rem; }
.drop-meta { color: var(--text-dim); font-size: .8rem; font-family: var(--mono); }

.link-btn {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
  padding: 0;
}
.link-btn:hover { color: var(--accent-dim); }

/* Progress */
.progress-wrap {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  border-radius: 2px;
  width: 0%;
  transition: width .3s ease;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { opacity: 1; }
  50% { opacity: .7; }
  100% { opacity: 1; }
}
.progress-label { font-size: .8rem; color: var(--text-sub); white-space: nowrap; font-family: var(--mono); }

/* Alerts */
.alert {
  padding: .85rem 1rem;
  border-radius: var(--r);
  font-size: .875rem;
  margin: .75rem 0;
}
.alert-error {
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.25);
  color: #fca5a5;
}

/* Result panel */
.result-panel {
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: .75rem;
}
.result-meta { display: flex; align-items: center; gap: .75rem; }
.result-count {
  font-family: var(--mono);
  font-size: .95rem;
  color: var(--accent);
  font-weight: 500;
}
.result-filename { font-size: .8rem; color: var(--text-dim); font-family: var(--mono); }
.result-actions { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }

/* Table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 380px;
  overflow-y: auto;
}
.contacts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
  font-family: var(--mono);
  min-width: 700px;
}
.contacts-table th {
  position: sticky;
  top: 0;
  background: #0a1428;
  color: var(--accent);
  text-align: left;
  padding: .6rem .85rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  white-space: nowrap;
}
.contacts-table td {
  padding: .55rem .85rem;
  border-bottom: 1px solid rgba(30,51,82,.5);
  color: var(--text-sub);
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contacts-table tr:hover td { background: rgba(6,182,212,.03); color: var(--text); }
.contacts-table tbody tr:last-child td { border-bottom: none; }

.table-note { padding: .6rem 1.25rem; font-size: .75rem; color: var(--text-dim); font-family: var(--mono); }

/* Free notice */
.free-notice {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .85rem;
  color: var(--text-sub);
  margin-top: .75rem;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: .4rem .75rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-1px); }

.btn-accent {
  background: rgba(6,182,212,.12);
  color: var(--accent);
  border: 1px solid rgba(6,182,212,.25);
}
.btn-accent:hover { background: rgba(6,182,212,.2); }

.btn-ghost {
  background: var(--surface2);
  color: var(--text-sub);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hi); }

.btn-ghost-plan {
  background: transparent;
  color: var(--text-sub);
  border: 1px solid var(--border);
  width: 100%;
  justify-content: center;
  padding: .75rem;
}
.btn-ghost-plan:hover { border-color: var(--border-hi); color: var(--text); }

.badge-paid {
  font-size: .65rem;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3);
  color: var(--accent);
  padding: .1rem .3rem;
  border-radius: 3px;
  font-family: var(--mono);
  margin-left: .25rem;
}

/* ── How It Works ────────────────────────────────────── */
.how-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color .2s;
}
.step:hover { border-color: var(--border-hi); }
.step-num {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--accent);
  margin-bottom: .75rem;
  font-weight: 500;
}
.step h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.step p { color: var(--text-sub); font-size: .875rem; line-height: 1.6; }

/* ── Comparison ──────────────────────────────────────── */
.comparison-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.compare-table-wrap { overflow-x: auto; margin-top: 2rem; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  min-width: 520px;
}
.compare-table th, .compare-table td {
  padding: .75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--text-sub); }
.compare-table th { background: var(--surface); color: var(--text-dim); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.compare-table .col-us { color: var(--accent); font-weight: 600; }
.compare-table th.col-us { background: rgba(6,182,212,.06); color: var(--accent); }
.compare-table tbody tr:hover td { background: var(--surface); }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color .2s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { border-color: var(--border-hi); }
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}
.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .65rem;
  border-radius: 99px;
  white-space: nowrap;
  font-family: var(--mono);
}
.plan-name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.plan-price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.plan-period { font-size: .9rem; color: var(--text-sub); font-weight: 400; }
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}
.plan-features li {
  font-size: .875rem;
  color: var(--text-sub);
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .dim { color: var(--text-dim); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.faq-list { max-width: 720px; margin-top: 2rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-hi); }
.faq-item[open] { border-color: var(--border-hi); }
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 1.25rem 1rem;
  color: var(--text-sub);
  font-size: .875rem;
  line-height: 1.7;
}

/* ── Blog Teaser ─────────────────────────────────────── */
.blog-teaser {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.blog-tag {
  font-size: .7rem;
  font-family: var(--mono);
  color: var(--accent);
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.2);
  padding: .1rem .45rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: .75rem;
}
.blog-card h3 {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .5rem;
}
.blog-card p { color: var(--text-sub); font-size: .82rem; line-height: 1.6; }

/* ── Modal ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,8,15,.85);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute;
  top: .75rem; right: 1rem;
  background: none; border: none;
  color: var(--text-dim); cursor: pointer;
  font-size: 1.4rem; line-height: 1;
}
.modal h2 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.modal-sub { color: var(--text-sub); font-size: .875rem; margin-bottom: 1.5rem; }
.modal-plans { display: flex; gap: .75rem; margin-bottom: 1.25rem; }
.modal-plan-btn {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .85rem .75rem;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s;
  color: var(--text-sub);
}
.modal-plan-btn strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: .2rem; }
.modal-plan-btn span { font-size: .75rem; font-family: var(--mono); }
.modal-plan-btn.active { border-color: var(--accent); color: var(--accent); }
.modal-plan-btn.active strong { color: var(--text); }
.modal-email-label { display: block; font-size: .8rem; color: var(--text-dim); margin-bottom: .4rem; }
.modal-email-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: .65rem .9rem;
  color: var(--text);
  font-size: .875rem;
  outline: none;
  margin-bottom: 1rem;
}
.modal-email-input:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-glow); }
.modal-legal { text-align: center; font-size: .75rem; color: var(--text-dim); margin-top: .75rem; }

/* ── Rating widget ───────────────────────────────────── */
.rating-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  padding: .85rem 1.1rem;
  z-index: 90;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: slideUp .3s ease;
}
.rating-prompt { font-size: .8rem; color: var(--text-sub); margin-bottom: .5rem; }
.stars { display: flex; gap: .35rem; }
.star {
  background: none; border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--text-dim);
  transition: color .1s, transform .1s;
  line-height: 1;
  padding: 0;
}
.star:hover, .star.active { color: var(--warn); transform: scale(1.15); }
.rating-thanks { font-size: .85rem; color: var(--success); text-align: center; padding: .2rem 0; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-brand .logo-text { font-size: .95rem; display: block; margin-bottom: .4rem; }
.footer-brand p { font-size: .8rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: .875rem; transition: color .15s; }
.footer-links a:hover { color: var(--text-sub); }
.footer-legal p { font-size: .75rem; }

/* ── Blog article layout ─────────────────────────────── */
.blog-article { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.blog-article .back-link { display:inline-block; color: var(--text-dim); text-decoration:none; font-size:.875rem; margin-bottom:2rem; }
.blog-article .back-link:hover { color: var(--text-sub); }
.blog-article h1 { font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight:800; line-height:1.15; margin-bottom:.5rem; }
.blog-article .post-meta { color: var(--text-dim); font-size:.875rem; margin-bottom:2rem; font-family: var(--mono); }
.blog-article h2 { font-family: var(--display); font-size:1.3rem; font-weight:700; margin:2.5rem 0 .75rem; }
.blog-article p { line-height:1.75; margin-bottom:1.25rem; color: var(--text-sub); }
.blog-article ul, .blog-article ol { line-height:1.75; padding-left:1.5rem; margin-bottom:1.25rem; color: var(--text-sub); }
.blog-article li { margin-bottom:.5rem; }
.blog-article strong { color: var(--text); }
.blog-article .blog-cta { background: var(--surface); border:1px solid var(--accent); border-radius:var(--r-lg); padding:1.5rem; margin:2.5rem 0; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.blog-article .blog-cta strong { display:block; font-size:1rem; margin-bottom:.25rem; color: var(--text); }
.blog-article .blog-cta small { color: var(--text-dim); font-size:.85rem; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 640px) {
  .result-header { flex-direction: column; align-items: flex-start; }
  .result-actions { flex-direction: column; width: 100%; }
  .result-actions .btn { width: 100%; justify-content: center; }
  .modal-plans { flex-direction: column; }
  .hero { padding: 2.5rem 0 1.5rem; }
  .rating-widget { bottom: 1rem; right: 1rem; }
  .pricing-grid, .steps-grid, .blog-grid { grid-template-columns: 1fr; }
  .site-nav .nav-cta { padding: .35rem .7rem; font-size: .8rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
}
