/* =========================================================================
   Upcallo - marketingovy web
   Design tokeny jsou prevzate 1:1 z appky (lib/core/theme/app_theme.dart).
   Web a appka musi vypadat jako jedna vec; hodnoty se tady nevymysleji.
   ========================================================================= */

:root {
  /* Plocha a text */
  --canvas: #F7F8F7;
  --surface: #FFFFFF;
  --surface-sunken: #F4F6F5;
  --border: #DDE2E1;
  --border-subtle: #EEF1F0;
  --border-strong: #CFD5D3;
  --ink: #121716;
  --ink-2: #2C3533;
  --ink-3: #59635F;
  --ink-muted: #6B7573;
  --ink-faint: #8A9391;

  /* Akcent */
  --accent: #0F6058;
  --accent-pressed: #0C4B46;
  --accent-tint: #EAF2F1;
  --accent-tint-border: #BBD6D3;
  --on-accent: #FFFFFF;

  /* Stavy */
  --success: #1F7A46;
  --success-bg: #E6F2EA;
  --success-border: #BFDFCC;
  --warning: #B45A09;
  --warning-bg: #FDF3E8;
  --warning-border: #EBCFA9;
  --danger: #C0392F;
  --danger-bg: #FBEDEB;
  --chip: #EDF0EF;
  --chip-border: #D6DCDA;

  /* Tmavy ram (zivy hovor, CTA pas) - skutecne tema, ne inverze */
  --night: #0B0F0E;
  --night-surface: #171C1B;
  --night-nested: #1C2220;
  --night-border: #262D2B;
  --night-ink: #EDF1F0;
  --night-ink-2: #C6CFCC;
  --night-ink-3: #98A29F;
  --night-accent: #2FA39B;
  --night-bubble: #12433F;
  --night-bubble-ink: #D9F0ED;

  /* Radiusy z appky */
  --r-chip: 8px;
  --r-button: 12px;
  --r-tile: 14px;
  --r-card: 16px;
  --r-sheet: 22px;
  --r-pill: 999px;

  /* Rytmus */
  --gutter: clamp(20px, 5vw, 32px);
  --container: 1160px;
  --section: clamp(64px, 9vw, 120px);

  --sans: "Manrope", ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --canvas: #0B0F0E;
    --surface: #171C1B;
    --surface-sunken: #131817;
    --border: #262D2B;
    --border-subtle: #232927;
    --border-strong: #39423F;
    --ink: #EDF1F0;
    --ink-2: #C6CFCC;
    --ink-3: #A7B1AE;
    --ink-muted: #98A29F;
    --ink-faint: #7D8785;

    --accent: #2FA39B;
    --accent-pressed: #3FBCB2;
    --accent-tint: #12433F;
    --accent-tint-border: #1C5C57;
    --on-accent: #06211F;

    --success: #4FBE7E;
    --success-bg: #14261C;
    --success-border: #23503A;
    --warning: #E0913C;
    --warning-bg: #2A1D12;
    --warning-border: #4A331B;
    --danger: #F0655A;
    --danger-bg: #2A1413;
    --chip: #1C2220;
    --chip-border: #262D2B;

    --night: #151B1A;
    color-scheme: dark;
  }
}

/* ---------------------------------------------------------------- zaklad */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: block; }

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--surface); color: var(--ink);
  padding: 12px 18px; border-radius: 0 0 var(--r-button) 0;
  border: 1px solid var(--border);
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------- typografie */

.h1 { font-size: clamp(2.2rem, 1.35rem + 3.4vw, 3.5rem); letter-spacing: -0.035em; line-height: 1.06; }
.h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); letter-spacing: -0.03em; line-height: 1.1; }
.h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); letter-spacing: -0.02em; }
.h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }

.lead { font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.3125rem); line-height: 1.5; color: var(--ink-3); text-wrap: pretty; }
.muted { color: var(--ink-muted); }
.small { font-size: 0.9375rem; line-height: 1.5; }
.tiny { font-size: 0.8125rem; line-height: 1.45; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------- rozvrzeni */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--sunken { background: var(--surface-sunken); }

.stack > * + * { margin-top: var(--gap, 16px); }
.head { max-width: 64ch; }
.head > * + * { margin-top: 14px; }
.head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 16px; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.05fr 0.95fr; }
  .split--wide-right { grid-template-columns: 0.95fr 1.05fr; }
  .split--flip > :first-child { order: 2; }
}

/* --------------------------------------------------------------- tlacitka */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--r-button);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease), color 160ms var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { background: var(--accent-pressed); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink-faint); }

.btn--quiet { min-height: 44px; padding: 0 16px; background: transparent; color: var(--ink-2); border-color: var(--border); font-weight: 600; }
.btn--quiet:hover { background: var(--surface); }

.btn--sm { min-height: 44px; padding: 0 18px; font-size: 0.9375rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--accent); text-decoration: none;
}
.arrow-link::after { content: "\2192"; transition: transform 160ms var(--ease); }
.arrow-link:hover::after { transform: translateX(3px); }

