/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --primary-btn-color: #554FF8;
  --text-color-light: #fff;
  --text-color-dark: #555;
  --mb-20: 20px;
}

/* ── Custom fonts ── */
@font-face {
  font-family: 'Involve';
  src: url('/assets/fonts/involve-Regular.woff2') format('woff2'),
      url('/assets/fonts/involve-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('/assets/fonts/involve-Medium.woff2') format('woff2'),
      url('/assets/fonts/involve-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── Base ── */
body {
  position: relative;
  font-family: 'Involve', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0E0E0E;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 30px;
}

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

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-list {
  padding-left: 15px;
}

.section-first {
  padding: 90px 0;
  margin-bottom: 60px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 20px;
}

.section-desc {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #b2b2b2;
}

/* ── Header ── */
.site-header {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header .tagline { font-size: 13px; color: #555; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.flex {
  display: flex;
}

.hero {
  display: flex;
  align-items: center;
}

.title-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 100%;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.supertitle {
  display: flex;
  margin-bottom: 15px;
  padding: 6px 10px;
  column-gap: 15px;
  width: fit-content;
  align-items: center;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 4px 0 rgba(79, 192, 249, 0.25);
  background: rgba(23, 23, 23, 0.2);
  border-radius: 100px;
  color: var(--text-color-light);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.hero-title {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 70px;
  line-height: 120%;
  text-align: center;
  max-width: 100%;
}

.hero-desc {
  margin-bottom: 40px;
  max-width: 610px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #b2b2b2;
}

/* ── Hero: line-by-line reveal (no external libs) ── */
.reveal-lines .rl-line {
  display: block;
  overflow: hidden;
}

.reveal-lines .rl-line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-lines.is-in .rl-line-inner {
  animation: rlRevealUp 700ms cubic-bezier(0.4, 0, 0.2, 1) var(--rl-delay, 0ms) both;
}

@keyframes rlRevealUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-btn.reveal-btn {
  opacity: 0;
  transform: translateY(8px);
  will-change: transform, opacity;
}

.hero-btn.reveal-btn.is-in {
  animation: rlBtnIn 300ms cubic-bezier(0.4, 0, 0.2, 1) var(--rl-delay, 0ms) both;
}

@keyframes rlBtnIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-lines .rl-line-inner {
    transform: none;
    opacity: 1;
    animation: none !important;
  }
  .hero-btn.reveal-btn {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.hero-img {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -25vh;
  pointer-events: none;
  z-index: -1;
}

.hero-img--mobile {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -25vh;
  pointer-events: none;
  z-index: -1;
  display: none;
}

.hero-btn {
  width: fit-content;
  background: linear-gradient(90deg, #4073e8 0%, #22449f 50%, #4073e8 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 20px 60px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background-position 0.4s ease-in-out;
}

.hero-btn:hover {
  background-position: 100% 0%;
}

/* ── User bar (right side of header) ── */
.user-bar { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.auth-open-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background-color: rgba(178, 220, 255, 0.03);
  color: var(--text-color-light);
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.auth-open-btn:hover { background-color: #4073E8; color: #ffffff; }

.user-email {
  font-weight: 400;
  font-size: 14px;
  color: #b2b2b2;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; 
}
.plan-badge {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  padding: 5px 20px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 100px;
}

.plan-badge.free {
  box-shadow: inset -10px -10px 10px 0 rgba(255, 255, 255, 0.07);
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.plan-badge.premium {
  box-shadow: inset -10px -10px 10px 0 rgba(255, 255, 255, 0.07);
  background: rgba(55, 121, 171, 0.2);
  color: #3c6dde;
  border: 1px solid rgba(55, 121, 171, 0.14);
}

.rate-day:empty {
  display: none;
}

.logout-btn {
  display: flex;
  align-items: center;
  column-gap: 5px;
  background: none;
  border: none;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #b2b2b2;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logout-btn:hover { 
  color: #4073e8;
}

.logout-btn svg {
  fill: #444444;
  transition: fill 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.logout-btn:hover svg {
  fill: #4073e8;
}

/* ── Tabs ── */
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 4px;
  width: 100%;
}
.tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tab-btn:hover { color: #ccc; background: #222; }
.tab-btn.active { background: #2a2a2a; color: #fff; }

/* ── Card ── */
.compress-card,
.card {
  box-shadow: inset 20px 10px 50px 0 rgba(58, 125, 177, 0.31);
  background: rgba(178, 220, 255, 0.03);
  border-radius: 16px;
  padding: 36px 40px;
  width: 100%;
}

.card-title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.card-sub { font-size: 13px; color: #555; margin-bottom: 28px; }

/* ── Drop zone ── */
.drop-zone {
  border: 2px dashed #2e2e2e;
  border-radius: 12px;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 20px;
}
.drop-zone:hover, .drop-zone.drag-over {
  border-color: #4073E8;
  background: rgba(91,157,240,0.05);
}
.drop-icon { font-size: 36px; margin-bottom: 10px; }
.drop-text { font-size: 14px; color: #aaa; }
.drop-hint { font-size: 12px; color: #555; margin-top: 5px; }
input[type="file"] { display: none; }


#img-rename {
  padding: 15px 10px;
  border-radius: 100px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  color: #666;
}
/* ── Options row ── */
.options {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.options label { font-size: 13px; color: #888; white-space: nowrap; }
input[type="range"] { accent-color: #4073E8; flex: 1; min-width: 80px; }
.range-val { font-size: 13px; color: #fff; font-weight: 600; min-width: 38px; text-align: right; }

.img-rename-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

.rename-img-ico {
  display: inline-block;
  padding: 5px 10px;
  background-color: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 5px; 
  color: #fff;
}

/* ── Format toggles ── */
.format-group { display: flex; gap: 8px; flex-wrap: wrap; }
.fmt-btn {
  background: #222;
  border: 1px solid #333;
  color: #888;
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
}
.fmt-btn.active { background: #1a3050; border-color: #3a6080; color: #5b9df0; }

/* ── PDF action selector ── */
.action-group { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.action-btn {
  background: #222;
  border: 1px solid #333;
  color: #888;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
}
.action-btn.active { background: #1a3050; border-color: #3a6080; color: #5b9df0; }

.pdf-option { margin-bottom: 16px; }
.pdf-option label { display: block; font-size: 13px; color: #888; margin-bottom: 6px; }
.pdf-option input[type="text"] {
  margin-bottom: 15px;
  width: 100%;
  padding: 15px 10px;
  border-radius: 100px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.36);
  outline: none;
  color: #666;
  transition: border-color 0.15s;
}
.pdf-option input[type="text"]:focus { border-color: #5b9df0; }

/* ── File list ── */
.file-list { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(178, 220, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
}
.file-item .fname { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #ccc; }
.file-item .fsize { color: #555; font-size: 12px; white-space: nowrap; }
.file-item .orig-size { color: #444; }
.file-item .arrow { color: #333; font-size: 12px; }
.file-item .est-size { color: #aaa; min-width: 52px; text-align: right; }

.rmbg-result-meta .dl-btn,
.file-item .dl-btn {
  background: #1a3030;
  color: #4caf88;
  border: 1px solid #2a5040;
  border-radius: 30px;
  padding: 8px 10px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
}

.rmbg-result-meta .dl-btn:hover,
.file-item .dl-btn:hover { background: #1f3a35; }
.file-item .dl-btn--premium {
  background: rgba(64, 115, 232, 0.12);
  color: #4073e8;
  border-color: rgba(64, 115, 232, 0.3);
}
.file-item .dl-btn--premium:hover { background: rgba(64, 115, 232, 0.2); }

.limit-badge {
  color: #4caf88;
}

/* ── Remove-bg result card ── */
.rmbg-result-card {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.rmbg-preview-wrap {
  width: 100%;
  background: repeating-conic-gradient(#2a2a2a 0% 25%, #1a1a1a 0% 50%) 0 0 / 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  max-height: 500px;
  overflow: hidden;
}

.rmbg-preview-img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.rmbg-result-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rmbg-result-meta .fname {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rmbg-result-meta .fsize {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* ── Remove-bg strength slider ── */
.rmbg-strength-wrap {
  margin: 16px 0 16px;
}
.rmbg-strength-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.rmbg-strength-labels span:nth-child(2) {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.rmbg-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}
.rmbg-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4073e8;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.15s;
}
.rmbg-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.rmbg-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4073e8;
  border: 2px solid #fff;
  cursor: pointer;
}
.file-item .savings {
  font-size: 11px;
  color: #4caf88;
  white-space: nowrap;
}

/* ── File thumbnail ── */
.file-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #2a2a2a;
  display: block;
}
.file-thumb-fallback { object-fit: contain; }

/* ── Drag-to-reorder ── */
.drag-handle {
  cursor: grab;
  color: #3a3a3a;
  font-size: 18px;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
  padding: 0 2px;
  transition: color 0.15s;
}
.drag-handle:hover { color: #666; }
.drag-handle:active { cursor: grabbing; }
.file-item[draggable] { cursor: default; }

/* ── File list bar (count + clear all) ── */
.hidden { display: none !important; }
.file-list-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 8px;
}
.file-count { font-size: 12px; color: #555; }
.clear-btn {
  font-size: 14px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.36);
  padding: 10px 15px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.clear-btn:hover { border-color: #c44; color: #c44; }

/* ── Remove single file button ── */
.remove-btn {
  background: none;
  border: none;
  color: #444;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.remove-btn:hover { color: #c44; }
.file-item.dragging { opacity: 0.35; }
.file-item.drag-over {
  outline: 2px dashed #4a9eff;
  outline-offset: -2px;
  background: #1a2535;
}

/* ── Buttons ── */
.btn-row { display: flex; gap: 10px; }
.btn {
  flex: 1;
  background: linear-gradient(90deg, #4073e8 0%, #22449f 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.btn:hover { background: #4a8de0; }
.btn:disabled { opacity: 0.35; cursor: default; }
.btn.secondary {
  background: #222;
  border: 1px solid #333;
  color: #888;
  font-size: 13px;
  padding: 11px;
  margin-top: 8px;
  width: 100%;
}
.btn.secondary:hover { background: #2a2a2a; }

/* ── Status ── */
.status { margin-top: 14px; font-size: 13px; text-align: center; color: #fd2727; min-height: 20px; }
.status.err { color: #e07070; }
.status.ok  { color: #4caf88; }

/* ── Panel visibility ── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Result list separator ── */
#img-result-list:not(:empty) {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #222;
}

/* ── Download all bar ── */
.result-bar {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #222;
  font-size: 12px;
  color: #555;
}

/* ── Auth modal ── */
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal.hidden { display: none; }
.auth-box {
  backdrop-filter: blur(5px);
  box-shadow: inset -2px -5px 5px 0 rgba(255, 255, 255, 0.2);
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  max-width: 560px;
  position: relative;
}
.auth-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none;
  color: #444; font-size: 16px;
  cursor: pointer; line-height: 1;
}
.auth-close:hover { color: #aaa; }
.auth-tabs { 
  display: flex;
  gap: 2px;
  margin-bottom: 30px;
}

.auth-tab {
  flex: 1;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(0, 0, 0, 0.03);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding: 15px;
  border-radius: 100px 0 0 100px;
  cursor: pointer;
}

.auth-tab:last-child {
  border-radius: 0 100px 100px 0;
}

.auth-tab.active {
  color: #fff;
  box-shadow: inset -30px -20px 70px 0 rgba(58, 125, 177, 0.2);
  background: rgba(178, 220, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.auth-panel { display: none; flex-direction: column; gap: 10px; }
.auth-panel.active { display: flex; }
.auth-field { position: relative; }

.auth-field input,
.auth-panel input {
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  border: 1px solid #333;
  border-radius: 100px;
  color: #ddd;
  padding: 15px 15px;
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}
.auth-panel input:focus { border-color: #5b9df0; }
.auth-panel input.input-err { border-color: #e07070; }
.field-hint {
  position: absolute;
  top: -10px;
  left: 2px;
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
  line-height: 1;
  padding: 5px;
  background-color: #e07070;
  border-radius: 4px;
}
.field-hint:empty { display: none; }
.auth-err { font-size: 13px; min-height: 16px; text-align: center; }
.auth-err.err { color: #e07070; }
.auth-err.ok  { color: #4caf88; }
.auth-forgot-link { font-size: 13px; color: #888; text-decoration: none; }
.auth-forgot-link:hover { color: #aaa; text-decoration: underline; }
.auth-consent {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: #aaa;
  line-height: 1.4;
  cursor: pointer;
}

.auth-consent {
  column-gap: 10px;
  padding: 15px 0;
}

.auth-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: var(--primary-btn-color, #554FF8);
}
.auth-consent a {
  color: #5b9df0;
  text-decoration: underline;
}
.auth-consent a:hover { color: #7ab5f5; }

#hint-reg-consent {
  left: 25px;
  top: -1px;
}

/* ── Usage counter ── */
.usage-counter {
  font-size: 12px;
  color: #40E882;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.usage-counter .usage-num { color: #40E882; font-weight: 600; }
.usage-counter.warn .usage-num { color: #FD2727; }

/* ── Ad overlay ── */
.ad-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-overlay.hidden { display: none; }
.ad-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}
.ad-box .ad-label { font-size: 11px; color: #444; margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; }
.ad-box .ad-placeholder {
  background: #222;
  border: 1px dashed #333;
  border-radius: 8px;
  min-height: 120px;
  padding: 8px;
  margin-bottom: 20px;
}
.ad-fallback {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 13px;
}
.ad-fallback.hidden { display: none; }
#yandex_rtb_main {
  width: 100%;
  min-height: 90px;
}
.ad-btn-close {
  background: #5b9df0;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.ad-btn-close:hover { background: #4a8de0; }

/* ── Premium upsell modal ── */
.premium-upsell-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-upsell-modal.hidden { display: none; }
.premium-upsell-box {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.31);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 20px;
  padding: 25px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
}
.premium-upsell-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.premium-upsell-close:hover { color: #aaa; }
.premium-upsell-badge {
  display: inline-block;
  background: rgba(91,157,240,0.15);
  color: #5b9df0;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.premium-upsell-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  margin: 0 0 12px;
}
.premium-upsell-desc {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #b2b2b2;
  margin: 0 0 20px;
}
.premium-upsell-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: inline-block;
}
.premium-upsell-features li {
  font-size: 14px;
  color: #ccc;
  padding: 4px 0;
}

.upsell-features-ico {
  margin-right: 10px;
}
.premium-upsell-price {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.premium-upsell-price span {
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

.premium-upsell-btn {
  display: block;
  text-decoration: none;
  margin-bottom: 15px;
}

.premium-upsell-skip {
  background: none;
  border: none;
  color: #B2B2B2;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.premium-upsell-skip:hover { color: #888; }

/* ── Pricing page ── */
.logo-link {
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}


.logo-elipse {
  display: inline-block;
  margin: 0 3px;
  border-radius: 16px;
  width: 5px;
  height: 5px;
  box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.25);
  background-color: #3f5b70;
}

.notice-banner {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.notice-banner.hidden { display: none; }

.notice-banner__box {
  position: relative;
  width: min(560px, 92vw);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.2);
  background: rgba(14, 14, 14, 0.92);
  padding: 28px 52px 26px 24px;
}

.notice-banner__text {
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
}

.notice-banner__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #9da8b8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.notice-banner__close:hover {
  color: #ffffff;
}

.notice-banner--ok .notice-banner__box   { 
  backdrop-filter: blur(5px);
  box-shadow: inset -2px -5px 5px 0 rgba(255, 255, 255, 0.2);
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-banner--ok .notice-banner__text  {
  color: #8dd2b7;
}

.notice-banner--err .notice-banner__box  {
  backdrop-filter: blur(5px);
  box-shadow: inset -2px -5px 5px 0 rgba(255, 255, 255, 0.2);
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-banner--err .notice-banner__text {
  color: #FD2727;
}

.notice-banner--info .notice-banner__box {
  backdrop-filter: blur(5px);
  box-shadow: inset -2px -5px 5px 0 rgba(255, 255, 255, 0.2);
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-banner--info .notice-banner__text{
  color: #8fbdf6;
}

.price-bg {
  background-image: url('./img/price-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top 200px center;
}

.pricing-header {
  width: 100%;
  margin-bottom: 28px;
  text-align: center;
}

.price-section {
  position: relative;
}

.price-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.price-desc {
  max-width: 60%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 32px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(15px);
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.31);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
}
.pricing-card--featured {
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.31);
  background: linear-gradient(180deg, rgba(61, 111, 225, 0.8) 0%, rgba(37, 72, 165, 0.6) 100%);
}

.pricing-card--free {
  position: relative;
}

.donut-ico {
  position: absolute;
  right: 20px;
  top: -50px;
}

.crown-ico {
  position: absolute;
  right: 20px;
  top: -60px;
  transform: rotate(16.64deg);
}

.pricing-name {
  max-width: fit-content;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 10px 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  border-radius: 100px
}

.pricing-desc {
  font-weight: 400;
  font-size: 14px;
  color: #b2b2b2;
  margin-bottom: 20px;
  max-width: 50%;
}

.priceing-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #60788c 0%, #7fa6c5 100%);
  margin-bottom: 20px;
}

.price-container {
  column-gap: 10px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-name { 
  color: #fff;
}

.pricing-price {
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  color: #fff;
  line-height: 1; 
}

.pricing-currency { font-size: 18px; font-weight: 400; color: var(--text-color-light); }
.pricing-period   {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color-light);
}

.pricing-promo-row { display: flex; align-items: baseline; gap: 10px; }
.pricing-old-price {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-decoration: line-through;
}

.sale-container {
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
}

.countdown-label {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: #3b6cdb;
  border-radius: 100px;
  padding: 10px 15px;
  flex-wrap: wrap;
}

.pricing-free-btn {
  margin-top: auto;
  background: none;
  border: none;
  color: #fff;
  cursor: default;
  font-weight: 400;
  font-size: 14px;
  opacity: 1;
  text-align: left;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.pricing-features li {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  display: flex;
  column-gap: 8px;
  align-items: center;
  line-height: 1;
}

.premium-btn {
  margin-top: auto;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.compare-section {
  width: 100%;
}
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  min-width: 460px;
}
.compare-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(211,218,255,.6);
  border-bottom: 1px solid rgba(211,218,255,.1);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.col-premium {
  color: #4073E8;
  background: rgba(64,115,232,.08);
  border-radius: 8px 8px 0 0;
}
.compare-table tbody tr:hover td { background: rgba(211,218,255,.03); }
.compare-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(211,218,255,.07);
  color: rgba(211,218,255,.85);
  vertical-align: middle;
}
.compare-table tbody td:first-child { color: #fff; font-weight: 500; }
.compare-table tbody td:not(:first-child) { text-align: left; }
.compare-table tbody td.col-premium { background: rgba(64,115,232,.05); }
.compare-table tbody tr:last-child td.col-premium { border-radius: 0 0 8px 8px; }

.compare-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 400;
}
.compare-badge--ok { background: rgba(64,232,128,.12); color: #40E882; }
.compare-badge--limit { color: #ffffff; }
@media (max-width: 600px) {
  .compare-table thead th, .compare-table tbody td { padding: 9px 10px; font-size: 13px; }
}

.pricing-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.faq-item {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 16px 20px;
}
.faq-q { font-size: 13px; font-weight: 600; color: #ccc; margin-bottom: 5px; }
.faq-a { font-size: 13px; color: #555; }

.faq-link {
  text-decoration: none;
  color: #4073E8;
  transition: 0.3s color ease-in-out;
}

.faq-link:hover {
  color: #22449F;
}

/* ── Pricing link in header nav ── */
.nav-pricing {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-pricing:hover { color: #aaa; background: #1e1e1e; }

/* ── Main navigation with dropdowns ── */
  .bar-wrapper {
    align-items: center;
    column-gap: 20px;
  }

.main-nav {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  border-radius: 100px;
  padding: 10px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--text-color-light);
  text-decoration: none;
  padding: 20px 30px;
  min-width: 185px;
  border-radius: 100px;
  align-items: center;
  cursor: pointer;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.05);
  background: rgb(0 0 0 / 1%);
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  transition: border-color 0.3s;
  white-space: nowrap;
  user-select: none;
}
.nav-link:hover { border-color: rgba(255, 255, 255, 0.1); }
.nav-link:hover .nav-arrow {
  color: #3779AC;
}

.nav-link.active { 
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  color: #fff; 
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-arrow {
  width: 10px;
  font-size: 20px;
  opacity: 1;
  margin-top: 1px; color: #FFFFFF;}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.31);
  background: rgba(178, 220, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  padding: 4px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-item {
  display: block;
  padding: 9px 12px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.nav-dropdown-item:hover { 
  color: #ddd; 
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
}

.nav-dropdown-item.active { color: #5b9df0; background: #1a2535; }

.nav-spacer { margin-left: auto; }

/* ── Tool page layout ── */
.tool-page {
  width: 100%;
}

/* ── Home page cards grid ── */
.sec-title-container {
  display: flex;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 50%;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.sec-title-container--pages {
  max-width: 60%;
}

.tool-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tool-card {
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.31);
  background: rgba(178, 220, 255, 0.03);
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 20px;
  padding: 25px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.3s ease-in-out;
}

.tool-card:hover { 
  /* border-color: rgba(58, 125, 177, 1); */
  background: #131415;
  box-shadow: inset -131px -67px 120px 0 rgba(58, 125, 177, 0.31);
}

.tool-card-title {
  display: flex;
  column-gap: 15px;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #ddd;
  margin-bottom: 80px;
  transition: color 0.3s ease-in-out;
}

.tool-card-title svg {
  fill: #444444;
  transition: fill 0.3s ease-in-out;
}

.tool-card:hover .tool-card-title { 
  color: rgba(58, 125, 177, 1);
}

.tool-card:hover .tool-card-title>svg { 
  fill: rgba(58, 125, 177, 1);
}

.tool-card-desc {
  font-weight: 400;
  font-size: 12px;
  color: #b2b2b2;
  margin-top: auto;
}

/* --PWA-- */
.pwa-title-container {
  max-width: 55%;
}

.pwa-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  grid-template-areas:
    'ios'
    'android'
    'pc';
}

.pwa-grid #ios     {
  grid-area: ios;
}

.pwa-grid #android {
  grid-area: android;
}

.pwa-grid #pc {
  grid-area: pc;
}

.pwa-media {
  position: absolute;
  right: 0; z-index: -1;
  max-width: 54%;
}

.pwa-img {
  display: block;
  width: 100%;
  height: auto;
}

.pwa-card {
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 20px 0 rgba(58, 125, 177, 0.31);
  background: rgba(178, 220, 255, 0.03);
  border-radius: 20px;
  padding: 25px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 70px;
  z-index: 1;
}

.pwa-card-title {
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #ddd;
}

.pwa-card-desc {
  font-weight: 400;
  font-size: 12px;
  color: #b2b2b2;
  margin-top: auto;
}

/* ── SEO block (под карточкой инструмента) ── */
.seo-block {
  flex-direction: column;
  row-gap: 80px;
}

.seo-container ul {
  padding-left: 20px;
}

.seo-title {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 30px;
  line-height: 120%;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #60788c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.seo-desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #b2b2b2;
  margin-bottom: 10px;
}

/* ── About section ── */

.about:first-child {
  margin-bottom: 80px;
}

.about-title {
  margin-bottom: 40px;
  max-width: 660px;
  font-weight: 500;
  font-size: 30px;
  line-height: 120%;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #60788c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-desc {
  max-width: 900px;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #b2b2b2;
  margin-bottom: 10px;
}

/* ── FAQ аккордион ── */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item-acc {
  background: transparent;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #141719 0%, #60788c 100%) 1;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item-acc.open { border-color: #333; }
.faq-q-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'Involve', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: left;
  color: #fff;
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-q-btn:hover { color: #4073e8; }
.faq-chevron {
  flex-shrink: 0;
  font-size: 10px;
  background: linear-gradient(90deg, #4073e8 0%, #22449f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: transform 0.2s;
}
.faq-item-acc.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item-acc.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 20px 16px;
  font-size: 13px;
  color: #999;
  line-height: 1.7;
}

/* ── Compress page ── */
.compress-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.compress-card .card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.compress-card .card-sub {
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
}

/* Drop zone */
.compress-drop {
  border: 2px dashed #2e2e2e;
  border-radius: 12px;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 20px;
}
.compress-drop:hover, .compress-drop.drag-over {
  border-color: #4073E8;
  background: rgba(91,157,240,0.05);
  color: #aaa;
}
.compress-drop input { display: none; }
.compress-drop-icon { font-size: 32px; margin-bottom: 8px; }

/* Controls */
.compress-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 15px;
}
.quality-label {
  font-size: 13px;
  color: #aaa;
  white-space: nowrap;
}
.quality-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  min-width: 30px;
}
.quality-slider {
  flex: 1;
  min-width: 120px;
  accent-color: #4a9eff;
  cursor: pointer;
}
.fmt-select {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 100px;
  color: #ffffff;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
}
.compress-btn {
  width: 100%;
}

/* Stats row */
.compress-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-label { color: #555; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { color: #ddd; font-weight: 600; }
.stat-value.green { color: #4caf7d; }
.stat-value.red { color: #e57373; }

/* Compare slider */
.compare-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: #111;
  min-height: 60px;
}
.compare-wrap img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.compare-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.compare-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.compare-handle {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #222;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}
.compare-label-before,
.compare-label-after {
  position: absolute;
  top: 10px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(9, 9, 9, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  pointer-events: none;
}
.compare-label-before { left: 10px; }
.compare-label-after  { right: 10px; }

/* Download btn */
.download-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.download-btn {
  background: #1e3a2f;
  color: #4caf7d;
  border: 1px solid #2d5a44;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.download-btn:hover { background: #243f33; }

/* Status */
.compress-status {
  font-size: 13px;
  color: #40E882;
  margin-top: 15px;
  min-height: 18px;
  text-align: center;
}
.compress-status.err {
  text-align: center;
  margin-top: 15px;
  color: #fd2727;
}

/* ── Footer ── */
.site-footer {
  width: 100%;
  padding: 50px 0;
  background-color: #151515;
  border-radius: 20px 20px 0 0;
}

.footer-logo {
  display: block;
  margin-bottom: 40px;
}

.footer-logo h1 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 150px);
  column-gap: 20px;
  row-gap: 10px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-links a {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #e6e6e6;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.links-line {
  width: 1px;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-center {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.footer-support {
  column-gap: 40px;
}

.support-email,
.support-dzen {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.support-email span,
.support-dzen span {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #b2b2b2;
}

.support-email a {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.support-email a:hover {
  color: #4073E8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}

.development-link {
  color: #84a5ff !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-links a:hover {
    color: #4073e8;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 12px;
}
.footer-legal a {
  font-size: 11px;
  color: #e6e6e6;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: #555; }
.footer-copy {
  font-size: 11px;
  color: #e6e6e6;
}

/* ── Cookie consent banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  align-items: center;
  column-gap: 10px;
  justify-content: space-between;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-wrapper {
  align-items: center;
  column-gap: 20px;
  max-width: 60%;
}

.cookie-text {
  flex: 1;
  font-size: 13px;
  color: #888;
  min-width: 200px;
  line-height: 1.5;
}
.cookie-text a {
  color: #7aa2ff;
  text-decoration: underline;
  max-width: fit-content;
}

.cookie-text a:hover { text-decoration: underline; }
.cookie-accept {
  background: linear-gradient(90deg, #4073e8 0%, #22449f 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cookie-accept:hover { background: #4073e8; }
.cookie-close {
  background: none;
  border: none;
  color: #444;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  order: 3;
  transition: color 0.15s;
  flex-shrink: 0;
}
.cookie-close:hover { color: #4073e8; }

/* ── Merge PDF — grid of page thumbnails ── */
.merge-pages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.merge-page-card {
  width: 100px;
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.31);
  background: rgba(178, 220, 255, 0.03);
  border-radius: 8px;
  padding: 8px;
  cursor: grab;
  border: 2px solid transparent;
  transition: border-color 0.15s, opacity 0.15s;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merge-page-card canvas { width: 100%; height: auto; border-radius: 4px; display: block; }
.merge-page-card.dragging { opacity: 0.35; cursor: grabbing; }
.merge-page-card.drag-over { border-color: #4a9eff; background: #1a2535; }
.page-label { font-size: 10px; color: #555; margin-top: 4px; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%; }
.page-remove { display: block; width: 100%; background: none; border: none; color: #b2b2b2; font-size: 11px; cursor: pointer; padding: 3px 0; text-align: center; transition: color 0.15s; margin-top: 2px; }
.page-remove:hover { color: #c44; }

/* ── Пресеты ── */
.preset-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.preset-btn {
  padding: 10px 15px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  color: #bbb;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.preset-btn:hover { border-color: #4a9eff; color: #ddd; }
.preset-btn.active {
  border-color: #4073E8;
  color: #4073E8;
  font-weight: 600;
}
/* ── Кастом-размер ── */
.custom-size-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.custom-size-row input[type="number"] {
  width: 90px;
  padding: 6px 10px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #ddd;
  font-size: 14px;
}
.custom-size-row input[type="number"]:focus {
  outline: none;
  border-color: #4a9eff;
}
.custom-size-row .sep { color: #555; font-size: 16px; }
.custom-size-row .px-label { color: #666; font-size: 12px; }
/* ── Цвет фона ── */
.color-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.color-row label { color: #aaa; font-size: 13px; }
.color-swatch-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.swatch {
  width: 28px;
  height: 28px;
  border-radius: 100px;
  border: 2px solid #333;
  cursor: pointer;
  transition: border-color 0.15s;
}
.swatch.active, .swatch:hover { border-color: #4a9eff; }
.swatch-custom {
  display: flex;
  align-items: center;
  gap: 6px;
}
.swatch-custom input[type="color"] {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  border-radius: 6px;
}
/* ── Формат вывода ── */
.fmt-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.fmt-row label { color: #aaa; font-size: 13px; }
.fmt-btn {
  padding: 10px 15px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
  background: rgba(178, 220, 255, 0.03);
  color: #bbb;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.fmt-btn:hover {
  border-color: #4073E8;
}

.fmt-btn.active {
  background: #1a2f4a;
  border-color: #4073E8;
  color: #4073E8;
  font-weight: 600;
}
/* ── Скрыть кастом-поля ── */
.hidden-block { display: none !important; }


/* ── Split PDF: page chips ── */
.page-chips-label { font-size: 12px; color: rgba(255,255,255,0.45); margin: 16px 0 6px; }
.page-chips {
  display: flex; flex-wrap: wrap; gap: 4px;
  max-height: 160px; overflow-y: auto;
  padding: 2px 0 4px;
}
.page-chip {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 11px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  user-select: none;
}
.page-chip.rc0 { background: #4073E8; color: #fff; border-color: #4073E8; }
.page-chip.rc1 { background: #7B5CF0; color: #fff; border-color: #7B5CF0; }
.page-chip.rc2 { background: #E8734D; color: #fff; border-color: #E8734D; }
.page-chip.rc3 { background: #3EB8D0; color: #1a1a1a; border-color: #3EB8D0; }

/* ── Ranges list ── */
.ranges-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.range-item { display: flex; flex-direction: column; gap: 4px; }
.range-row { display: flex; align-items: center; gap: 8px; }
.range-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.range-item input[type="text"] {
  flex: 1; padding: 9px 12px; border-radius: 30px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-size: 14px; outline: none;
}

.range-item input[type="text"]:focus { border-color: rgba(255,255,255,0.35); }
.range-remove {
  background: none; border: none; color: rgba(255,255,255,0.35);
  cursor: pointer; font-size: 20px; line-height: 1; padding: 2px 4px;
}
.range-remove:hover { color: #ff5555; }
/* ── Range preview thumbnails ── */
.range-preview {
  display: flex; flex-wrap: nowrap; gap: 6px;
  overflow-x: auto; padding: 4px 0 4px 18px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.range-preview::-webkit-scrollbar { height: 3px; }
.range-preview::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.range-thumb { display: flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0; }
.range-thumb img {
  height: 76px; width: auto; max-width: 110px;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.15);
  display: block; background: rgba(255,255,255,0.04);
}
.range-thumb-ph {
  height: 76px; width: 54px; border-radius: 4px;
  border: 1px solid; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03); animation: ph-pulse 1.2s ease-in-out infinite alternate;
}
@keyframes ph-pulse { from { opacity: 0.5; } to { opacity: 1; } }
.range-thumb-num { font-size: 10px; color: rgba(255,255,255,0.38); }
.range-thumb-more {
  align-self: center; flex-shrink: 0; font-size: 11px;
  color: rgba(255,255,255,0.35); padding-left: 4px;
}
.btn-link {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  color: #ffffff;
  box-shadow: inset -10px -10px 10px 0 rgba(255, 255, 255, 0.07);
  background: #0f0f0f;
  cursor: pointer;
  font-size: 13px;
  padding: 8px 12px;
  display: inline-block;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.btn-link:hover {
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset -30px -20px 10px 6px rgba(255, 255, 255, 0.07);
}
.split-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-outline {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  border-radius: 100px; padding: 10px 18px; cursor: pointer; font-size: 14px;
}
.btn-outline:hover:not(:disabled) { background: rgba(255,255,255,0.12); }
.btn-outline:disabled { opacity: 0.4; cursor: default; }


.legal-page { padding: 40px 0; }
.legal-page h1 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.legal-page .legal-meta { font-size: 13px; color: #b0b0b0; margin-bottom: 32px; }
.legal-page h2 { font-size: 15px; font-weight: 600; color: #ccc; margin: 28px 0 10px; }
.legal-page p, .legal-page li { font-size: 13px; color: #888; line-height: 1.8; }
.legal-page ul, .legal-page ol { padding-left: 20px; margin: 8px 0 12px; }
.legal-page li { margin-bottom: 4px; }
.legal-page a { color: #554FF8; text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-page .legal-divider { border: none; border-top: 1px solid #222; margin: 32px 0; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px; }
.legal-page th, .legal-page td { border: 1px solid #2a2a2a; padding: 10px 12px; text-align: left; color: #888; }
.legal-page th { background: #1e1e1e; color: #aaa; font-weight: 600; }

/* Media */
@media (max-width: 1051px) {
  .hero-title {
    max-width: 100%;
  }

  .sec-title-container {
    max-width: 70%;
  }

  .sec-title-container--pages {
    max-width: 80%;
  }

  .tool-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-bg {
    background-position: top 300px center;
  }

  .footer-center {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }

  .footer-legal {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 961px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 40px 0;
  }

  .bar-wrapper {
    align-items: center;
  }

  .user-bar {
    justify-content: space-between;
  }

  .plan-badge {
    margin-left: auto;
  }

  .nav-link {
    padding: 10px 10px;
    font-size: 13px;
    min-width: 100px;
    width: fit-content;
    min-height: 50px;
  }

  .title-container {
    max-width: 100%;
  }

  .hero-img {
    top: -250px;
  }

  .main-nav {
    gap: 10px;
  }

  .nav-price {
    min-width: 120px;
  }

  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pwa-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    grid-template-areas:
        'ios'
        'android'
        'pc';
  }

    .pwa-media {
      position: static;
      max-width: 100%;
      margin-top: -20px;
      z-index: 1;
    }


  .about-title {
    margin-bottom: 30px;
    font-size: 25px;
  }

  .seo-title {
    margin-bottom: 30px;
    font-size: 25px;
  }
}

@media (max-width: 761px) {
  .logo-link {
    font-size: 16px;
  }

  .logout-btn svg {
    display: none;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-bg {
    background-position: top 650px center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .pricing-desc {
    max-width: 100%;
  }

}

@media (max-width: 560px) {
  body {
    padding-top: 15px;
  }
    
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 30px 0;
  }

  .bar-wrapper {
    flex-direction: column;
    row-gap: 15px;
    align-items: flex-start;
  }

  .user-bar {
    margin-left: 0;
    width: 100%;
  }

  .rate-name {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 40px 0;
  }
  
  .hero-img {
    display: none;
  }

  .hero-img--mobile {
    display: block;
    top: 250px;
  }

  .supertitle {
    font-size: 12px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 110%;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-desc {
    font-size: 12px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .sec-title-container {
    max-width: 100%;
    width: fit-content;
  }

  .sec-title-container--pages {
    max-width: 100%;
    width: fit-content;
  }

  .section-title {
    font-size: 25px;
  }

  .section-desc {
    font-size: 12px;
  }

  .tool-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .tool-card-title {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .pwa-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    grid-template-areas:
        'ios'
        'android'
        'pc';
  }

  .pwa-card {
    row-gap: 40px;
  }
  
  .pwa-card-title {
    font-size: 16px;
  }
  

  .seo-block {
    row-gap: 30px;
  }

  .about:first-child {
    margin-bottom: 40px;
  }

  .about-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

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

  .about-desc {
    font-size: 12px;
  }

  .seo-desc {
    font-size: 12px;
  }

  .faq-q-btn {
    font-size: 16px;
  }

  .price-desc {
    max-width: 100%;
  }

  .footer-links {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-support {
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    row-gap: 15px;
  }

  .footer-legal {
    flex-direction: column;
    row-gap: 15px;
  }

  .compress-card,
  .card {
    padding: 20px;
  }
}

/* ── Mobile Bottom Navigation ── */
.mob-nav          { display: none; }
.mob-nav-overlay  { display: none; }
.mob-nav-sheet    {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 0 0;
  padding: 12px 20px 84px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 70vh;
  overflow-y: auto;
  display: none;
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  /* Bottom nav bar */
  .mob-nav {
    display: flex;
    position: fixed;
    bottom: 10px;
    left: 50%;
    column-gap: 5px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    height: 60px;
    border-radius: 100px;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: inset -2px -5px 5px 0 rgba(255, 255, 255, 0.2);
    background: rgba(14, 14, 14, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: stretch;
  }


  .mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: 1px solid transparent;
    color: #fff;
    border-radius: 100px;
    font-size: 8px;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    padding: 6px 4px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }

  .mob-nav-item.active,
  .mob-nav-item:hover {
    color: #4073e8;
    box-shadow: inset -20px -10px 50px 0 rgba(58, 125, 177, 0.13);
    background: rgba(178, 220, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mob-nav-icon {
    width: 36px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.2s;
  }

  /* .mob-nav-item.active .mob-nav-icon {
    background: rgba(64, 115, 232, 0.14);
  } */

  .mob-nav-label {
    font-size: 8px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
  }

  /* Overlay */
  .mob-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1100;
    pointer-events: none;
    transition: background 0.3s;
  }

  .mob-nav-overlay.open {
    background: rgba(0, 0, 0, 0.55);
    pointer-events: auto;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  /* Sheet */
  .mob-nav-sheet {
    display: block;
  }

  .mob-nav-sheet.open {
    transform: translateY(0);
  }

  .mob-sheet-handle {
    width: 36px;
    height: 4px;
    background: #4073E8;
    border-radius: 2px;
    margin: 0 auto 16px;
  }

  .mob-sheet-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 14px;
  }

  .mob-sheet-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mob-sheet-link {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.3;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .mob-sheet-link.active,
  .mob-sheet-link:hover {
    background: rgba(64, 115, 232, 0.14);
    color: #4073e8;
    border-color: rgba(64, 115, 232, 0.28);
  }

  .cookie-banner {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 16px;
  }

  .cookie-close {
    margin-left: auto;
  }

  .cookie-wrapper {
    max-width: 100%;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
  }
}
