/* =========================================================
   PixScan Landing Page — Stylesheet
   No external fonts/icons/analytics are loaded — everything
   renders with system fonts and inline SVG to keep the page
   fast, private, and dependency-free.
   ========================================================= */

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-accent: #10b981;
  --color-accent-light: #34d399;

  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(37, 99, 235, 0.18);

  --container: 1160px;
  --header-h: 72px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0f172a;
    --color-surface: #1e293b;
    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-border: #334155;
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none !important;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.28);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(15, 23, 42, 0.75);
  }
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--color-text);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.brand:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 72px 0 64px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 560px;
  background: radial-gradient(60% 60% at 30% 30%, rgba(37, 99, 235, 0.16), transparent 70%),
    radial-gradient(50% 50% at 80% 20%, rgba(16, 185, 129, 0.14), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero-copy .highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p.lead {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.play-badge img {
  height: 54px;
  width: auto;
  border-radius: 8px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trust-chips li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ---------- Hero visual (CSS phone mockup) ---------- */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.phone-frame {
  position: relative;
  width: 250px;
  height: 460px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-surface);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-card {
  position: relative;
  width: 78%;
  height: 62%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}

.doc-line {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: var(--color-border);
}

.scan-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  box-shadow: 0 0 12px 2px rgba(16, 185, 129, 0.6);
  animation: scanMove 2.6s ease-in-out infinite;
}

@keyframes scanMove {
  0% {
    top: 6%;
  }
  50% {
    top: 92%;
  }
  100% {
    top: 6%;
  }
}

.corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--color-primary);
}

.corner-tl {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
  border-radius: 4px 0 0 0;
}

.corner-tr {
  top: 6px;
  right: 6px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 4px 0 0;
}

.corner-bl {
  bottom: 6px;
  left: 6px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 4px;
}

.corner-br {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 4px 0;
}

.scan-toast {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-md);
  animation: floatChip 3.6s ease-in-out infinite;
}

.chip-1 {
  top: 16%;
  left: -6px;
  animation-delay: 0.2s;
}

.chip-2 {
  bottom: 20%;
  right: -14px;
  animation-delay: 1s;
}

@keyframes floatChip {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------- Logos / partner strip ---------- */

.badge-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
}

.badge-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-muted);
}

.badge-item svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ---------- Features ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 22px 24px;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.step-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.step-arrow {
  display: none;
}

/* ---------- Privacy section ---------- */

.privacy-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.privacy-copy h2 {
  font-size: clamp(26px, 3.6vw, 34px);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.privacy-copy p {
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0 0 16px;
}

.privacy-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.privacy-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.privacy-list strong {
  display: block;
  margin-bottom: 2px;
}

.privacy-list span {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* ---------- Download / QR ---------- */

.download-section {
  text-align: center;
}

.download-card {
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(155deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.download-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.4vw, 32px);
}

.download-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.download-actions .play-badge img {
  height: 58px;
}

.qr-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.qr-wrap img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.qr-wrap .qr-text {
  text-align: left;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 220px;
}

.qr-wrap .qr-text a {
  color: #fff;
  font-weight: 700;
}

.package-id {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 15px;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  text-align: center;
}

.cta-banner-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
}

.cta-banner-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.4vw, 32px);
}

.cta-banner-inner p {
  color: var(--color-text-muted);
  margin: 0 0 28px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 14px;
  max-width: 260px;
  margin: 0 0 18px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: var(--color-text-muted);
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: var(--color-text);
  font-size: 14.5px;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-text-muted);
}

/* ---------- Legal pages ---------- */

.legal-hero {
  padding: 56px 0 20px;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 10px;
}

.legal-hero p {
  color: var(--color-text-muted);
  margin: 0;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 0 88px;
}

.legal-content h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 17px;
  margin: 22px 0 10px;
}

.legal-content p {
  color: var(--color-text-muted);
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  color: var(--color-text-muted);
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--color-text);
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 32px 0;
}

/* ---------- Blog ---------- */

.blog-hero {
  padding: 56px 0 8px;
  text-align: center;
}

.blog-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 40px 0 88px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.blog-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.blog-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin: 0 0 14px;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 13px;
  color: var(--color-text-muted);
}

.article-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.article-eyebrow a {
  color: var(--color-primary);
  font-weight: 600;
}

.article-cta {
  margin: 44px 0 32px;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.article-cta h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.article-cta p {
  margin: 0 0 18px;
}

/* ---------- 404-style empty states ---------- */

.empty-state {
  text-align: center;
  padding: 120px 24px;
}

.empty-state h1 {
  font-size: 64px;
  margin: 0 0 12px;
  color: var(--color-primary);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .trust-chips {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: 360px;
  }

  .phone-frame {
    width: 210px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-cta .play-badge {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .qr-wrap {
    flex-direction: column;
    text-align: center;
  }

  .qr-wrap .qr-text {
    text-align: center;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}