/* ------------------------------------------------------------------ karty */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(18px, 2.4vw, 26px);
}
.card--tint { background: var(--accent-tint); border-color: var(--accent-tint-border); }
.card > * + * { margin-top: 10px; }

.card-ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-tile);
  background: var(--accent-tint);
  border: 1px solid var(--accent-tint-border);
  color: var(--accent);
  margin-bottom: 14px;
}
.card-ico svg { width: 20px; height: 20px; }

/* ------------------------------------------------------- odznaky a stitky */

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 30px; padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--chip); border: 1px solid var(--chip-border);
  color: var(--ink-2);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: -0.005em;
}
.pill--accent { background: var(--accent-tint); border-color: var(--accent-tint-border); color: var(--accent); }
.pill--success { background: var(--success-bg); border-color: var(--success-border); color: var(--success); }
.pill--warning { background: var(--warning-bg); border-color: var(--warning-border); color: var(--warning); }

.dot { width: 8px; height: 8px; border-radius: var(--r-pill); background: currentColor; flex: none; }
.dot--square { border-radius: 2px; }

.plan-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid var(--border); border-radius: var(--r-chip);
  padding: 3px 8px;
  white-space: nowrap;
}
.plan-tag--pro { color: var(--accent); border-color: var(--accent-tint-border); background: var(--accent-tint); }
.plan-tag--business { color: var(--ink-2); border-color: var(--border-strong); background: var(--chip); }

/* ---------------------------------------------------------------- hlavicka */

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.site-head[data-stuck="true"] { border-bottom-color: var(--border); }

.nav { display: flex; align-items: center; gap: 20px; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand svg { width: 30px; height: 30px; color: var(--accent); }
.brand-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.035em; }

.nav-links { display: none; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 8px 12px; border-radius: var(--r-chip);
  font-size: 0.9375rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--accent); }

.nav-cta { display: none; gap: 10px; align-items: center; }

.nav-toggle {
  margin-left: auto;
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--border); border-radius: var(--r-button);
  color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }

.nav-panel {
  display: none;
  padding: 8px 0 20px;
  border-top: 1px solid var(--border-subtle);
}
.nav-panel[data-open="true"] { display: block; }
.nav-panel-link {
  display: block; padding: 14px 4px;
  font-size: 1.0625rem; font-weight: 700; text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
}
.nav-panel .btn-row { margin-top: 18px; }
.nav-panel .btn { flex: 1 1 200px; }

@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .nav-panel { display: none !important; }
  .nav-cta { margin-left: 14px; }
}

/* ------------------------------------------------------------------- hero */

.hero { padding-block: clamp(36px, 5vw, 80px) clamp(56px, 7vw, 104px); }
.hero-grid { display: grid; gap: clamp(36px, 5vw, 56px); align-items: start; }
@media (min-width: 1020px) { .hero-grid { grid-template-columns: 1.02fr 0.98fr; align-items: center; } }

.hero h1 { margin-top: 18px; }
.hero .lead { margin-top: 20px; max-width: 54ch; }
.hero .btn-row { margin-top: 32px; }
.hero-note { margin-top: 16px; color: var(--ink-muted); font-size: 0.875rem; }

.hero-proof { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 24px; max-width: 620px; }

.hero-proof .num { display: block; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.04em; }
.hero-proof .lbl { display: block; font-size: 0.875rem; color: var(--ink-muted); margin-top: 2px; }

/* ---------------------------------------------------- ukazka appky (mock) */

.device {
  position: relative;
  border-radius: var(--r-sheet);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px;
  box-shadow: 0 1px 2px rgba(18, 23, 22, 0.04), 0 18px 48px -28px rgba(18, 23, 22, 0.35);
}
.device--night {
  background: var(--night-surface);
  border-color: var(--night-border);
  color: var(--night-ink);
}
.device-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 2px 4px 12px;
  font-size: 0.8125rem; color: var(--ink-muted);
}
.device--night .device-bar { color: var(--night-ink-3); }

.mock { display: grid; gap: 10px; }
.mock-row {
  border: 1px solid var(--border);
  border-radius: var(--r-tile);
  background: var(--surface);
  padding: 14px;
}
.device--night .mock-row { background: var(--night-nested); border-color: var(--night-border); }

.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-stat {
  border: 1px solid var(--border); border-radius: var(--r-tile);
  padding: 12px; background: var(--surface);
}
.mock-stat .num { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.04em; display: block; }
.mock-stat .lbl { font-size: 0.75rem; color: var(--ink-muted); }
.mock-stat--accent { background: var(--accent-tint); border-color: var(--accent-tint-border); }
.mock-stat--accent .num { color: var(--accent); }

