@layer reset, base, components, responsive;
@layer reset {
  * { box-sizing: border-box; }
  body, h1, h2, h3, p { margin: 0; }
  button, input, select { font: inherit; }
  button, a, input, select, summary { -webkit-tap-highlight-color: transparent; }
  button { cursor: pointer; }
  a { color: inherit; text-decoration: none; }
  button { color: inherit; }
  svg { flex-shrink: 0; }
  [hidden] { display: none !important; }
}
@layer base {
  :root { color-scheme: dark; --bg: #111411; --surface: #1b1f1b; --surface-2: #222722; --field: #121612; --text: #f2f5ee; --muted: #a2ada0; --line: #30382e; --accent: #cefa69; --accent-ink: #1b2710; --accent-soft: #263322; --error: #ffb9a9; --error-bg: #36231e; --shadow: 0 16px 60px #00000026; --font: 'Inter', 'Segoe UI', Arial, sans-serif; }
  :root[data-theme="light"] { color-scheme: light; --bg: #f6f8f2; --surface: #fff; --surface-2: #edf1e8; --field: #f7f9f4; --text: #182117; --muted: #56624f; --line: #dce3d5; --accent: #cefa69; --accent-ink: #1b2710; --accent-soft: #e6f3d6; --error: #923018; --error-bg: #fff0e9; --shadow: 0 16px 60px #21390d09; }
  html { scroll-behavior: smooth; scroll-padding-top: 95px; }
  body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.65; }
  ::selection { background: var(--accent); color: var(--accent-ink); }
  :focus-visible { outline: 3px solid #99c53d; outline-offset: 4px; }
  button:disabled, input:disabled { opacity: .55; cursor: not-allowed; }
  h1,h2,h3 { letter-spacing: -.045em; line-height: 1.15; }
  h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 650; }
  h3 { font-size: 1.25rem; font-weight: 600; }
  p { color: var(--muted); }
  .page-width { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
  .eyebrow { font-size: .75rem; letter-spacing: .16em; font-weight: 650; color: var(--muted); line-height: 1.6; }
  .small-label { font-size: .75rem; font-weight: 650; letter-spacing: .1em; color: var(--muted); }
  .skip-link { position: fixed; left: 15px; top: -100px; background: var(--accent); color: var(--accent-ink); padding: 12px; z-index: 20; }
  .skip-link:focus { top: 10px; }
}
@layer components {
  .site-header { width: min(1280px, calc(100% - 80px)); height: 94px; margin: auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); gap: 24px; }
  .brand { display: inline-flex; align-items: center; gap: 9px; font-size: 1.6rem; font-weight: 720; letter-spacing: -.07em; line-height: 1; }
  .brand-dot { color: var(--accent); }
  [data-theme="light"] .brand-dot { color: #587920; }
  .main-nav { display: flex; gap: 30px; align-items: center; font-size: .875rem; color: var(--muted); }
  .main-nav a { transition: color .2s; }
  .main-nav a:hover { color: var(--text); }
  .icon-button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; display: grid; place-items: center; flex-shrink: 0; }
  .icon-button:hover { background: var(--surface-2); }
  .hero { text-align: center; padding: 60px 24px 30px; max-width: 1040px; margin: auto; }
  .hero .eyebrow { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .75rem; }
  .tiny-spark { color: var(--accent); font-size: 1.2rem; }
  .hero h1 { font-size: clamp(3.2rem, 6.4vw, 5.8rem); line-height: 1.04; font-weight: 660; letter-spacing: -.065em; margin: 20px 0 22px; }
  .hero h1 span { color: var(--accent); }
  [data-theme="light"] .hero h1 span { color: #4c7117; }
  .hero-subheading { font-size: 1.125rem; font-weight: 500; letter-spacing: -.01em; margin-bottom: 8px; }
  .hero-description { font-size: .9375rem; }
  .converter-layout { width: min(1170px, calc(100% - 40px)); margin: 0 auto; }
  .converter-layout.has-side-ads { display: grid; grid-template-columns: 160px minmax(0, 810px) 160px; gap: 20px; align-items: start; }
  .converter-wrap { width: 100%; max-width: 810px; min-width: 0; margin: 0 auto; }
  .has-side-ads .converter-wrap { grid-column: 2; grid-row: 1; }
  .ads-test-note { padding: 14px 18px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; background: var(--accent-soft); font-size: .8125rem; }
  .ads-test-note strong { color: var(--text); }
  #ad-action-notice .text-button { font-size: inherit; text-decoration: underline; }
  .workspace { background: linear-gradient(125deg, var(--surface-2), var(--surface) 47%); border: 1px solid var(--line); border-radius: 22px; padding: 26px 28px 0; box-shadow: var(--shadow); }
  .workspace-top { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 23px; }
  .workspace-label { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 550; }
  .workspace-label svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.4; }
  [data-theme="light"] .workspace-label svg { stroke: #587920; }
  .workspace-tag { font-size: .75rem; letter-spacing: .13em; color: var(--muted); }
  .field-label { display: block; font-size: .875rem; margin-bottom: 8px; color: var(--muted); }
  #analyze-form > .field-label { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); }
  .input-row { display: flex; gap: 10px; }
  .url-field { background: var(--field); border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; flex: 1; min-width: 0; transition: border-color .2s; }
  .url-field:focus-within { border-color: #95b957; }
  .url-field input { background: transparent; border: 0; border-radius: 10px; min-width: 0; width: 100%; padding: 16px; color: var(--text); font-size: .9375rem; outline-offset: -3px; }
  .url-field input::placeholder { color: var(--muted); opacity: .8; }
  .url-field button { display: grid; place-items: center; flex-shrink: 0; margin-right: 9px; height: 34px; width: 34px; border: 0; border-radius: 6px; background: var(--surface-2); color: var(--muted); }
  .url-field svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; }
  .button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 15px 24px; font-size: .9375rem; font-weight: 650; border-radius: 10px; border: 0; min-height: 54px; line-height: 1.35; transition: background .2s, transform .2s; }
  .button:hover:not(:disabled) { transform: translateY(-1px); }
  .primary { background: var(--accent); color: var(--accent-ink); }
  .primary:hover:not(:disabled) { background: #defd9c; }
  .button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .full-width { width: 100%; }
  .rights { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .875rem; margin-top: 15px; line-height: 1.6; cursor: pointer; }
  .rights input { margin: 3px 0 0; accent-color: #9ac548; width: 16px; height: 16px; flex-shrink: 0; }
  .source-hint { margin-top: 8px; font-size: .75rem; }
  .workspace-bottom { margin-top: 23px; padding: 17px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .source-badges { display: flex; flex-wrap: wrap; gap: 10px 16px; font-size: .75rem; color: var(--muted); }
  .workspace-bottom .text-button { flex-shrink: 0; }
  .source-badges > span { display: flex; align-items: center; gap: 6px; }
  .source-badges svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.2; fill: none; }
  .text-button { border: 0; padding: 4px 0; background: transparent; font-size: .8125rem; text-align: left; }
  .text-button:hover { color: var(--muted); }
  .text-button span { margin-left: 5px; }
  .trust-row { display: flex; justify-content: center; gap: 25px; color: var(--muted); font-size: .75rem; padding: 17px 0; }
  .formats-strip { display: flex; justify-content: space-between; gap: 22px; align-items: center; border-block: 1px solid var(--line); padding: 26px 12px; margin-top: 64px; }
  .formats-strip > span { font-size: .6875rem; color: var(--muted); letter-spacing: .07em; }
  .formats-strip > span strong { color: var(--text); font-weight: 550; }
  .format-word { font-size: 1.55rem; font-weight: 650; letter-spacing: -.04em; color: var(--muted); line-height: 1.2; }
  .format-word i { display: block; font-style: normal; font-size: .75rem; letter-spacing: .12em; color: var(--muted); font-weight: 400; margin-top: 6px; }
  .section { padding-block: 88px; }
  .section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 32px; }
  .section-heading .eyebrow, .why-section .eyebrow, .faq-section .eyebrow { margin-bottom: 12px; }
  .section-heading > p { font-size: .875rem; line-height: 1.6; }
  .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .step-grid article { border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; position: relative; }
  .step-number { position: absolute; top: 28px; right: 24px; font-size: .75rem; color: var(--muted); }
  .step-icon { background: var(--accent-soft); color: var(--text); height: 42px; width: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 34px; }
  .step-grid h3 { margin-bottom: 13px; }
  .step-grid p { font-size: .9375rem; line-height: 1.65; }
  .why-section { padding: 55px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; }
  .why-section h2 span { color: var(--muted); }
  .why-section > div > p:last-child { font-size: .9375rem; margin-top: 20px; max-width: 290px; }
  .benefits { display: grid; gap: 26px; }
  .benefits article { display: flex; gap: 20px; align-items: flex-start; }
  .benefits article > span { color: var(--accent); font-size: 1.5rem; line-height: 1; }
  [data-theme="light"] .benefits article > span { color: #557c1d; }
  .benefits h3 { font-size: 1rem; letter-spacing: -.02em; margin-bottom: 7px; }
  .benefits p { font-size: .875rem; line-height: 1.6; }
  .faq-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; }
  .faq-section > div > p:last-child { margin-top: 20px; font-size: .9375rem; }
  details { border-bottom: 1px solid var(--line); padding: 20px 0; }
  details:first-child { padding-top: 0; }
  summary { display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-size: .9375rem; font-weight: 550; list-style: none; line-height: 1.5; }
  summary::-webkit-details-marker { display: none; }
  summary span { font-size: 1.25rem; font-weight: 400; color: var(--muted); }
  details[open] summary span { transform: rotate(45deg); }
  details p { margin-top: 13px; font-size: .875rem; line-height: 1.8; }
  .site-footer { border-top: 1px solid var(--line); padding-top: 45px; }
  .footer-top { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 45px; }
  .footer-top > div > p { font-size: .875rem; margin-top: 14px; }
  .footer-links { display: flex; gap: 55px; }
  .footer-links > div { display: flex; flex-direction: column; gap: 8px; font-size: .8125rem; }
  .footer-links strong { font-weight: 550; margin-bottom: 8px; }
  .footer-links a, .footer-links button { color: var(--muted); }
  .footer-links a:hover { color: var(--text); }
  .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; border-top: 1px solid var(--line); font-size: .75rem; color: var(--muted); }
  .detection { font-size: .8125rem; border-top: 1px solid var(--line); padding: 12px 0; }
  .busy-card { display: flex; gap: 18px; padding: 24px 0; border-top: 1px solid var(--line); }
  .busy-card > div { flex: 1; }
  .busy-card p { font-size: .875rem; margin-block: 4px 12px; }
  .skeleton { height: 7px; width: 72%; border-radius: 8px; background: linear-gradient(90deg, var(--line), var(--surface-2), var(--line)); background-size: 200%; animation: shimmer 1.5s infinite; }
  .spinner { width: 21px; height: 21px; border: 2px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; margin-top: 4px; flex-shrink: 0; }
  .error-card { margin-bottom: 25px; display: flex; align-items: flex-start; gap: 12px; padding: 18px; background: var(--error-bg); border: 1px solid var(--error); border-radius: 12px; }
  .error-icon { border: 1px solid var(--error); color: var(--error); border-radius: 50%; width: 22px; height: 22px; text-align: center; line-height: 20px; flex-shrink: 0; }
  .error-card > div { flex: 1; }
  .error-card p { color: var(--error); font-size: .875rem; margin-top: 3px; }
  .error-card .icon-button { border: 0; width: 24px; height: 24px; }
  .result-card, .progress-card, .complete-card { border-top: 1px solid var(--line); padding: 26px 0; animation: enter .25s ease-out; }
  .result-heading { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
  .media-icon { display: grid; place-items: center; background: var(--accent-soft); width: 64px; height: 64px; border-radius: 12px; flex-shrink: 0; font-size: 1.3rem; }
  .media-info { flex: 1; min-width: 0; }
  .media-info h3 { font-size: 1.15rem; overflow-wrap: anywhere; margin: 3px 0; }
  .media-info p { font-size: .8125rem; }
  .available-tag { color: var(--text); background: var(--accent-soft); border-radius: 6px; padding: 4px 8px; font-size: .75rem; }
  .format-field { padding: 0; margin: 0; border: 0; }
  .format-field legend { font-size: .875rem; color: var(--muted); margin-bottom: 10px; }
  .format-options { display: flex; gap: 9px; flex-wrap: wrap; }
  .format-choice { position: relative; flex: 1; min-width: 80px; cursor: pointer; }
  .format-choice input { position: absolute; opacity: 0; }
  .format-choice span { display: block; text-align: center; padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: .875rem; }
  .format-choice input:checked + span { border-color: #88a948; background: var(--accent-soft); }
  .format-choice input:focus-visible + span { outline: 3px solid #99c53d; outline-offset: 3px; }
  .quality-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-top: 22px; }
  .quality-row select { min-width: 160px; background: var(--field); border: 1px solid var(--line); border-radius: 8px; color: var(--text); padding: 10px 36px 10px 14px; font-size: .875rem; }
  .estimate { text-align: right; }
  .estimate span { display: block; font-size: .8125rem; color: var(--muted); }
  .estimate strong { font-size: 1.05rem; font-weight: 550; }
  .quality-note { font-size: .75rem; margin: 14px 0 22px; }
  .progress-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 20px; }
  .progress-heading h3 { margin-top: 10px; font-size: 1.4rem; }
  .progress-heading > strong { font-size: 2rem; color: var(--text); font-weight: 500; }
  progress { appearance: none; border: 0; width: 100%; height: 9px; border-radius: 9px; display: block; overflow: hidden; background: var(--line); }
  progress::-webkit-progress-bar { background: var(--line); }
  progress::-webkit-progress-value { background: var(--accent); border-radius: 9px; transition: width .4s; }
  progress::-moz-progress-bar { background: var(--accent); border-radius: 9px; }
  .progress-footer { display: flex; justify-content: space-between; gap: 15px; align-items: center; margin-top: 15px; }
  .progress-footer p { font-size: .8125rem; }
  .complete-card { text-align: center; }
  .complete-icon { margin: 0 auto 15px; width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-size: 1.75rem; display: grid; place-items: center; }
  .complete-card h3 { font-size: 1.8rem; margin-top: 6px; }
  .complete-card > p { margin-top: 8px; font-size: .875rem; }
  #download-button { margin: 22px auto 4px; }
  .complete-card .expiry { font-size: .8125rem; margin-bottom: 15px; }
  .complete-card .expiry strong { color: var(--text); font-variant-numeric: tabular-nums; }
  .ad-slot { border: 1px dashed var(--line); padding: 8px; margin-block: 18px; text-align: center; }
  .ad-slot > span { font-size: .75rem; color: var(--muted); }
  .ad-slot.ad-rail { width: 160px; border: 0; padding: 0; margin: 0 auto; }
  .ad-rail-left { grid-column: 1; grid-row: 1; }
  .ad-rail-right { grid-column: 3; grid-row: 1; }
  .ad-rail > span { display: block; padding: 0 0 8px; font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; }
  .ad-rail img, .ad-rail iframe { display: block; width: 160px; max-width: 100%; border: 0; }
  .ad-rail img { height: auto; }
  .demo-creative { display: flex; flex-direction: column; gap: 22px; min-height: 600px; padding: 24px 17px; border-radius: 12px; text-align: left; background: #d7f89b; color: #24321b; }
  .demo-creative-right { background: #dccdfe; color: #332347; }
  .demo-ad-label { font-size: .5625rem; font-weight: 700; letter-spacing: .15em; }
  .demo-ad-mark { display: block; font-size: 5rem; line-height: 1.3; margin-block: 15px; }
  .demo-creative strong { font-size: 1.65rem; line-height: 1.12; letter-spacing: -.06em; overflow-wrap: anywhere; }
  .demo-creative small { font-size: .75rem; line-height: 1.6; }
  .demo-ad-cta { font-size: .75rem; font-weight: 650; margin-top: auto; padding-top: 16px; border-top: 1px solid currentColor; }
  .ad-demo-page { max-width: 740px; width: calc(100% - 40px); margin: 48px auto; }
  .ad-demo-panel { margin-top: 45px; padding: 40px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
  .ad-demo-panel h1 { font-size: clamp(2.2rem, 6vw, 3.5rem); margin-block: 18px; }
  .ad-demo-panel p + p { margin-top: 16px; }
  .ad-demo-check { font-size: 3rem; color: var(--accent); margin-top: 24px; }
  .mobile-sticky { position: sticky; bottom: 0; background: var(--surface); }
  .toast { position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); max-width: min(460px, calc(100% - 30px)); padding: 14px 22px; border-radius: 12px; background: var(--text); color: var(--bg); z-index: 30; box-shadow: var(--shadow); font-size: .875rem; }
  dialog { background: var(--surface); color: var(--text); border: 1px solid var(--line); border-radius: 20px; padding: 32px; width: min(480px, calc(100% - 28px)); max-height: 90dvh; box-shadow: var(--shadow); }
  dialog::backdrop { background: #0009; backdrop-filter: blur(3px); }
  dialog h2 { font-size: 1.8rem; margin: 12px 0 18px; }
  dialog p { font-size: .875rem; }
  .dialog-close { float: right; }
  .preference { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
  .preference strong { font-size: .875rem; font-weight: 500; }
  .preference small { display: block; color: var(--muted); font-size: .8125rem; line-height: 1.5; margin-top: 5px; }
  .preference input { width: 20px; height: 20px; accent-color: #97c347; flex-shrink: 0; }
  dialog .button { margin-top: 24px; }
  dialog .text-button { display: block; text-align: center; width: 100%; margin-top: 12px; }
  dialog .small-copy { font-size: .75rem; margin-top: 16px; }
  .legal-page { max-width: 800px; margin: 65px auto 90px; }
  .legal-page h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin: 26px 0; }
  .legal-page h2 { font-size: 1.4rem; margin: 32px 0 12px; }
  .legal-page a { text-decoration: underline; text-underline-offset: 4px; }
  .legal-page p { line-height: 1.9; }
  .notice { padding: 20px; border: 1px solid var(--line); border-radius: 12px; margin: 20px 0; background: var(--surface); }
  .noscript { position: fixed; bottom: 0; width: 100%; background: var(--accent); color: var(--accent-ink); padding: 15px; text-align: center; }
  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes shimmer { to { background-position: -200% 0; } }
  @keyframes enter { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
}
@layer responsive {
  @media (max-width: 1179px) {
    .converter-layout { max-width: 810px; }
    .converter-layout.has-side-ads { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
    .has-side-ads .converter-wrap { grid-column: 1 / -1; }
    .ad-rail-left { grid-column: 1; grid-row: 2; }
    .ad-rail-right { grid-column: 2; grid-row: 2; }
    .ad-slot.ad-rail { max-width: 100%; }
    .demo-creative { min-height: 260px; gap: 12px; padding: 18px 14px; }
    .demo-ad-mark { font-size: 2.6rem; margin: 0; }
    .demo-creative strong { font-size: 1.25rem; }
    .ad-demo-panel { padding: 26px 22px; }
  }
  @media (max-width: 850px) { .main-nav { gap: 20px; }.site-header { width: calc(100% - 40px); }.why-section { padding: 35px; gap: 30px; }.faq-section { gap: 40px; grid-template-columns: .85fr 1.4fr; }.footer-links { gap: 25px; }.formats-strip { margin-top: 40px; }.step-grid article { padding: 25px 20px; }.hero { padding-top: 44px; } }
  @media (max-width: 640px) {
    .page-width { width: calc(100% - 40px); }.site-header { height: 76px; gap: 12px; }.brand { font-size: 1.45rem; }.main-nav { margin-left: auto; }.main-nav a { display: none; }.main-nav a:nth-child(2) { display: block; font-size: .8125rem; }.icon-button { width: 36px; height: 36px; }
    .hero { padding: 36px 22px 27px; }.hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); margin: 18px 0; }.hero-description { font-size: .875rem; max-width: 295px; margin: auto; }.hero-subheading { font-size: 1rem; line-height: 1.5; }.hero .eyebrow { font-size: .6875rem; }
    .workspace { padding: 21px 18px 0; border-radius: 18px; }.workspace-tag { display: none; }.workspace-top { margin-bottom: 18px; }.workspace-label { font-size: .8125rem; }.input-row { flex-direction: column; }.input-row > .button { padding: 13px; min-height: 48px; }.url-field input { padding: 15px 12px; font-size: 1rem; }.rights { font-size: .75rem; }.source-hint { font-size: .75rem; }.workspace-bottom { margin-top: 18px; gap: 10px; }.source-badges { gap: 10px; font-size: .6875rem; }.source-badges svg { display: none; }.workspace-bottom .text-button { font-size: .75rem; }.trust-row { gap: 14px; flex-wrap: wrap; font-size: .6875rem; line-height: 1.3; }.trust-row span:last-child { display: none; }
    .formats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; padding: 26px 0; margin-top: 28px; }.formats-strip > span { display: none; }.format-word { font-size: 1.25rem; }.format-word i { font-size: .625rem; }
    .section { padding-block: 55px; }.section-heading { display: block; margin-bottom: 24px; }.section-heading > p { margin-top: 16px; }.step-grid { grid-template-columns: 1fr; gap: 12px; }.step-grid article { padding: 23px 24px; }.step-icon { margin-bottom: 20px; }.step-grid p { font-size: .9375rem; }.step-grid h3 { font-size: 1.2rem; }
    .why-section { display: block; padding: 28px 24px; }.why-section > div > p:last-child { max-width: none; }.benefits { margin-top: 35px; gap: 26px; }.faq-section { grid-template-columns: 1fr; gap: 30px; }.faq-section > div > p:last-child { margin-top: 12px; }
    .footer-top { display: block; padding-bottom: 30px; }.footer-links { margin-top: 34px; gap: 28px 22px; flex-wrap: wrap; }.footer-links > div { flex: 1; min-width: 125px; font-size: .8125rem; }.footer-bottom { display: block; font-size: .75rem; }.footer-bottom > span { display: block; margin-bottom: 6px; }
    .available-tag { display: none; }.result-heading { gap: 12px; }.media-icon { width: 48px; height: 48px; }.format-choice { min-width: 75px; }.quality-row { gap: 12px; }.quality-row select { min-width: 140px; }.estimate span { font-size: .75rem; }.legal-page { margin-block: 40px; }.error-card { padding: 14px; }
  }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
}
