body,
html {
  height: 100%;
  font-family: 'Geologica', sans-serif;
  font-weight: 300;
}
* {
  box-sizing: border-box;
}
body {
  font-size: 16px;
  line-height: 140%;
  position: relative;
  background: #f8f9fd;
}
img {
  max-width: 100%;
}
button,
input,
select,
textarea {
  outline: none;
  box-sizing: border-box;
}
input,
textarea,
select {
  font-family: 'Geologica', sans-serif;
}
input:focus,
textarea:focus,
select:focus {
  border: 1px solid #000000;
}
input.error {
  box-shadow: inset 0 0 0px 2px red;
}
input.error ~ label {
  display: none !important;
}
input.error ~ .hint {
  display: block;
}
.input-field {
  position: relative;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #8D8D91;
}
textarea {
  height: 120px;
  resize: none;
}
button {
  font-family: 'Geologica', sans-serif;
  border-radius: 8px;
  background: #3081ca;
  height: 50px;
  padding: 0 38px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
}
button:hover {
  transform: scale(1.01);
}
h1,
h2 {
  margin: 0;
  margin-bottom: 0px;
}
a {
  text-decoration: none;
  font-size: 15px;
}
a:hover {
  text-decoration: underline;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.inline {
  display: inline-flex;
}
.flex.jcsb {
  justify-content: space-between;
}
.flex.jce {
  justify-content: flex-end;
}
.flex.ais {
  align-items: flex-start;
}
.flex.aic {
  align-items: center;
}
.flex.jcc {
  justify-content: center;
}
.flex.aib {
  align-items: flex-end;
}
.flex.nowrap {
  flex-wrap: nowrap;
}
.flex.grow {
  flex-grow: 2;
}
.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 35px;
  margin: 0 auto;
  flex: 1;
}
.caption {
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}
h1 {
  font-size: 42px;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 37px;
}
header,
footer {
  background: #ffffff;
}
header {
  position: relative;
  padding: 24px 0 18px 0;
  border-bottom: 1px solid #dedede;
}
header .logo {
  width: 200px;
}
header .language {
  position: relative;
}
header .language .current {
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  border: 1px solid #dedede;
  background: rgb(255 255 255 / 90%);
}
header .language .current span {
  width: 20px;
  height: 20px;
  background: url('../img/icon-lang.svg') center center no-repeat;
  filter: invert(1);
}
header .language .current p {
  margin-left: 6px;
}
header .language.active .dropdown {
  display: block;
}
header .language.active .current {
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}
header .language .dropdown {
  position: absolute;
  display: none;
  top: 100%;
  right: 0;
  border: 1px solid #dedede;
  border-radius: 8px 0 8px 8px;
  background: rgb(255 255 255 / 90%);
  padding: 10px 24px;
  z-index: 2;
}
header .language .dropdown li:first-of-type {
  display: none;
}
header .language .dropdown .item {
  color: #000;
  line-height: 240%;
  white-space: nowrap;
  overflow: hidden;
}
header .tool-nav-menu {
  display: block;
  margin: 0;
  position: relative;
}
header .tool-nav-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
header .tool-nav {
  gap: 12px;
}
header .tool-nav-desktop {
  display: none;
}
header .tool-nav-toggle {
  width: auto;
  min-width: 92px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #dedede;
  background: #fff;
  display: inline-flex;
  align-items: center;
  padding: 0 12px 0 36px;
  position: relative;
  cursor: pointer;
}
header .tool-nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #1c263d;
  display: block;
  position: absolute;
  left: 11px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