.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.mock-title { font-weight: 700; font-size: 0.9375rem; }
.mock-meta { font-size: 0.8125rem; color: var(--ink-muted); }
.device--night .mock-meta { color: var(--night-ink-3); }
.mock-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.mock-btn {
  flex: 1 1 auto; min-height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 0.875rem; font-weight: 700;
  border: 1px solid var(--border-strong); color: var(--ink);
  padding: 0 14px;
}
.mock-btn--primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.device--night .mock-btn { color: var(--night-ink); border-color: var(--night-border); }
.device--night .mock-btn--primary { background: var(--night-accent); border-color: var(--night-accent); color: #06211F; }

/* prepis ziveho hovoru */
.bubbles { display: grid; gap: 8px; }
.bubble {
  max-width: 90%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.9375rem;
  line-height: 1.45;
}
.bubble--ai { background: var(--night-bubble); color: var(--night-bubble-ink); border-bottom-left-radius: 5px; }
.bubble--caller { background: var(--night-nested); color: var(--night-ink-2); margin-left: auto; border-bottom-right-radius: 5px; border: 1px solid var(--night-border); }
.bubble-who { display: block; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; margin-bottom: 3px; }

.live-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #F0655A;
}
.live-chip .dot { background: #F0655A; animation: pulse 1.6s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .live-chip .dot { animation: none; } }

/* ------------------------------------------------------------ kroky 1-2-3 */

.steps { counter-reset: step; }
.step { position: relative; padding-left: 60px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--accent); color: var(--on-accent);
  font-family: var(--mono); font-weight: 500; font-size: 0.9375rem;
}

/* ----------------------------------------------------------- seznam funkci */

.feature-list { display: grid; }
.feature-row {
  display: grid; gap: 6px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}
@media (min-width: 760px) {
  .feature-row { grid-template-columns: minmax(190px, 280px) 1fr 108px; align-items: baseline; }
}
.feature-row:first-child { border-top: 1px solid var(--border-subtle); }
.feature-row dt { font-weight: 700; letter-spacing: -0.01em; }
.feature-row dd { margin: 0; color: var(--ink-3); font-size: 0.9375rem; line-height: 1.5; }
.feature-row .plan-tag { justify-self: start; }

/* ---------------------------------------------------------------- tabulka */

.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-card); background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 660px; font-size: 0.9375rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); vertical-align: top; }
thead th { font-size: 0.8125rem; font-weight: 700; color: var(--ink-muted); background: var(--surface-sunken); white-space: nowrap; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: none; }
td.yes { color: var(--success); font-weight: 700; }
td.no { color: var(--ink-faint); }
th[scope="row"] { font-weight: 600; }

/* ----------------------------------------------------------------- cenik */

.plans { display: grid; gap: 16px; align-items: stretch; }
@media (min-width: 940px) { .plans { grid-template-columns: repeat(3, 1fr); } }

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(20px, 2.6vw, 30px);
  display: flex; flex-direction: column; gap: 16px;
}
.plan--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.plan-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan-price .num { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.045em; }
.plan-price .per { color: var(--ink-muted); font-size: 0.875rem; }
.plan ul { display: grid; gap: 10px; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 0.9375rem; line-height: 1.45; }
.plan li svg { width: 16px; height: 16px; margin-top: 4px; color: var(--accent); }
.plan li.locked { color: var(--ink-muted); }
.plan li.locked svg { color: var(--ink-faint); }
.plan .btn { width: 100%; margin-top: auto; }

/* ------------------------------------------------------------------- FAQ */

.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 46px 22px 0;
  position: relative;
  font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 10px; top: 50%;
  width: 11px; height: 11px; margin-top: -8px;
  border-right: 2px solid var(--ink-muted); border-bottom: 2px solid var(--ink-muted);
  transform: rotate(45deg); transition: transform 180ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .answer { padding: 0 0 24px; color: var(--ink-3); max-width: 72ch; }
.faq .answer > * + * { margin-top: 12px; }

/* --------------------------------------------------------------- CTA pas */

.cta-band {
  background: var(--night);
  border: 1px solid var(--night-border);
  color: var(--night-ink);
  border-radius: var(--r-sheet);
  padding: clamp(32px, 5vw, 64px);
  display: grid; gap: 28px; align-items: center;
}
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.25fr 0.75fr; } }
.cta-band h2 { color: var(--night-ink); }
.cta-band p { color: var(--night-ink-3); }
.cta-band .btn--primary { background: var(--night-accent); color: #06211F; }
.cta-band .btn--primary:hover { background: #3FBCB2; }
.cta-band .btn--ghost { color: var(--night-ink); border-color: var(--night-border); }
.cta-band .btn--ghost:hover { background: var(--night-nested); border-color: var(--night-ink-3); }

/* --------------------------------------------------------------- paticka */

.site-foot { border-top: 1px solid var(--border); padding-block: clamp(40px, 5vw, 64px) 32px; }
.foot-grid { display: grid; gap: 32px; }
@media (min-width: 820px) { .foot-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.foot-grid h3 { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
.foot-grid li + li { margin-top: 10px; }
.foot-grid a { font-size: 0.9375rem; color: var(--ink-2); text-decoration: none; }
.foot-grid a:hover { color: var(--accent); }
.foot-bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border-subtle);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: 0.8125rem; color: var(--ink-muted);
}

/* --------------------------------------------------------------- pomocne */

/* Odhaluje se jen tam, kde bezi JS. Bez nej je obsah normalne videt -
   stranka nikdy neschova text kvuli animaci, ktera se nespustila. */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 420ms var(--ease), transform 420ms var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
