:root {
  --bg: #fafafa;
  --bg-card: #ffffff;
  --bg-hover: #f5f5f5;
  --bg-drop: #f8faf8;
  --border: #e8e8e8;
  --border-hover: #d0d0d0;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-tertiary: #737373;
  --accent: #237a46;
  --accent-light: #e8f5ee;
  --accent-hover: #1b6538;

  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 100px;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 100px 48px 80px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-tagline {
  font-size: 14px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-built-by {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 20px;
}

.hero-built-by a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* ── TOOLS GRID ── */
.tools-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

.tools-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tool-card {
  background: var(--bg-card);
  padding: 32px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.tool-card:hover {
  background: var(--bg-hover);
}

.tool-card.disabled {
  cursor: default;
  color: var(--text-secondary);
}

.tool-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.tool-card.disabled .tool-card-icon {
  background: var(--bg-hover);
  color: var(--text-secondary);
}

.tool-card.disabled .tool-card-desc {
  color: var(--text-tertiary);
}

.tool-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.coming-soon-badge {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-hover);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* ── PRIVACY ── */
.privacy-section {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
  background: var(--bg-card);
}

.privacy-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.privacy-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.privacy-item {
  text-align: center;
}

.privacy-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.privacy-item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.privacy-item-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* ── SUPERDOC SECTION ── */
.superdoc-section {
  border-top: 1px solid var(--border);
  padding: 64px 48px;
  text-align: center;
  background: var(--bg);
}

.superdoc-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.superdoc-desc a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* ── NOT FOUND ── */
.not-found {
  text-align: center;
  padding: 120px 48px;
  max-width: 480px;
  margin: 0 auto;
}

.not-found-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.not-found-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.65;
}

.not-found-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.not-found-link:hover {
  text-decoration: underline;
}

/* ── TOOL PAGE ── */
.tool-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}

.tool-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.tool-page-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.tool-page-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── DROP ZONE ── */
.drop-zone {
  width: 100%;
  min-height: 220px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.2s;
}

.drop-zone:hover,
.drop-zone.dragging {
  border-color: var(--accent);
  background: var(--accent-light);
}

.drop-zone-icon {
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.drop-zone-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.drop-zone-subtitle {
  font-size: 13px;
  color: var(--text-tertiary);
}

.drop-zone-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* ── VIEWER ── */
.viewer-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  max-width: 100%;
}

.viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.viewer-filename {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.viewer-reset-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.viewer-reset-btn:hover {
  text-decoration: underline;
}

.viewer-editor {
  height: 70vh;
  min-height: 500px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.viewer-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ── REDACT TOOL ── */

/* Consent dialog */
.redact-consent-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 250, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  backdrop-filter: blur(2px);
}

.redact-consent-dialog {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.redact-consent-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.redact-consent-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.redact-consent-details {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 20px 20px;
  list-style: disc;
}

.redact-consent-details li {
  margin-bottom: 4px;
}

.redact-consent-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.redact-consent-powered {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 16px;
}

/* Pill bar */
.redact-pill-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.redact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-family: inherit;
  color: var(--text-tertiary);
  transition: all 0.15s;
}

.redact-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.redact-pill.active {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  background: white;
}

.redact-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.redact-pill-label {
  font-size: 12px;
}

.redact-pill-count {
  font-weight: 700;
  font-size: 11px;
}

.redact-pill-toggle-all {
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  background: none;
  color: var(--accent);
  cursor: pointer;
  white-space: nowrap;
}

.redact-pill-toggle-all:hover {
  text-decoration: underline;
}

.redact-pill-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* Agent banner */
.redact-agent-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #f0faf0;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  font-size: 13px;
  color: var(--text-secondary);
}

.redact-agent-banner strong {
  color: var(--text-primary);
  font-weight: 600;
}

.redact-agent-banner svg {
  color: var(--accent);
  flex-shrink: 0;
}

.redact-agent-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: redact-spin 0.6s linear infinite;
  flex-shrink: 0;
}

/* Scanning overlay */
.redact-scanning-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 250, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  backdrop-filter: blur(2px);
}

.redact-scanning-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.redact-scanning-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: redact-spin 0.6s linear infinite;
}