header .tool-nav-toggle span:nth-child(1) {
  top: 13px;
}
header .tool-nav-toggle span:nth-child(2) {
  top: 18px;
}
header .tool-nav-toggle span:nth-child(3) {
  top: 23px;
}
header .tool-nav-toggle .tool-nav-toggle-text {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  color: #1c263d;
  line-height: 1;
  white-space: nowrap;
}
header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(2) {
  opacity: 0;
}
header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}
header .tool-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
header .tool-nav-checkbox:checked ~ .tool-nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .tool-nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -6px, 0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 20px));
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 14px;
  padding: 10px;
  margin-top: 0;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(28, 38, 61, 0.12);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform;
}
header .tool-nav-checkbox:checked ~ .tool-nav-mobile {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
header .tool-nav-mobile .tool-link {
  display: block;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
}
header .tool-link {
  position: relative;
  color: #000514;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
}
header .tool-link-badge-new {
  position: absolute;
  top: 1px;
  right: 10px;
  display: inline-block;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #bf700d;
}
header .tool-link-badge-soon {
  position: absolute;
  top: 1px;
  right: 10px;
  display: inline-block;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #888;
}
header .tool-link-soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
header .tool-link:hover {
  text-decoration: none;
  background: #f3f5fc;
}
header .tool-link.active {
  border-color: #dddddd;
  background: #ffffff;
}
.content .top-title {
  text-align: center;
  padding: 80px 0 0 0;
}
.sharethis-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.fallback-share-buttons {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fallback-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dde7;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  color: #1c263d;
  background: #fff;
}
.fallback-share-btn:hover {
  background: #f3f5fc;
  text-decoration: none;
}
.content .top-title p {
  font-size: 24px;
  line-height: 140%;
  color: #1c263d;
}
.content .top-title span {
  font-size: 40px;
  color: #3081ca;
  font-weight: 600;
  display: block;
  margin-top: 5px;
}
.tool-moved-notice {
  margin: 38px auto -10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 970px;
  padding: 18px 22px;
  border-radius: 20px;
  background: #3081ca0d;
  color: #1c263d;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.tool-moved-notice p {
  margin: 0 0 14px;
  font-size: 15px;
  color: #475467;
  line-height: 1.5;
}
.tool-moved-btn {
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 120px;
  padding: 20px 30px;
  border-radius: 999px;
  background: #3081ca;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  width: fit-content;
}
.tool-moved-btn::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url('/static/img/ico-right-arrow.svg') center / contain no-repeat;
  mask: url('/static/img/ico-right-arrow.svg') center / contain no-repeat;
}
.tool-moved-btn:hover {
  transform: scale(1.008);
  text-decoration: none;
}
.content .input-form {
  margin: 50px 0;
}
.content .input-form form {
  max-width: 970px;
  margin: 0 auto;
  position: relative;
}
.content .input-form .download-disclaimer {
  max-width: 970px;
  margin: 18px auto 0;
  padding: 18px 22px;
  border-radius: 20px;
  background: #3081ca0d;
  color: #1c263d;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.content .input-form .download-disclaimer-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: start;
  gap: 20px;
}
.content .input-form .download-disclaimer-content {
  text-align: left;
  flex: 1 1 auto;
}
.content .input-form .download-disclaimer-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 200px;
  margin-left: 0;
}
.content .input-form .download-disclaimer-report-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  margin-left: auto;
}
.content .input-form .input-disclaimer {
  font-size: 14px;
  color: #aaa;
  padding: 20px 20px 0;
  margin: auto;
  text-align: center;
  max-width: 970px;
}
.content .input-form .search-trust-badges {
  max-width: 970px;
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #1c263d;
}
.content .input-form .search-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}
.content .input-form .search-trust-item img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}
.content .input-form .download-disclaimer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}
.content .input-form .download-disclaimer p + p {
  margin-top: 6px;
}
.content .input-form .download-disclaimer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #3081ca;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  width: 100%;
}
.content .input-form .download-disclaimer-btn:hover {
  background: #08773f;
}
.content .input-form .download-disclaimer-report-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #3081ca33;
  background: #fff;
  color: #3081ca;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 100%;
}
.content .input-form .download-disclaimer-report-btn:hover {
  background: #3081ca14;
  border-color: #3081ca66;
}
.content .input-form .download-disclaimer-report-btn[disabled] {
  opacity: 0.65;
  cursor: default;
}
.content .input-form .broken-link-report-form {
  width: 100%;
  margin: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content .input-form .broken-link-report-form[hidden] {
  display: none !important;
}
.content .input-form .broken-link-report-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #d8dde7;
  background: #fff;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 14px;
  color: #1c263d;
}
.content .input-form .broken-link-report-input:focus {
  outline: none;
  border-color: #3081ca;
  box-shadow: 0 0 0 3px rgba(70, 128, 67, 0.12);
}
.content .input-form .broken-link-report-website {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.content .input-form .broken-link-report-form .broken-link-report-submit {
  position: static;
  top: auto;
  right: auto;
  margin-top: 0;
  flex: 0 0 auto;
  height: 44px;
  width: 100%;
  padding: 0 16px;
  border: 0;
  background: #3081ca;
  background-image: none;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.content .input-form .broken-link-report-form .broken-link-report-submit:disabled {
  opacity: 0.7;
  cursor: default;
}
.content .input-form .broken-link-report-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
  flex: 0 0 auto;
}
.content .input-form .broken-link-report-status[hidden] {
  display: none;
}
.content .input-form .broken-link-report-status.success {
  color: #0a7440;
  text-align: center;
}
.content .input-form .broken-link-report-status.error {
  color: #cc2f2f;
}
@media (max-width: 980px) and (min-width: 641px) {
  .content .input-form .download-disclaimer-primary {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .content .input-form .download-disclaimer-actions {
    max-width: 100%;
    margin-left: 0;
  }
  .content .input-form .download-disclaimer-report-wrap {
    align-items: stretch;
    width: 100%;
    margin-left: 0;
  }
  .content .input-form .broken-link-report-status {
    text-align: center;
  }
}
.content .input-form form input {
  width: 100%;
  border: 3px solid #000000;
  background: white;
  height: 76px;
  padding: 18px 92px 18px 32px;
  border-radius: 38px;
  font-size: 18px;
  font-weight: 250;
  letter-spacing: -0.08px;
  color: #1c263d;
  box-shadow: 0 4px 20px rgba(30, 123, 133, 0.15);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.content .input-form form input:focus {
  box-shadow: 0 6px 28px rgba(30, 123, 133, 0.25);
  outline: none;
}
.content .input-form form input::placeholder {
  color: #8a9ab0;
}
.content .input-form form button[type="submit"] {
  position: absolute;
  top: 50%;
  right: 7px;
  margin-top: -32px;
  border-radius: 38px;
  height: 64px;
  border: none;
  padding: 32px 37px;
  background: #3081ca url(../img/icon-download-no-active.svg) center center no-repeat;
  background-size: 33px 33px;
  transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(30, 123, 133, 0.3);
}
.content .input-form form button[type="submit"]:hover:not(:disabled) {
  transform: scale(1.01);
}
.content .input-form form button[type="submit"]:disabled {
  background: #e4e4e4 url(../img/icon-download-no-active.svg) center center no-repeat;
  background-size: 33px 33px;
  cursor: not-allowed;
  box-shadow: none;
}
.content .input-form form button.clear-button {
  width: 52px;
  height: 52px;
  position: absolute;
  top: 50%;
  margin-top: -26px;
  right: 88px;
  border-radius: 50%;
  background: #eff3f4;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .1s ease, border-color .2s ease;
}
.content .input-form form button.clear-button:hover {
  transform: scale(1.05);
}
.content .input-form form button.clear-button img {
  width: 24px;
  height: 24px;
}
.content .quality-control.global {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}
.content .quality-control.global label {
  font-weight: 600;
  color: #000514;
}
.content .quality-control.global select {
  width: fit-content;
  border: 2px solid #dcdcdc !important;
  border-radius: 25px;
  padding: 10px 36px 10px 16px;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../img/menu-arrow.svg) right 12px center no-repeat;
  background-size: 14px 14px;
  cursor: pointer;
}
.content .quality-control.global.hidden {
  display: none;
}
.content .quality-control.global select.locked {
  opacity: 0.6;
  cursor: not-allowed;
}
.content .bottom-info .home-tools-section {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 20px;
  text-align: center;
}
.content .bottom-info .home-tools-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.content .bottom-info .home-tool-card {
  background: #ffffff4a;
  padding: 28px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content .bottom-info .home-tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.content .bottom-info .home-tool-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
  object-fit: contain;
  background: #3081ca0d;
  padding: 15px;
  border-radius: 20px;
}
.content .bottom-info .home-tool-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000514;
  margin-bottom: 10px;
}
.content .bottom-info .home-tool-card p {
  font-size: 14px;
  color: #57617a;
  line-height: 1.6;
}
.content .bottom-info .home-intro {
  max-width: 770px;
  margin: 48px auto 0;
}
.content .bottom-info .home-intro p {
  margin-bottom: 12px;
  line-height: 1.6;
}
.content .bottom-info .home-intro ul {
  padding-left: 20px;
  line-height: 1.8;
  list-style-type: disc;
}
.content .bottom-info .about {
  max-width: 770px;
  margin: 80px auto;
  text-align: center;
}
.content .bottom-info .about-whats-new-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
.content .bottom-info .about-whats-new-grid .about {
  max-width: none;
  margin: 0;
  text-align: center;
}
.content .bottom-info .whats-new {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 22px rgba(28, 38, 61, 0.06);
  margin: 0 0 40px 0;
}
.content .bottom-info .whats-new .caption {
  text-align: left;
  margin-bottom: 14px;
}
.content .bottom-info .whats-new-list {
  --whats-new-item-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc((var(--whats-new-item-height) * 2) + 14px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #c5cfdb transparent;
}
.content .bottom-info .whats-new-list::-webkit-scrollbar {
  width: 8px;
}
.content .bottom-info .whats-new-list::-webkit-scrollbar-thumb {
  background: #c5cfdb;
  border-radius: 999px;
}
.content .bottom-info .whats-new-list::-webkit-scrollbar-track {
  background: transparent;
}
.content .bottom-info .whats-new-item {
  min-height: var(--whats-new-item-height);
}
.content .bottom-info .whats-new-item + .whats-new-item {
  padding-top: 14px;
  border-top: 1px solid #e9eef5;
}
.content .bottom-info .whats-new-date {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: #5b6475;
  margin-bottom: 6px;
}
.content .bottom-info .whats-new-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #1c263d;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content .bottom-info .about p {
  font-weight: 300;
  margin-top: 10px;
  font-size: 16px;
}
.content .bottom-info .how-to-use {
  margin: 0 -35px 0 -35px;
}
.content .bottom-info .how-to-use .row {
  gap: 20px;
  color: #1c263d;
  font-weight: 300;
  margin-top: 30px;
}
.content .bottom-info .how-to-use .row .item {
  width: 25%;
  flex: 1;
  position: relative;
  background: #4355800d;
  padding: 30px 30px 30px 50px;
  border-radius: 12px;
}
.content .bottom-info .how-to-use .row .item .num {
  font-size: 24px;
  font-size: 28px;
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 32px;
}
.content .bottom-info .how-to-use .row .item span {
  font-size: 20px;
  line-height: 28px;
}
.content .bottom-info .how-to-use .row .item p {
  margin-top: 10px;
  font-weight: 400;
}
.content .bottom-info .how-to-use .row .item .step-shot {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 14px 0;
  border-radius: 10px;
  border: 1px solid #4355801f;
}
.content .music-info {
  max-width: 970px;
  margin: 60px auto 0 auto;
}
.content .music-info .left {
  width: 357px;
  margin-right: 24px;
  flex-shrink: 0;
}
.content .music-info .left .art {
  text-align: center;
}
.content .music-info .left .art img {
  display: inline-block;
  border-radius: 15px;
}
.content .music-info .left .music-data {
  margin-top: 20px;
}
.content .music-info .left .music-data .list {
  margin-top: 20px;
}
.content .music-info .left .music-data .row {
  justify-content: space-between;
}
.content .music-info .right {
  flex-grow: 1;
}
.content .music-info .right .music-data .list {
  margin-top: 15px;
}
.content .music-info .right .music-data p {
  width: 240px;
  margin-right: 10px;
}
.content .music-info .right .desc {
  margin-top: 10px;
}
.content .music-info .right .error-message {
  border-radius: 12px;
  background: #E37083;
  padding: 16px 20px 16px 84px;
  position: relative;
  margin-top: 16px;
}
.content .music-info .right .error-message:before {
  content: '';
  width: 48px;
  height: 48px;
  background: url('../img/icon-error.svg') center center no-repeat;
  position: absolute;
  left: 20px;
  top: 16px;
}
.content .music-info .right .error-message span {
  color: #E7E7E8;
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.content .music-info .right .progress {
  cursor: auto;
  position: relative;
  display: inline-block;
  margin: 15px 0;
}
.content .music-info .right .progress button {
  cursor: default;
}
.content .music-info .right .progress button:hover {
  background-color: #0d6069;
}
.content .music-info .right .progress p {
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.content .music-info .right .progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.content .music-info .right button.download {
  width: 100%;
  margin-top: 16px;
}
.content .music-info .right .playlist {
  border-radius: 12px;
  background: #151617;
  padding: 12px;
}
.content .music-info .right .playlist .num {
  color: #E7E7E8;
  font-size: 20px;
  font-weight: 500;
}
.content .music-info .right .playlist .capt {
  margin-top: 10px;
  color: #D9D9D9;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  padding-right: 40px;
  margin-bottom: 7px;
}
.content .music-info .right .playlist .icon-num {
  position: relative;
  padding-left: 35px;
}
.content .music-info .right .playlist .icon-num:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 4px;
  border: 2px solid #1CCB5B;
  background: #1CCB5B url('../img/icon-tracks.svg') center center no-repeat;
  left: 0px;
  top: 50%;
  margin-top: -10px;
}
.content .music-info .right .playlist .icon-check {
  position: relative;
  box-sizing: border-box;
}
.content .music-info .right .playlist .icon-check.checked:before {
  background: #1CCB5B url('../img/icon-check.svg') center center no-repeat;
}
.content .music-info .right .playlist .icon-check:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 4px;
  border: 2px solid #1CCB5B;
  left: 16px;
  top: 50%;
  margin-top: -10px;
}
.content .music-info .right .playlist ul li {
  border-radius: 12px;
  background: #0E0F10;
  margin-top: 4px;
  padding: 8px 16px;
  cursor: pointer;
}
.content .music-info .right .playlist ul li .info {
  flex-wrap: nowrap;
  padding-left: 42px;
}
.content .music-info .right .playlist ul li .info .text span {
  font-size: 18px;
}
.content .music-info .right .playlist ul li .info .text p {
  color: #8D8D91;
  font-size: 16px;
  font-weight: 300;
}
.content .music-info .right .playlist ul li .info .avatar {
  margin-top: 5px;
  flex-shrink: 0;
}
.content .music-info .right .playlist ul li .info .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.content .music-info .right .playlist .load {
  margin: 15px 0 20px 0;
}
.content .music-info .right .playlist .load a {
  border-bottom: 2px solid #1CCB5B;
}
.content .music-info .right .playlist .load a:hover {
  border-bottom-color: transparent;
  text-decoration: none;
}
.content .music-info .music-data .name {
  color: #E7E7E8;
  font-size: 26px;
  line-height: 110%;
  font-weight: 500;
}
.content .music-info .music-data .capt {
  color: #8D8D91;
  margin: 10px 0 0px 0;
}
.content .music-info .music-data .list .row {
  margin: 4px 0;
  flex-wrap: nowrap;
}
.content .music-info .music-data .list p {
  color: #D9D9D9;
  font-size: 14px;
}
.content .music-info .music-data .list span {
  color: #D9D9D9;
  font-size: 14px;
  text-align: right;
}
footer {
  margin-top: auto;
  padding: 40px 0 24px;
}
footer p {
  max-width: 970px;
  margin: 5px auto;
  font-weight: 300;
}
.footer-links {
  gap: 16px;
}
footer .footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}
footer .footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 140px;
}
footer .footer-logo .logo-img {
  height: 28px;
  width: auto;
  display: block;
}
footer .footer-tagline {
  margin: 0;
  font-size: 13px;
  color: #888;
  font-weight: 400;
}
footer .footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}
footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 130px;
}
footer .footer-col-title {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: #1c263d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
footer .footer-col a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
}
footer .footer-col a:hover {
  color: #000;
  text-decoration: underline;
}
footer .footer-col-soon {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .footer-badge-soon {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  color: #bbb;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 1px 5px;
  line-height: 1.4;
  white-space: nowrap;
}
footer .footer-disclaimer {
  margin: 24px auto 0;
  max-width: 860px;
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
footer .footer-language {
  position: relative;
}
footer .footer-language-menu {
  margin: 0;
}
footer .footer-language-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
footer .footer-language-toggle {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #dedede;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  cursor: pointer;
}
footer .footer-language-toggle .lang-icon {
  width: 15px;
  height: 15px;
  background: url('../img/icon-lang.svg') center center no-repeat;
  background-size: 15px;
  filter: invert(1);
  display: block;
}
footer .footer-language-toggle p {
  margin: 0;
  font-size: 13px;
  color: #000514;
  font-weight: 400;
}
footer .footer-language .dropdown {
  position: absolute;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, visibility 0.16s ease;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(28, 38, 61, 0.12);
  min-width: 280px;
  margin-bottom: 10px;
}
footer .footer-language-checkbox:checked ~ .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
footer .footer-language-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
footer .footer-language-checkbox:checked ~ .footer-language-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
footer .footer-language .dropdown .item {
  color: #000;
  line-height: 1.4;
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
}
footer .footer-language .dropdown .item:hover {
  background: #f3f5fc;
  text-decoration: none;
}
footer.footer-links,
footer .footer-links {
  align-items: center;
  flex-direction: column;
}
.static-header {
  padding: 20px 0;
}
.static-home {
  color: #000000;
  font-size: 14px;
}
.static-page {
  padding: 30px 0 60px 0;
}
.static-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.static-title {
  margin-bottom: 30px;
  font-size: 30px;
}
.static-meta {
  margin-bottom: 20px;
  color: #6B7280;
  font-size: 14px;
}
.static-card h2 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
.static-card p,
.static-card li {
  line-height: 1.6;
}
.static-card ul {
  margin: 10px 0 0 20px;
  list-style: disc;
}
.static-link {
  color: #3081ca;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #000000;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  background: #F9FAFB;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
}
.contact-status {
  margin-top: 8px;
  font-size: 14px;
}
.contact-status--success {
  color: #0B7A3E;
}
.contact-status--error {
  color: #B42318;
}
.reviews-section {
  margin-top: 32px;
}
.reviews-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.reviews-layout .contact-form {
  margin: 0;
}
#reviews-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
}
#reviews-submit .reviews-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
#reviews-submit.is-loading .reviews-submit-spinner {
  display: inline-block;
}
#reviews-submit.is-loading {
  opacity: 0.95;
  cursor: wait;
}
.reviews-layout .reviews-section {
  margin-top: 0;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-item {
  border: 1px solid #E4E7EC;
  background: #F9FAFB;
  border-radius: 12px;
  padding: 14px 16px;
}
.review-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.review-author {
  color: #101828;
}
.review-date {
  color: #667085;
  font-size: 13px;
}
.review-message {
  margin-top: 8px;
  white-space: pre-wrap;
}
.review-actions {
  margin-top: 8px;
}
.review-reply-btn {
  color: #478143;
  font-size: 13px;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}
.review-reply-btn:hover {
  text-decoration: none;
}
.review-children {
  margin-top: 12px;
  margin-left: 16px;
  padding-left: 12px;
  border-left: 2px solid #E4E7EC;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-item--reply {
  background: #fff;
}
.reviews-replying {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: -6px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #344054;
}
.reviews-replying[hidden] {
  display: none;
}
.reviews-reply-cancel {
  border: none;
  background: transparent;
  color: #B42318;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
}
.reviews-empty {
  color: #667085;
}
.reviews-pagination {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.reviews-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  background: #fff;
  color: #101828;
  text-decoration: none;
  font-size: 14px;
}
.reviews-pagination .page-link.active {
  background: #3092fa;
  border-color: #3092fa;
  color: #fff;
}
.reviews-pagination .page-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.blog-card {
  border: 1px solid #E4E7EC;
  background: #F9FAFB;
  border-radius: 14px;
  padding: 18px 20px;
}
.blog-card-cover-link {
  display: block;
  margin: -6px -8px 14px -8px;
}
.blog-card-cover-picture,
.blog-article-cover-picture {
  display: block;
}
.blog-card-cover {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  border: 1px solid #E4E7EC;
}
.blog-card-title {
  margin: 0 0 8px 0;
  font-size: 22px;
  line-height: 1.3;
}
.blog-card-title a {
  color: #101828;
  text-decoration: none;
}
.blog-card-title a:hover {
  text-decoration: underline;
}
.blog-card-excerpt {
  margin: 0 0 12px 0;
  color: #475467;
}
.blog-read-more {
  color: #3092fa;
  font-weight: 600;
  text-decoration: none;
}
.blog-read-more:hover {
  text-decoration: underline;
}
.blog-card-soon {
  opacity: 0.6;
}
.blog-card-soon .blog-card-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tool-card-badge-soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #888;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.4;
  vertical-align: middle;
  white-space: nowrap;
}
.blog-toc {
  margin: 0 0 20px 0;
  padding: 14px 16px;
  border: 1px solid #DDE3EA;
  border-radius: 12px;
  background: #F8FAFC;
}
.blog-article-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.blog-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-toc-list li a {
  color: #0F172A;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}
.blog-toc-list li a:hover {
  color: #3092fa;
  text-decoration: underline;
}
.blog-toc-list .toc-subitem {
  padding-left: 14px;
}
.blog-article .blog-article-body h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.blog-article-cover {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #E4E7EC;
  margin-bottom: 0;
  display: block;
}
.blog-related-articles {
  margin: 22px 0 18px;
  padding: 14px 16px;
  border: 1px solid #DDE3EA;
  border-radius: 12px;
  background: #F8FAFC;
}
.blog-related-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #344054;
}
.blog-related-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-related-link {
  color: #0F172A;
  text-decoration: none;
}
.blog-related-link:hover {
  color: #3092fa;
  text-decoration: underline;
}
.blog-article .blog-article-body h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.blog-article .blog-article-body p {
  margin-bottom: 14px;
}
.blog-article .blog-article-body h2,
.blog-article .blog-article-body h3 {
  scroll-margin-top: 90px;
}
.blog-article .blog-article-body p.blog-step {
  position: relative;
  padding: 10px 12px 10px 38px;
  border-radius: 10px;
  background: #F0FBF4;
  border: 1px solid #CDEED9;
}
.blog-article .blog-article-body p.blog-step::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('../img/blog/icons/step.svg') center center / contain no-repeat;
}
.blog-article .blog-article-body ul {
  margin: 6px 0 14px 22px;
  list-style: none;
  padding-left: 0;
}
.blog-article .blog-article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 8px 0;
}
.blog-heading-icon {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}
.blog-subheading-icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}
.blog-list-icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.blog-back-link {
  display: inline-flex;
  margin-top: 14px;
  color: #3092fa;
  text-decoration: none;
  font-weight: 600;
}
.blog-tools-links {
  margin-top: 26px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #DDE3EA;
  background: #F8FAFC;
}
.blog-tools-links-title {
  margin: 0 0 12px 0;
  font-weight: 700;
  color: #101828;
}
.blog-tools-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-tools-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #cbcde8;
  background: #eff3ff;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.blog-tools-link:hover {
  background: #DBF9E7;
  text-decoration: none;
}
.blog-back-link:hover {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .reviews-layout {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }
  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-article-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
    gap: 22px;
    margin-bottom: 18px;
  }
  .blog-toc {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .blog-article .blog-article-body h2 {
    font-size: 22px;
  }
  .blog-article .blog-article-body h3 {
    font-size: 18px;
  }
}
.md-overlay {
  width: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  height: 100%;
  visibility: hidden;
}
.md-show {
  visibility: visible !important;
}
.close {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
  width: 44px;
  background: url('../img/icon-close.svg') center center no-repeat;
  height: 44px;
  background-size: 100%;
}
.close:hover {
  opacity: 0.8;
}
.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}
.pop-up.md-show {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
a.close:hover {
  opacity: 0.95;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.pop-up {
  position: fixed;
  overflow: hidden;
  z-index: 101;
  visibility: hidden;
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  left: 50%;
  top: 0%;
  margin-top: 20px;
  width: 560px;
  margin-left: -280px;
}
.pop-up .close {
  display: none;
}
.pop-up h1 {
  margin-bottom: 0;
  display: inline-block;
}
.pop-up p {
  margin-bottom: 20px;
  display: inline-block;
}
.pop-up .caption {
  font-size: 24px;
  margin-bottom: 20px;
}
.pop-up .reset {
  height: 20px;
}
.pop-up input {
  width: 100%;
  margin-bottom: 12px;
}
.pop-up button {
  width: 100%;
}
.pop-up span {
  display: block;
  margin: 16px 0;
}
.pop-up .bottom {
  background: #F8F9FA;
  padding: 20px 40px;
  margin: 20px -40px 0 -40px;
}
.pop-up form {
  margin-bottom: 12px;
}
.pop-up a {
  color: #28719F;
  text-decoration: underline;
}
.pop-up a:hover {
  text-decoration: none;
}
.pop-up button.ggl {
  background: #ea4335;
  border-radius: 6px;
  color: #fff;
  height: 46px;
}
.pop-up button.ggl p {
  background: url(../img/google.png) left center no-repeat;
  padding-left: 25px;
}
.pop-up button.ggl:hover {
  box-shadow: none;
}
/* #slideshare-redirect-modal {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
#slideshare-redirect-modal .slideshare-redirect-content {
  display: flex;
  flex-direction: column;
}
#slideshare-redirect-modal .slideshare-redirect-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
#slideshare-redirect-modal .slideshare-redirect-btn {
  border-radius: 999px;
  padding: 12px 22px;
  border: 2px solid #dcdcdc;
  background: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}
#slideshare-redirect-modal .slideshare-redirect-btn:hover {
  transform: translateY(-1px);
}
#slideshare-redirect-modal .slideshare-redirect-btn.primary {
  background: #ffab33;
  border-color: #ffab33;
  color: #111111;
}
#slideshare-redirect-modal .slideshare-redirect-btn.secondary {
  background: #f4f4f4;
  color: #b42318;
}
@media (max-width: 640px) {
  #slideshare-redirect-modal {
    width: calc(100% - 32px);
    left: 16px;
    margin-left: 0;
  }
  #slideshare-redirect-modal .slideshare-redirect-actions {
    flex-direction: column;
  }
  #slideshare-redirect-modal .slideshare-redirect-btn {
    width: 100%;
  }
} */
.mobile {
  display: none;
}
@media (max-width: 800px) {
  header .container {
    position: relative;
    min-height: 40px;
  }
  header .tool-nav-desktop {
    display: none;
  }
  header .tool-nav-menu {
    display: block;
  }
  header .tool-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
  }
  header .tool-nav-checkbox:checked ~ .tool-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .tool-nav-toggle {
    width: auto;
    min-width: 92px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #dedede;
    background: #fff;
    display: inline-flex;
    align-items: center;
    padding: 0 12px 0 36px;
    position: relative;
    cursor: pointer;
  }
  header .tool-nav-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #1c263d;
    display: block;
    position: absolute;
    left: 11px;
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
  }
  header .tool-nav-toggle span:nth-child(1) {
    top: 13px;
  }
  header .tool-nav-toggle span:nth-child(2) {
    top: 18px;
  }
  header .tool-nav-toggle span:nth-child(3) {
    top: 23px;
  }
  header .tool-nav-toggle .tool-nav-toggle-text {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: #1c263d;
    line-height: 1;
    white-space: nowrap;
  }
  header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }
  header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }
  header .tool-nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -6px, 0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 20px));
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 14px;
    padding: 10px;
    margin-top: 0;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(28, 38, 61, 0.12);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
  }
  header .tool-nav-checkbox:checked ~ .tool-nav-mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
  header .tool-link {
    font-size: 14px;
    padding: 10px 34px 10px 12px;
    text-align: left;
  }
  header .tool-nav-mobile .tool-link {
    display: block;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
  }
}
@media (max-width: 940px) {
  .content .music-info {
    flex-wrap: wrap;
  }
  .content .music-info .left {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .content .music-info .right {
    width: 100%;
  }
  .content .bottom-info .how-to-use {
    margin: 0 0px 0 0px;
    padding: 0 20px;
  }
  .content .bottom-info .how-to-use .row .item {
    width: 48%;
    flex: auto;
  }
  #presentation-info, .download-panel {
    width: 100%;
  }
  .download-panel {
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .mobile {
    display: block;
  }
  body {
    font-size: 20px;
  }
  .container {
    max-width: 534px;
    min-width: 360px;
    padding: 0 15px;
  }
  header .container {
    position: relative;
    min-height: 40px;
  }
  header .tool-nav-desktop {
    display: none;
  }
  header .tool-nav-menu {
    display: block;
  }
  header .tool-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
  }
  header .tool-nav-checkbox:checked ~ .tool-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .tool-nav-toggle {
    width: auto;
    min-width: 92px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #dedede;
    background: #fff;
    display: inline-flex;
    align-items: center;
    padding: 0 12px 0 36px;
    position: relative;
    cursor: pointer;
  }
  header .tool-nav-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #1c263d;
    display: block;
    position: absolute;
    left: 11px;
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
  }
  header .tool-nav-toggle span:nth-child(1) {
    top: 13px;
  }
  header .tool-nav-toggle span:nth-child(2) {
    top: 18px;
  }
  header .tool-nav-toggle span:nth-child(3) {
    top: 23px;
  }
  header .tool-nav-toggle .tool-nav-toggle-text {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: #1c263d;
    line-height: 1;
    white-space: nowrap;
  }
  header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }
  header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  header .tool-nav-checkbox:checked + .tool-nav-toggle span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }
  header .language {
    position: static;
  }
  header .language .current {
    background: inherit;
    padding: 0;
    margin-top: -5px;
  }
  header .language .current p {
    display: none;
  }
  header .language .current span {
    width: 40px;
    height: 40px;
  }
  header .language .dropdown {
    width: 100%;
    border-radius: 0;
    z-index: 1;
    padding: 130px 24px 300px 24px;
    top: 0;
    background: #0E0F10;
    text-align: center;
  }
  header .language .dropdown .item {
    color: #ffffff;
  }
  header .language .dropdown li:first-of-type {
    display: block;
  }
  header .tool-nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -6px, 0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 20px));
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 14px;
    padding: 10px;
    margin-top: 0;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(28, 38, 61, 0.12);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
  }
  header .tool-nav-checkbox:checked ~ .tool-nav-mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
  header .tool-link {
    font-size: 14px;
    padding: 10px 34px 10px 12px;
    text-align: left;
  }
  header .tool-nav-mobile .tool-link {
    display: block;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
  }
  footer .footer-language .dropdown {
    min-width: 260px;
    padding: 8px;
  }
  .content .quality-control.global {
      flex-direction: column;
      gap: 18px;
      margin-top: 50px;
  }
  .content .top-title h1 {
    line-height: 140%;
    font-weight: 600;
    color: #000514;
  }
  .content .top-title h1 span {
    margin-top: 20px;
    font-size: 60px;
  }
  .content .input-form form input {
    font-size: 22px;
  }
  .content .music-info {
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .content .music-info .music-data .name {
    font-size: 30px;
  }
  .content .music-info .music-data .capt {
    font-size: 24px;
  }
  .content .music-info .music-data .list {
    display: none;
  }
  .content .music-info .music-data .list .row {
    justify-content: space-between;
  }
  .content .music-info .music-data .list span {
    font-size: 18px;
  }
  .content .music-info .music-data .list p {
    font-size: 18px;
  }
  .content .music-info .left {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .content .music-info .left .art {
    margin-bottom: 20px;
  }
  .content .music-info .left .art img {
    width: 100%;
  }
  .content .music-info .left .music-data {
    margin-top: 40px;
  }
  .content .music-info .right {
    width: 100%;
  }
  .content .music-info .right .error-message {
    padding: 26px 30px 26px 104px;
  }
  .content .music-info .right .error-message:before {
    width: 54px;
    height: 54px;
    background-size: 100%;
    left: 30px;
    top: 26px;
  }
  .content .music-info .right .error-message span {
    font-size: 32px;
  }
  .content .music-info .right .progress {
    width: 100%;
  }
  .content .music-info .right .progress button {
    width: 100%;
    height: 69px;
  }
  .content .music-info .right .progress button p {
    font-size: 24px;
  }
  .content .music-info .right button.download {
    height: 68px;
    font-size: 23px;
    font-weight: 300;
  }
  .content .music-info .right .playlist .icon-num {
    font-size: 30px;
  }
  .content .music-info .right .playlist .capt {
    font-size: 14px;
  }
  .content .music-info .right .playlist .icon-check:before,
  .content .music-info .right .playlist .icon-num:before {
    width: 20px;
    height: 20px;
    margin-top: -12px;
  }
  .content .music-info .right .playlist ul li .info .text span {
    font-size: 22px;
  }
  .content .music-info .right .playlist ul li .info .text p {
    font-size: 19px;
  }
  .content .bottom-info .about {
    text-align: left;
    margin-bottom: 50px;
    padding: 0 20px;
  }
  .content .bottom-info .about .caption {
    text-align: left;
  }
  .content .bottom-info .how-to-use .caption {
    text-align: left;
    line-height: 40px;
  }
  .content .bottom-info .how-to-use .row {
    margin-left: 10px;
  }
  .content .bottom-info .how-to-use .row .item {
    width: 100%;
    flex: auto;
  }
  .content .bottom-info .how-to-use .row .item span {
    font-size: 28px;
  }
  .content .bottom-info .how-to-use .row .item p {
    font-size: 18px;
  }
  footer p {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 0 30px;
  }
  footer .footer-logo-wrap {
    align-items: center;
    text-align: center;
  }
  footer .footer-cols {
    justify-content: center;
    gap: 24px 32px;
  }
  footer .footer-col {
    min-width: calc(50% - 16px);
    flex: 1 1 calc(50% - 16px);
  }
  footer .footer-disclaimer {
    text-align: center;
    padding: 0 30px;
  }
  .download-panel {
    width: 100%;
  }
  #progress-container {
    padding: 0 10px;
    margin: 20px 10px;
  }
  #progress-container .progress-wrapper {
    height: 50px;
  }
  #progress-container #progress-text {
    font-size: 12px;
    padding: 0 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 20px);
    text-align: center;
  }
}
#format-switcher,
.format-switcher {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.file-meta {
  margin-top: 20px;
}
.format-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #000514;
  cursor: pointer;
}
.format-option input[type="radio"] {
  margin: 0;
}
.file-status {
  margin-top: 6px;
  font-size: 14px;
  color: #5a5d73;
  min-height: 18px;
}
.download-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.file-size-disclaimer {
  display: none;
  margin: 10px 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e6e8f2;
  background: #f8f9fc;
  color: #35384d;
  font-size: 14px;
  line-height: 1.35;
}
.file-size-disclaimer.is-visible {
  display: block;
}
.file-size-disclaimer.medium {
  border-color: #ffc920;
  color: #0b1324;
}
.file-size-disclaimer.heavy {
  border-color: #ffc920;
  color: #0b1324;
}
.file-size-disclaimer.overload {
  border-color: #ff9f1c;
  color: #0b1324;
}
.force-refresh-checkbox-wrap {
  display: flex;
  gap: 10px;
  margin: 15px 0 0px 10px;
  font-size: 15px;
  line-height: 1.35;
  color: #478143;
  cursor: pointer;
  font-weight: 500;
}
.force-refresh-checkbox-wrap input[type="checkbox"] {
  transform: scale(1.5);
  accent-color: #478143;
}
.turnstile-wrap-inline {
  display: none;
  width: 100%;
  max-width: 380px;
  margin: 14px auto 0;
  justify-content: center;
}
.turnstile-wrap-inline.is-visible {
  display: flex;
}
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.download-btn .btn-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 3;
}
.download-btn .btn-text {
  position: relative;
  z-index: 3;
}
#download-primary-btn .btn-icon {
  filter: brightness(0) invert(1);
}
.presentation-details .download-panel .broken-link-report-status {
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}
.presentation-details .download-panel .download-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.presentation-details .download-panel .download-disclaimer-report-btn {
  margin-top: 0;
  width: auto;
  height: 28px;
  border: 1px solid #d4d8e6;
  background: #fff;
  color: #000000;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.presentation-details .download-panel .download-disclaimer-report-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.presentation-details .download-panel .share-thanks-disclaimer {
  margin: 12px 0 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: #4f4f4f;
}
.download-btn.loading {
  background: #afb4c8;
  color: #f7f8ff;
  cursor: not-allowed;
  position: relative;
  padding-left: 52px;
  transition: background 0.2s ease, color 0.2s ease;
  overflow: hidden;
}
.download-btn.loading::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #fff;
  border-radius: 50%;
  animation: download-spin 0.8s linear infinite;
  z-index: 2;
}
.download-btn.loading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width, 0%);
  background: rgb(48, 129, 202);
  transition: width 0.2s ease;
  z-index: 1;
}
@keyframes download-spin {
  to {
    transform: rotate(360deg);
  }
}
.download-btn.success {
  background: #82cc9c;
  color: #ffffff;
}
.download-btn.completed {
  background: #bf700d;
  color: #ffffff;
  cursor: not-allowed;
}
.download-btn.completed:hover {
    transform: none;
}
#status-message {
  display: none;
  text-align: center;
  margin: auto;
  padding: 15px 50px;
  border-radius: 30px;
  width: fit-content;
}
#status-message.error {
  background: #DF6943;
  color: #fff;
  margin-bottom: 30px;
}
#status-message.success {
  background: #82cc9c;
  color: #fff;
}
#progress-container {
  display: none;
  max-width: 970px;
  margin: 20px auto;
}
#progress-container .progress-wrapper {
  background: #dcdcdc;
  border-radius: 30px;
  height: 40px;
  position: relative;
  overflow: hidden;
}
#progress-container #progress-bar {
  background: rgb(48, 129, 202);
  height: 100%;
  width: 0%;
  transition: width 0.3s;
}
#progress-container #progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
}
.presentation-info-wrap {
  display: block;
  width: 100%;
  margin: 40px 0;
}

