* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #fff; color: #1a1a2e; line-height: 1.7; }

/* Header */
.header { background: #fff; padding: 20px 0; position: relative; top: 0; z-index: 100; }
.header-sticky { position: fixed; left: 0; right: 0; top: 0; z-index: 100; background: #fff; padding: 20px 0; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transform: translateY(-100%); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; pointer-events: none; }
.header-sticky.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.header-inner { max-width: 1900px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; }
.logo { display: flex; align-items: center; gap: 16px; text-decoration: none; margin-right: auto; }
.logo-name { font-size: 1.9rem; font-weight: 800; color: #4f46e5; letter-spacing: 0.04em; }
.logo-divider { width: 1.5px; height: 32px; background: #d1d5db; flex-shrink: 0; }
.logo-slogan { font-size: 0.92rem; color: #1a1a2e; font-weight: 400; }
nav { display: flex; align-items: center; gap: 36px; }
nav a { color: #1a1a2e; text-decoration: none; font-size: 1rem; font-weight: 400; transition: color 0.2s; }
nav a:hover { color: #4f46e5; }
.header-cta { padding: 10px 26px; background: #4f46e5; color: #fff; text-decoration: none; border-radius: 50px; font-size: 0.95rem; font-weight: 600; border: none; transition: background 0.2s; white-space: nowrap; margin-left: 36px; }
.header-cta:hover { background: #4338ca; }

/* Hero */
.hero { background: #fff; padding: 100px 32px 72px; text-align: center; }
.hero h1 { font-size: 4rem; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.15; }
.hero-subtitle { font-size: 1.35rem; color: #4b5563; max-width: 640px; margin: 0 auto 48px; line-height: 1.5; font-weight: 400; }
.check-form { display: flex; align-items: center; max-width: 640px; margin: 0 auto; border: 2px solid #1a1a2e; border-radius: 50px; padding: 0 0 0 32px; background: #fff; }
.check-form input { flex: 1; padding: 18px 16px 18px 0; border: none; font-size: 1.1rem; outline: none; color: #1a1a2e; background: transparent; }
.check-form input::placeholder { color: #b0b0be; }
.check-form button { padding: 18px 42px; border: none; border-radius: 50px; background: #4f46e5; color: #fff; font-size: 1.1rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; margin: -2px -2px -2px 0; }
.check-form button:hover { background: #4338ca; }
.check-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.check-form button { -webkit-tap-highlight-color: transparent; }
.form-hint { color: #6b7280; font-size: 0.9rem; text-align: center; margin-top: 16px; }
.form-error { color: #dc2626; font-size: 0.85rem; text-align: center; margin-top: 10px; display: none; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }

/* Main content */
.main { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Result */
.result { max-width: 1200px; margin: 0 auto; padding: 24px 32px 56px; display: none; }
.result.visible { display: block; }
.result-title { font-size: 2rem; font-weight: 700; margin-bottom: 32px; color: #1a1a2e; text-align: center; }
.result-items { display: flex; gap: 24px; }
.result-column { flex: 1; min-width: 0; }
.result-column-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid; }
.col-bad .result-column-title { color: #dc2626; border-color: #dc2626; }
.col-attention .result-column-title { color: #7c3aed; border-color: #7c3aed; }
.col-good .result-column-title { color: #16a34a; border-color: #16a34a; }
.result-loader { padding: 32px 0; max-width: 700px; margin: 0 auto; }
.progress-track { width: 100%; height: 6px; background: #e8e8ef; border-radius: 3px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: #4f46e5; border-radius: 3px; width: 0%; transition: width 0.3s ease; }
.result-loader-text { color: #6b7280; font-size: 0.9rem; text-align: center; margin-top: 12px; }
.result-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; margin-bottom: 6px; border-radius: 10px; background: #fff; border: 1px solid #e8e8ef; }
.result-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.dot-error { background: #dc2626; }
.dot-warning { background: #ea580c; }
.dot-ok { background: #16a34a; }
.dot-info { background: #7c3aed; }
.dot-excluded { background: #9ca3af; }
.col-excluded .result-column-title { color: #6b7280; border-color: #d1d5db; }
.col-excluded .result-message { color: #6b7280; }
.col-excluded .result-hint { color: #9ca3af; }
.result-text { flex: 1; }
.result-message { font-size: 0.92rem; font-weight: 500; color: #1a1a2e; overflow-wrap: break-word; word-break: break-word; }
.result-sub-item { margin-top: 6px; padding-left: 0; }
.result-sub-item .result-message { font-weight: 400; }
.result-hint { font-size: 0.82rem; margin-top: 3px; overflow-wrap: break-word; word-break: break-word; }
.result-redirect-chain { background: #f5f3ff; border: 1px solid #7c3aed; border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; }
.result-redirect-title { font-weight: 600; color: #7c3aed; margin-bottom: 8px; font-size: 0.9rem; }
.result-redirect-hop { font-size: 0.85rem; color: #5b21b6; margin-bottom: 4px; overflow-wrap: break-word; word-break: break-word; }
.result-redirect-code { display: inline-block; background: #7c3aed; color: #fff; font-size: 0.75rem; font-weight: 700; padding: 1px 6px; border-radius: 4px; margin: 0 4px; }
.result-redirect-note { font-size: 0.85rem; color: #6d28d9; margin-top: 8px; font-style: italic; }
.result-hint-toggle { display: block; margin-top: 6px; padding: 2px 0; background: none; border: none; color: #4f46e5; font-size: 0.82rem; font-weight: 600; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.result-hint-toggle:hover { text-decoration: underline; }
.col-bad .result-message { color: #dc2626; }
.col-bad .result-hint { color: #ef4444; }
.col-attention .result-message { color: #7c3aed; }
.col-attention .result-hint { color: #7c3aed; }
.col-good .result-message { color: #16a34a; }
.result-collapsible-header { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.result-collapse-arrow { font-size: 0.7em; margin-left: 8px; }
.col-good .result-hint { color: #16a34a; }

/* Result tips & actions */
.result-tips { display: none; margin-top: 40px; }
.result-tips p { font-size: 1.05rem; color: #4b5563; line-height: 1.7; margin-bottom: 8px; }
.result-tips p:last-child { margin-bottom: 0; }
.result-tips strong { color: #1a1a2e; }
.result-actions { display: none; gap: 12px; margin-top: 40px; margin-bottom: 32px; }
.result-action-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 20px; border-radius: 12px; font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; flex: 1; justify-content: center; color: #fff; }
.result-action-pdf { background: #dc2626; }
.result-action-pdf:hover { background: #b91c1c; }
.result-action-pdf:disabled { opacity: 0.5; cursor: not-allowed; }
.result-action-audit { background: #4f46e5; }
.result-action-audit:hover { background: #4338ca; }
.result-action-fix { background: #16a34a; }
.result-action-fix:hover { background: #15803d; }

/* CTA (check pages) */
.cta-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cta-buttons .cta-btn { min-width: 200px; justify-content: center; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: #fff; color: #4f46e5; text-decoration: none; border-radius: 50px; font-size: 1rem; font-weight: 700; transition: all 0.2s; white-space: nowrap; }
.cta-btn:hover { background: #eef2ff; }
.cta-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.cta-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Other checks */
.other-checks { max-width: 1200px; margin: 0 auto 56px; padding-top: 56px; border-top: 1px solid #e8e8ef; }
.other-checks h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; text-align: center; }
.other-checks-subtitle { text-align: center; color: #6b7280; font-size: 1.2rem; margin-bottom: 28px; }
.checks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.checks-grid a { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid #e8e8ef; border-radius: 12px; color: #4b5563; text-decoration: none; font-size: 1.05rem; font-weight: 500; transition: all 0.2s; }
.checks-grid a:hover { border-color: #4f46e5; color: #4f46e5; background: #faf9ff; }
.check-icon { width: 36px; height: 36px; border-radius: 10px; background: #f3f4f6; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }

/* SEO content sections (check pages) */
.section-seo-content { background: #f8f9fa; padding: 72px 0; }
.seo-text { max-width: 1200px; }
.seo-text h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 10px; color: #1a1a2e; }
.seo-text p { color: #4b5563; margin-bottom: 14px; font-size: 1.05rem; line-height: 1.7; }
.seo-text ul { margin: 8px 0 16px 20px; color: #4b5563; }
.seo-text li { margin-bottom: 8px; font-size: 1.05rem; line-height: 1.7; }
.seo-text code { background: #f3f4f6; padding: 3px 8px; border-radius: 5px; font-size: 0.88rem; }

/* SEO content legacy (check pages using .seo-content directly) */
.seo-content { max-width: 1200px; margin: 48px auto; }
.seo-content h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; color: #1a1a2e; }
.seo-content h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 10px; color: #1a1a2e; }
.seo-content p { color: #4b5563; margin-bottom: 14px; font-size: 1.05rem; line-height: 1.7; }
.seo-content ul { margin: 8px 0 16px 20px; color: #4b5563; }
.seo-content li { margin-bottom: 8px; font-size: 1.05rem; line-height: 1.7; }
.seo-content code { background: #f3f4f6; padding: 3px 8px; border-radius: 5px; font-size: 0.88rem; }

/* Landing sections */
.section-audit { background: #f8f9fa; padding: 72px 0; }
.section-faq { background: #f8f9fa; padding: 72px 0; }
.section-faq-white { background: #fff; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-title { font-size: 2.2rem; font-weight: 700; color: #1a1a2e; text-align: center; margin-bottom: 40px; }
.section-title:has(+ .section-subtitle) { margin-bottom: 12px; }
.section-subtitle { font-size: 1.2rem; color: #4b5563; text-align: center; max-width: 700px; margin: 0 auto 48px; line-height: 1.6; }
#vse-proverki { scroll-margin-top: 80px; }

/* About section (main page) */
.section-checks { background: #f8f9fa; padding: 72px 0; }
.section-about { background: #fff; padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-card { background: #fff; padding: 28px; border-radius: 14px; border: 1px solid #e8e8ef; transition: border-color 0.2s, box-shadow 0.2s; }
.about-card:hover { border-color: #e8e8ef; }
.about-card-icon { width: 48px; height: 48px; background: #eef2ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-card h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.about-card p { font-size: 0.95rem; color: #6b7280; line-height: 1.5; }

/* Audit cards */
.audit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.audit-card { background: #fff; padding: 28px; border-radius: 14px; border: 1px solid #e8e8ef; transition: border-color 0.2s, box-shadow 0.2s; }
.audit-card-icon { width: 48px; height: 48px; background: #eef2ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.audit-card h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.audit-card p { font-size: 0.95rem; color: #6b7280; line-height: 1.5; }


/* Audit buttons */
.audit-buttons-text { text-align: center; font-size: 1.1rem; color: #4b5563; margin-bottom: 16px; }
.audit-buttons { display: flex; gap: 12px; justify-content: center; }
.audit-btn { min-width: 200px; justify-content: center; background: #4f46e5; color: #fff; }
.audit-btn:hover { background: #4338ca; color: #fff; }
.audit-btn-outline { background: transparent; color: #4f46e5; border: 2px solid #4f46e5; }
.audit-btn-outline:hover { background: #f0eeff; color: #4f46e5; }

/* FAQ */
.faq { max-width: 1200px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e8ef; -webkit-tap-highlight-color: transparent; }
.faq-q { padding: 22px 0; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #1a1a2e; font-size: 1.15rem; transition: color 0.2s; -webkit-tap-highlight-color: transparent; }
@media (hover: hover) { .faq-q:hover { color: #4f46e5; } }
.faq-arrow { font-size: 0.6rem; transition: transform 0.2s; color: #9ca3af; }
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-a { display: none; padding: 0 0 22px; color: #4b5563; font-size: 1.05rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-a a { color: #4f46e5; }

/* Single column result (main page) */
.result-section { margin-bottom: 24px; }

/* All checks result (main page) */
.all-group { margin-bottom: 24px; }
.all-group-title { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid #e8e8ef; }
.all-group-bad .all-group-title { border-color: #dc2626; }
.all-group-attention .all-group-title { border-color: #7c3aed; }
.all-group-ok .all-group-title { border-color: #16a34a; }
.all-check-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; margin-bottom: 4px; border-radius: 10px; background: #fff; border: 1px solid #e8e8ef; }
.all-check-text { flex: 1; }
.all-check-name { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.all-check-name a { color: #4f46e5; text-decoration: none; }
.all-check-name a:hover { text-decoration: underline; }
.all-check-message { font-size: 0.85rem; color: #6b7280; }

/* Service sections */
.section-cards { background: #f8f9fa; padding: 72px 0; }
.section-steps { background: #fff; padding: 72px 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; padding: 28px; border: 1px solid #e8e8ef; border-radius: 14px; transition: border-color 0.2s, box-shadow 0.2s; }
.section-cards .service-card { background: #fff; }
.service-card-icon { width: 48px; height: 48px; background: #eef2ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; color: #6b7280; line-height: 1.6; }
.service-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.service-step { display: flex; gap: 16px; align-items: flex-start; }
.service-step-num { width: 44px; height: 44px; background: #4f46e5; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 700; flex-shrink: 0; }
.service-step-text h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.service-step-text p { font-size: 0.95rem; color: #6b7280; line-height: 1.5; }

/* Footer */
.footer { background: #1a1a2e; padding: 56px 0 0; }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.footer-brand { display: flex; align-items: center; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.footer-logo { font-size: 1.5rem; font-weight: 800; color: #4f46e5; letter-spacing: 0.04em; text-decoration: none; flex-shrink: 0; }
.footer-brand-links { display: flex; gap: 24px; }
.footer-brand-links a { color: #d1d5db; text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-brand-links a:hover { color: #fff; }
.footer-socials { display: flex; align-items: center; gap: 12px; }
.footer-social { color: #9ca3af; transition: color 0.2s; }
.footer-social:hover { color: #fff; }
.footer-social svg { display: block; }
.footer-checks { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-bottom: 32px; }
.footer-check-col { display: flex; flex-direction: column; gap: 8px; }
.footer-check-col a { color: #9ca3af; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-check-col a:hover { color: #fff; }
.footer-col-title { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-copy { color: #6b7280; font-size: 0.82rem; }

/* Mobile menu */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 16px; -webkit-tap-highlight-color: transparent; }
.burger svg { display: block; }
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; background: #f5f3ff; flex-direction: column; }
.mobile-nav-overlay { display: none; }
.mobile-nav-panel { flex: 1; display: flex; flex-direction: column; padding: 0; gap: 0; }
.mobile-nav-header { display: flex; align-items: center; padding: 14px 16px; }
.mobile-nav-logo { display: flex; flex-direction: column; gap: 0; margin-right: auto; }
.mobile-nav-logo-name { font-size: 1.4rem; font-weight: 800; color: #4f46e5; letter-spacing: 0.04em; line-height: 1.2; }
.mobile-nav-logo-slogan { font-size: 0.75rem; color: #1a1a2e; line-height: 1.2; }
.mobile-nav-close { background: none; border: none; cursor: pointer; padding: 8px; -webkit-tap-highlight-color: transparent; }
.mobile-nav-close svg { display: block; }
.mobile-nav-links { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mobile-nav-links a { display: block; padding: 16px 0; color: #1a1a2e; text-decoration: none; font-size: 1.3rem; font-weight: 600; text-align: center; -webkit-tap-highlight-color: transparent; }
@media (hover: hover) { .mobile-nav-links a:hover { color: #4f46e5; } }
.mobile-nav-links a.mobile-nav-cta { padding: 16px 56px; background: #4f46e5; color: #fff; border-radius: 50px; font-size: 1.1rem; margin-top: 24px; }
@media (hover: hover) { .mobile-nav-links a.mobile-nav-cta:hover { background: #4338ca; } }
.mobile-nav-contacts { padding: 20px 0 32px; display: flex; justify-content: center; align-items: center; gap: 20px; }
.mobile-nav-contact { text-decoration: none; -webkit-tap-highlight-color: transparent; }
.mobile-nav-contact-tg { color: #2AABEE; }
.mobile-nav-contact-email { color: #4f46e5; }
@media (hover: hover) { .mobile-nav-contact:hover { color: #4f46e5; } }
.mobile-nav-contact svg { display: block; }
.mobile-nav.open { display: flex; }

/* Responsive */
@media (max-width: 1220px) {
  .footer-checks { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1300px) {
  .logo { flex-direction: column; gap: 0; align-items: flex-start; }
  .logo-divider { display: none; }
  .logo-name { font-size: 1.5rem; line-height: 1.2; }
  .logo-slogan { font-size: 0.75rem; line-height: 1.2; }
}
@media (max-width: 1024px) {
  .header-inner { padding: 0 24px; }
  .header-cta { display: none; }
  nav { display: none; }
  .burger { display: block; }
  .hero h1 { font-size: 3rem; }
  .audit-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-steps { grid-template-columns: 1fr 1fr; }
  .footer-brand { flex-wrap: wrap; gap: 16px; }
  .footer-socials { margin-left: 0; }
  .footer-checks { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  /* 1. Logo: slogan under logo name */
  .logo { flex-direction: column; gap: 0; align-items: flex-start; }
  .logo-divider { display: none; }
  .logo-name { font-size: 1.4rem; line-height: 1.2; }
  .logo-slogan { font-size: 0.75rem; line-height: 1.2; }
  .header-inner { padding: 0 16px; }
  .header { padding: 14px 0; }
  .header-sticky { padding: 14px 0; }

  /* 3. Hero: smaller text, inline form */
  .hero h1 { font-size: 1.6rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 32px; }
  .hero { padding: 36px 16px 40px; }
  .check-form { flex-direction: row; border-radius: 50px; padding: 0 0 0 14px; }
  .check-form input { padding: 12px 4px 12px 0; font-size: 0.9rem; min-width: 0; }
  .check-form button { width: 56px; height: 40px; min-width: 56px; margin: 3px; padding: 0; font-size: 0; border-radius: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .check-form button::after { content: '↵'; font-size: 1.1rem; }
  .hero-buttons { justify-content: center; }
  .hero-buttons .cta-btn { justify-content: center; }
  .hero-buttons .audit-btn { justify-content: center; }

  /* 4. Section titles smaller */
  .section-title { font-size: 1.6rem; line-height: 1.3; margin-bottom: 32px; }
  .section-title:has(+ .section-subtitle) { margin-bottom: 8px; }
  .section-subtitle { font-size: 1rem; margin-bottom: 32px; }
  .other-checks h2 { font-size: 1.6rem; }
  .other-checks-subtitle { font-size: 1rem; }

  /* 5. Checks grid: 2 per row, icons on top */
  .checks-grid { grid-template-columns: 1fr 1fr; }
  .checks-grid a { flex-direction: column; text-align: center; padding: 14px 10px; font-size: 0.82rem; gap: 6px; }
  .check-icon { width: 32px; height: 32px; font-size: 0.95rem; }

  /* 6. About cards: 1 per row, icon + title inline via grid */
  .about-grid { grid-template-columns: 1fr; }
  .about-card { padding: 16px 20px; display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; gap: 0 12px; }
  .about-card-icon { width: 36px; height: 36px; margin-bottom: 0; grid-row: 1; grid-column: 1; align-self: center; }
  .about-card h3 { font-size: 1rem; margin-bottom: 0; grid-row: 1; grid-column: 2; align-self: center; }
  .about-card p { font-size: 0.9rem; margin-top: 6px; grid-row: 2; grid-column: 1 / -1; }

  /* 7. FAQ: gap between question text and arrow */
  .faq-q { gap: 16px; }
  .faq-arrow { flex-shrink: 0; }

  /* Results mobile */
  .result-title { font-size: 1.3rem; line-height: 1.3; margin-bottom: 20px; }
  .result { padding-top: 16px; }
  .result-items { flex-direction: column; }
  .result-action-btn { padding: 14px 16px; font-size: 0.9rem; }

  /* SEO text mobile */
  .seo-text h3 { font-size: 1.05rem; }
  .seo-text p, .seo-text li { font-size: 0.95rem; }

  /* Form hint mobile */
  .form-hint { font-size: 0.8rem; }
  .result-actions { flex-direction: column; margin-bottom: 0; }
  .result { padding-bottom: 48px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-btn { text-align: center; }
  .section-seo-content, .section-checks { padding: 40px 0; }
  .section-faq { padding: 40px 0; }
  .result-tips p { font-size: 0.95rem; }
  .footer-checks { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { flex-direction: column; align-items: flex-start; }
  .footer-brand-links { flex-direction: column; gap: 8px; }
  .audit-grid { grid-template-columns: 1fr; }
  .audit-card { display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; gap: 0 12px; padding: 16px 20px; }
  .audit-card-icon { width: 36px; height: 36px; margin-bottom: 0; grid-row: 1; grid-column: 1; align-self: center; }
  .audit-card h3 { margin-bottom: 0; grid-row: 1; grid-column: 2; align-self: center; }
  .audit-card p { margin-top: 6px; grid-row: 2; grid-column: 1 / -1; }
  .audit-buttons { flex-direction: column; }
  .audit-btn { text-align: center; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; gap: 0 12px; padding: 16px 20px; }
  .service-card-icon { width: 36px; height: 36px; margin-bottom: 0; grid-row: 1; grid-column: 1; align-self: center; }
  .service-card h3 { margin-bottom: 0; grid-row: 1; grid-column: 2; align-self: center; }
  .service-card p { margin-top: 6px; grid-row: 2; grid-column: 1 / -1; font-size: 0.9rem; }
  .service-steps { grid-template-columns: 1fr; }
  .section-cards, .section-steps { padding: 40px 0; }
}
@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .cta-btn, .hero-buttons .audit-btn { justify-content: center; width: 100%; max-width: 440px; }
}
@media (max-width: 480px) {
  .footer-checks { grid-template-columns: 1fr; }
}

/* Legal / text content page */
.legal-content { max-width: 820px; margin: 0 auto; color: #1a1a2e; font-size: 16px; line-height: 1.7; }
.legal-content .legal-updated { color: #6b7280; font-size: 14px; margin-bottom: 32px; }
.legal-content h2 { font-size: 22px; margin: 36px 0 12px; color: #1a1a2e; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: #4f46e5; text-decoration: underline; }
.legal-content a:hover { color: #3730a3; }
.legal-content code { background: #f3f4f6; padding: 2px 6px; border-radius: 4px; font-size: 14px; }

.footer-legal { margin-top: 12px; font-size: 13px; }
.footer-legal a { color: #9ca3af; text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* Cookie banner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; background: #1a1a2e; color: #fff; padding: 16px 20px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.25); display: flex; align-items: center; gap: 16px; z-index: 1000; font-size: 14px; line-height: 1.5; }
.cookie-banner-text { flex: 1; }
.cookie-banner a { color: #a5b4fc; text-decoration: underline; }
.cookie-banner-btn { background: #4f46e5; color: #fff; border: none; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.cookie-banner-btn:hover { background: #4338ca; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-btn { width: 100%; }
}