@keyframes redact-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Truncation warning */
.redact-truncation-warning {
  padding: 10px 20px;
  background: #fff8e1;
  border-bottom: 1px solid #ffe082;
  font-size: 13px;
  color: #856404;
}

/* Error */
.redact-error {
  padding: 12px 20px;
  background: #fdf0f0;
  border-top: 1px solid #f5c6cb;
  font-size: 13px;
  color: #dc3545;
}

/* ── VIEWER TOOL ACTIONS ── */
.viewer-tool-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── SEO SECTIONS ── */
.seo-section {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}

.seo-section-alt {
  background: var(--bg-card);
}

.seo-container {
  max-width: 960px;
  margin: 0 auto;
}

.seo-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* Features */
.seo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.seo-feature-card {
  padding: 28px 24px;
}

.seo-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.seo-feature-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.seo-feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Steps */
.seo-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.seo-step {
  text-align: center;
}

.seo-step-number {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  margin: 0 auto 16px;
}

.seo-step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.seo-step-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* FAQ */
.seo-faq-list {
  max-width: 680px;
  margin: 0 auto;
}

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

.seo-faq-q {
  font-size: 15px;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.seo-faq-q::-webkit-details-marker {
  display: none;
}

.seo-faq-chevron {
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.seo-faq-item[open] .seo-faq-chevron {
  transform: rotate(180deg);
}

.seo-faq-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* Related Tools */
.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.seo-related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.15s;
}

.seo-related-card:hover {
  border-color: var(--accent);
}

.seo-related-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.seo-related-name {
  font-size: 14px;
  font-weight: 500;
}

/* ── RESULT STATES (conversion tools) ── */
.result-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.result-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.result-filename {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.result-actions {
  display: flex;
  gap: 8px;
}

.result-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.result-btn:hover {
  background: var(--bg-hover);
}

.result-btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.result-btn-primary:hover {
  background: var(--accent-hover);
}

.result-preview {
  padding: 20px;
  max-height: 500px;
  overflow: auto;
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}

.result-reset {
  text-align: center;
  margin-top: 16px;
}

.result-reset-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  font-family: inherit;
}

.result-reset-btn:hover {
  text-decoration: underline;
}

/* Success card (clean DOCX) */
.success-card {
  padding: 48px 32px;
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.success-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.success-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.success-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.success-download:hover {
  background: var(--accent-hover);
}

/* Processing state */
.processing-state {
  padding: 72px 32px;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 14px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  /* Hero */
  .hero {
    padding: 64px 20px 56px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  /* Tools */
  .tools-section {
    padding: 0 20px 64px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 24px;
  }

  /* Privacy */
  .privacy-section {
    padding: 56px 20px;
  }

  .privacy-title {
    font-size: 24px;
  }

  .privacy-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* SuperDoc */
  .superdoc-section {
    padding: 48px 20px;
  }

  /* Not found */
  .not-found {
    padding: 80px 20px;
  }

  .not-found-title {
    font-size: 24px;
  }

  /* Tool page */
  .tool-page {
    padding: 40px 20px 64px;
  }

  .tool-page-title {
    font-size: 28px;
  }

  .drop-zone {
    padding: 48px 20px;
  }

  .viewer-editor {
    height: 60vh;
    min-height: 400px;
    overflow: auto;
  }

  .viewer-container {
    margin: 0 -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .viewer-toolbar {
    flex-wrap: wrap;
    gap: 8px;
  }

  .viewer-tool-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  /* SEO sections */
  .seo-section {
    padding: 56px 20px;
  }

  .seo-section-title {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .seo-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .seo-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .seo-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Result states */
  .result-toolbar {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .result-actions {
    justify-content: stretch;
  }

  .result-actions .result-btn {
    flex: 1;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav {
    padding: 18px 32px;
  }
  .hero {
    padding: 80px 32px 64px;
  }
  .hero-title {
    font-size: 42px;
  }
  .tools-section {
    padding: 0 32px 80px;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .privacy-section {
    padding: 64px 32px;
  }
  .privacy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .superdoc-section {
    padding: 48px 32px;
  }
  .seo-section {
    padding: 64px 32px;
  }
  .footer {
    padding: 28px 32px;
  }
}