#presentation-info {
  display: none;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

#presentation-info.is-visible {
  display: grid;
}

#presentation-info h2 {
  text-align: left;
  line-height: 1.35;
  color: #0b1324;
}

.presentation-description {
  margin: 0 0 18px;
  color: #5c6478;
  line-height: 1.5;
}

.presentation-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f4f4;
  min-height: 180px;
}

.presentation-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e5e5e5 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.presentation-media.is-loading::before {
  opacity: 1;
  animation: previewShimmer 1.4s ease infinite;
}

.presentation-media img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: opacity 0.2s ease;
}

.presentation-media.is-loading img {
  opacity: 0;
}

@keyframes previewShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.presentation-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.presentation-details .download-panel {
  margin-top: 0;
}

.meta-label {
  color: #666;
  white-space: nowrap;
}

.meta-value {
  color: #666;
  text-align: right;
  word-break: break-word;
}

.author-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: 8px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-weight: 700;
  font-size: 18px;
  color: #666;
  letter-spacing: 0.2px;
}
.stat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.stat-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.stat-text {
  line-height: 1;
}

#slides-container {
  display: none;
  width: 100%;
  max-width: none;
  margin: 40px 0;
  padding: 0 24px;
}

#slides-container.visible-flex {
  display: block;
}

@media (max-width: 940px) {
  #slides-container {
    padding: 0 16px;
  }

  #presentation-info {
    grid-template-columns: 1fr;
  }

  .author-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-value {
    text-align: left;
  }
}
/* New Slides Viewer Styles */
.slides-viewer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.slides-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 380px;
  order: 1;
}

.slides-main img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.slides-main iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.thumbnail-row {
  margin-bottom: 16px;
}

#presentation-thumbnail {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.slides-sidebar {
  display: flex;
  flex-direction: row;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  order: 2;
}

.slides-sidebar::-webkit-scrollbar {
  height: 6px;
}

.slides-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 3px;
}

.slide-thumbnail {
  cursor: pointer;
  border: 5px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s;
  position: relative;
  background: #fff;
  flex-shrink: 0;
  width: 140px;
}

.slide-thumbnail.active {
  border-color: #3081ca;
}

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

.slide-thumbnail .slide-number {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #3081ca;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* Mobile responsive for slides viewer */
@media (max-width: 940px) {
  .slides-main {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .slides-main {
    height: 250px;
  }

  .slide-thumbnail {
    width: 100px;
  }
}

#slides-container .quality-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
#slides-container .quality-control label {
  font-weight: 600;
  color: #000514;
}
#slides-container .quality-control select {
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
}
#slides-container .download-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
#slides-container .download-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
#slides-container .download-item .file-meta {
  font-size: 14px;
  color: #555;
}
#slides-container .download-item .file-meta span {
  font-weight: 600;
  color: #000514;
  margin-left: 6px;
}
#slides-container .download-item button {
  margin: 0;
  min-width: 220px;
}
#slides-container .download-item button.loading,
#slides-container .download-item button:disabled {
  background: #c7cbd6;
  color: #f8f8f8;
  cursor: not-allowed;
  position: relative;
}
#slides-container .download-item button.success {
  background: #82cc9c;
  color: #fff;
  cursor: default;
}
#slides-container .download-item button.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  right: 16px;
  top: 50%;
  margin-top: -9px;
  animation: spin 0.8s linear infinite;
}
#slides-container .download-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #000514;
  font-weight: 500;
}
#slides-container .download-loading.visible {
  display: flex;
}
#slides-container .download-loading .spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e9edf8;
  border-top-color: #3081ca;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
#slides-container .slide-item {
  text-align: center;
}
#slides-container .slide-item .slide-link {
  display: block;
  margin-bottom: 10px;
}
#slides-container .slide-item .slide-link img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#slides-container .slide-item .download-slide-link {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.error-404 {
  text-align: center;
  padding: 60px 20px;
}
.error-404 h1 {
  font-size: 120px;
  font-weight: 700;
  color: #f2736e;
  margin: 0;
  line-height: 1;
}
.error-404 p {
  font-size: 24px;
  color: #1c263d;
  margin: 20px 0 40px;
}
.error-404 .download-btn {
  display: inline-block;
  margin-top: 20px;
}

/* SEO Content Sections */

/* Benefits Section */
.benefits-section {
  margin: 80px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: #ffffff4a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card h3 {
  color: #000514;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-card p {
  color: #57617a;
  line-height: 1.6;
  font-size: 16px;
}

/* Features Section */
.features-section {
  margin: 80px auto;
  max-width: 900px;
  padding: 0 20px;
}

.features-list {
  max-width: 800px;
  margin: 30px auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

h3 {
  margin-top: 0px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #000000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-top: -2px;
}

.feature-content h4 {
  margin: 0 0 8px 0;
  color: #000514;
  font-size: 18px;
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  color: #57617a;
  line-height: 1.6;
  font-size: 15px;
}

/* Use Cases Section */
.use-cases-section {
  margin: 80px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.use-case-card {
  background: #ffffff4a;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card h3 {
  color: #000514;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.use-case-card p {
  color: #57617a;
  line-height: 1.6;
  font-size: 14px;
}

/* Formats Section */
.formats-section {
  margin: 80px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.format-card {
  text-align: center;
  padding: 30px 20px;
  background: #4355800d;
  border-radius: 10px;
  transition: border-color 0.3s, transform 0.3s;
}

.format-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.format-card h3 {
  color: #000514;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.format-card p {
  color: #57617a;
  line-height: 1.6;
  font-size: 14px;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  background: #ffffff4a;
  margin-bottom: 15px;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000514;
  font-size: 16px;
  user-select: none;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px 20px;
  display: none;
  color: #57617a;
  line-height: 1.7;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}
.interlink-row {
  margin-top: 14px;
}

.interlink-row a {
  color: #3092fa;
  font-weight: 600;
  text-decoration: none;
}

.interlink-row a:hover {
  text-decoration: underline;
}
@media (min-width: 941px) {
  #presentation-info {
    max-width: none;
  }
}

/* Mobile Responsive for SEO Sections */
@media (max-width: 940px) {
  .content .bottom-info .about-whats-new-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    padding: 0 20px;
  }
  .content .bottom-info .about-whats-new-grid .about {
    margin: 0;
  }
  .content .bottom-info .whats-new {
    padding: 18px 20px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .use-cases-grid,
  .content .bottom-info .home-tools-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .content .bottom-info .home-tools-section {
    margin-top: 40px;
    padding: 0 20px;
  }
  .content .bottom-info .home-intro {
    padding: 0 20px;
  }
  
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .benefits-section,
  .features-section,
  .use-cases-section,
  .formats-section,
  .faq-section {
    margin: 60px auto;
  }
}

@media (max-width: 640px) {
  .content .bottom-info .about-whats-new-grid {
    margin-top: 50px;
    gap: 40px;
    padding: 0 20px;
  }
  .content .bottom-info .about-whats-new-grid .about {
    padding: 0;
    margin-bottom: 0;
  }
  .content .bottom-info .whats-new {
    border-radius: 14px;
    padding: 16px 18px;
  }
  .content .bottom-info .whats-new .caption {
    margin-bottom: 10px;
  }
  .content .bottom-info .whats-new-text {
    font-size: 15px;
  }
  .content .bottom-info .whats-new-list {
    --whats-new-item-height: 80px;
    padding-right: 6px;
  }
  .content .input-form .search-trust-badges {
    margin: 40px auto 0;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .content .input-form .search-trust-item {
    font-size: 14px;
  }
  
  .content .input-form .download-disclaimer {
    padding: 16px 18px;
    border-radius: 18px;
    margin: 20px 16px -25px;
    gap: 14px;
  }
  .content .input-form .download-disclaimer-primary {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .content .input-form .download-disclaimer-content {
    text-align: left;
  }
  .content .input-form .download-disclaimer-actions {
    max-width: none;
    width: 100%;
    margin-left: 0;
    gap: 6px;
  }
  .content .input-form .download-disclaimer-report-wrap {
    align-items: stretch;
    width: 100%;
    margin-left: 0;
  }

  .content .input-form .download-disclaimer p {
    font-size: 15px;
  }

  .content .input-form .download-disclaimer-btn {
    width: 100%;
  }
  .content .input-form .download-disclaimer-report-btn {
    width: 100%;
  }
  .content .input-form .broken-link-report-form {
    flex-direction: column;
    gap: 6px;
    max-width: none;
  }
  .content .input-form .broken-link-report-submit {
    width: 100%;
  }
  
  .benefits-grid,
  .use-cases-grid,
  .content .bottom-info .home-tools-grid,
  .formats-grid {
    grid-template-columns: 1fr;
  }
  .content .bottom-info .home-tools-section {
    margin-top: 32px;
    padding: 0 16px;
  }
  .content .bottom-info .home-tool-card {
    padding: 20px 16px;
  }
  .content .bottom-info .home-tool-card img {
    margin-bottom: 10px;
  }
  .content .bottom-info .home-tool-card h3 {
    font-size: 16px;
  }
  .content .bottom-info .home-intro {
    margin-top: 32px;
    padding: 0 16px;
  }
  
  .benefit-card,
  .use-case-card,
  .format-card {
    padding: 20px;
  }
  
  .benefit-card h3,
  .use-case-card h3,
  .format-card h3 {
    font-size: 18px;
  }
  
  .feature-item {
    padding: 15px 0;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-size: 15px;
  }
  
  .faq-answer {
    padding: 0 20px 15px;
    font-size: 14px;
  }
  
  .benefits-section,
  .features-section,
  .use-cases-section,
  .formats-section,
  .faq-section {
    margin: 40px auto;
  }
}
