﻿:root {
  color-scheme: light;
  --primary: #ef3340;
  --primary-dark: #dc1f2d;
  --bg: #fbfbfc;
  --surface: #ffffff;
  --text: #12131f;
  --muted: #6b7280;
  --line: #e9e9ee;
  --soft: #f7f7f9;
  --blue: #2f93d8;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --green: #55c27c;
  --shadow: 0 18px 45px rgba(18, 19, 31, 0.08);
  --soft-shadow: 0 10px 24px rgba(18, 19, 31, 0.06);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1500px;
  min-height: 66px;
  margin: 0 auto;
  padding: 10px clamp(18px, 7vw, 120px);
  background: #fff;
}

.brand,
.nav-links,
.brand-copy {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d52bbf;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(213, 43, 191, 0.2);
}

.brand-copy {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 30px;
  letter-spacing: -0.02em;
}

.brand-copy strong span {
  color: var(--text);
}

.nav-links .active,
.hero h1 span {
  color: inherit;
}

.brand-copy small {
  display: none;
}

.nav-links {
  justify-content: flex-end;
  flex: 1;
  gap: 28px;
  font-size: 20px;
  font-weight: 650;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover {
  color: #2078d8;
}

.language-select {
  min-width: 138px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  max-width: none;
  min-height: 388px;
  margin: 0;
  padding: 72px clamp(18px, 4vw, 44px) 82px;
  background:
    linear-gradient(90deg, rgba(54, 55, 229, 0.86), rgba(208, 48, 117, 0.86)),
    url("./assets/hero-privacy-viewer.webp") center/cover;
  color: #fff;
  text-align: center;
}

.hero-content {
  width: min(100%, 1040px);
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 54px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.45;
}

.download-tabs {
  display: none;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 190px 160px;
  align-items: center;
  gap: 4px;
  width: min(100%, 920px);
  min-height: 70px;
  margin: 0 auto;
  padding: 5px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(8, 24, 65, 0.22);
}

.search-icon {
  display: none;
}

.search-panel input {
  width: 100%;
  min-width: 0;
  min-height: 60px;
  padding: 0 24px;
  border: 0;
  outline: 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 650;
}

.search-panel button,
.small-cta,
.subscribe-form button,
.download-button {
  border: 0;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.search-panel button {
  min-width: 0;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 16px;
  background: #2078d8;
  box-shadow: none;
  font-size: 20px;
}

.search-panel .clear-button {
  background: #d6d6d6;
  color: #242832;
}

.search-panel button:hover,
.small-cta:hover,
.subscribe-form button:hover,
.download-button:hover {
  background: #155fba;
}

.search-panel .clear-button:hover {
  background: #c8c8c8;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.direct-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 940px);
  margin: 24px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.direct-panel > div,
.direct-input-wrap,
.direct-meta,
.direct-error {
  display: grid;
  gap: 5px;
}

.direct-panel strong,
.direct-meta strong,
.direct-error strong {
  color: var(--text);
  font-weight: 900;
}

.direct-panel span,
.direct-meta span,
.direct-error span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.direct-input-wrap {
  min-width: 0;
}

.direct-input-wrap input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: #fff;
  color: var(--text);
  font-weight: 650;
}

.direct-panel button,
.direct-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: #08d99d;
  color: #07140f;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.direct-panel button:hover,
.direct-download:hover {
  background: #00c48c;
}

.direct-result {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  width: min(100%, 940px);
  margin: 16px auto 0;
  padding: 16px;
  border: 1px solid #bdf3d6;
  border-radius: 22px;
  background: #f3fff8;
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.direct-preview {
  display: grid;
  place-items: center;
  min-height: 150px;
  overflow: hidden;
  border-radius: 16px;
  background: #eef1f4;
}

.direct-preview img,
.direct-preview video {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.direct-unknown {
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.direct-meta {
  align-content: center;
  min-width: 0;
}

.direct-meta span {
  overflow-wrap: anywhere;
}

.direct-download {
  width: fit-content;
  margin-top: 8px;
}

.direct-error {
  grid-column: 1 / -1;
  padding: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--soft-shadow);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.decor-eye,
.decor-heart {
  position: absolute;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  color: var(--primary);
  font-size: 23px;
}

.decor-eye {
  left: 8px;
  top: 128px;
  color: #111827;
}

.decor-heart {
  right: 10px;
  top: 260px;
}

.dash {
  position: absolute;
  display: none;
  pointer-events: none;
  width: 150px;
  height: 80px;
  border: 2px dashed rgba(239, 51, 64, 0.8);
  border-right: 0;
  border-bottom: 0;
  border-radius: 80px 0 0 0;
}

.dash-left {
  left: 16px;
  top: 218px;
  transform: rotate(-18deg);
}

.dash-right {
  right: 32px;
  top: 120px;
  transform: rotate(28deg);
}

.tool-grid,
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1210px;
  margin: 0 auto;
  padding: 24px clamp(18px, 4vw, 44px) 38px;
}

.tool-card,
.info-strip article,
.viewer-demo,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.tool-card {
  position: relative;
  overflow: hidden;
  min-height: 212px;
  padding: 26px;
}

.tool-card h2,
.tool-card h3,
.tool-card p {
  margin-top: 0;
}

.tool-card h2 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.08;
}

.tool-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.12;
}

.tool-card p,
.tool-card li,
.info-strip p,
.faq-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-tall {
  grid-row: span 2;
  min-height: 560px;
  background: linear-gradient(155deg, rgba(162, 70, 164, 0.92), rgba(239, 51, 64, 0.82) 46%, rgba(255, 137, 99, 0.88));
  color: #fff;
}

.feature-tall p {
  color: #fff;
}

.feature-tall img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 48%;
  object-fit: cover;
}

.feature-tall::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  content: "";
}

.small-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  background: #fff;
  color: var(--primary);
}

.anon-pill {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 122px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 19, 31, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
}

.card-icon.blue {
  color: var(--blue);
}

.card-icon.purple {
  color: var(--purple);
}

.card-icon.pink {
  color: var(--pink);
}

.blue-fill,
.green-fill {
  border: 0;
  color: #fff;
}

.blue-fill {
  background: #60a5fa;
}

.green-fill {
  background: var(--green);
}

.preview {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center end;
  min-height: 150px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fed7aa, #93c5fd);
}

.preview span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary);
  font-weight: 900;
}

.sunset {
  background: linear-gradient(135deg, #f7c59f, #9ed5e8 55%, #5d8b83);
}

.living {
  background: linear-gradient(135deg, #d6f0e8, #8fb2c7 45%, #1f2937);
}

.skate {
  background: linear-gradient(135deg, #fff1d6, #d5b08a 52%, #414141);
}

.media-tool {
  padding-bottom: 188px;
}

.mini-card {
  min-height: 220px;
}

.round-photo {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c7a7, #151515);
}

.photo-stack {
  position: absolute;
  right: 26px;
  bottom: 18px;
  width: 120px;
  height: 90px;
}

.photo-stack::before,
.photo-stack::after {
  position: absolute;
  width: 78px;
  height: 62px;
  border: 6px solid #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #d7d0c3, #4b5563);
  box-shadow: var(--soft-shadow);
  content: "";
}

.photo-stack::before {
  left: 4px;
  top: 18px;
  transform: rotate(-12deg);
}

.photo-stack::after {
  right: 2px;
  top: 4px;
  transform: rotate(10deg);
}

.how-card {
  grid-row: span 2;
}

.how-card ol {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: how;
}

.how-card li {
  position: relative;
  padding-left: 34px;
  counter-increment: how;
}

.how-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  content: counter(how);
  font-size: 12px;
  font-weight: 900;
}

.how-card strong,
.how-card span {
  display: block;
}

.use-card ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.use-card li {
  position: relative;
  padding-left: 24px;
}

.use-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary);
  content: "â—";
  font-size: 12px;
}

.trusted-card {
  grid-column: span 2;
  min-height: 250px;
  background: linear-gradient(135deg, rgba(18, 19, 31, 0.94), rgba(18, 19, 31, 0.54)), url("./assets/hero-privacy-viewer.webp") center/cover;
  color: #fff;
}

.trusted-card p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metrics span {
  display: grid;
  min-width: 114px;
  min-height: 74px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.metrics strong {
  color: #fff;
  font-size: 25px;
}

.device-card,
.quote-card {
  min-height: 210px;
}

.quote-card strong {
  color: #f7b500;
}

.quote-card p {
  margin: 18px 0;
  color: #363a44;
}

.quote-card span {
  font-weight: 900;
}

.viewer-demo {
  max-width: 1210px;
  margin: 8px auto 42px;
  padding: 42px clamp(18px, 4vw, 48px);
}

.viewer-heading {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
}

.viewer-demo.is-hidden {
  display: none;
}

.viewer-demo.direct-mode {
  max-width: 1210px;
  margin: 8px auto 42px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.viewer-demo.direct-mode .viewer-heading {
  display: none;
}

.viewer-demo.direct-mode .provider-banner,
.viewer-demo.direct-mode .profile-panel,
.viewer-demo.direct-mode .media-tabs {
  display: none;
}

.viewer-demo.direct-mode .media-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px);
  justify-content: center;
  padding-top: 0;
}

.direct-media-card {
  overflow: hidden;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(18, 19, 31, 0.1);
}

.direct-card-preview {
  position: relative;
  min-height: 520px;
  background: #eef1f4;
}

.direct-card-preview img,
.direct-card-preview video {
  display: block;
  width: 100%;
  height: min(72vh, 640px);
  min-height: 520px;
  object-fit: cover;
}

.direct-card-expand,
.direct-card-icon {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(18, 19, 31, 0.68);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.direct-card-expand {
  top: 12px;
  right: 12px;
  border-radius: 0 999px 999px 0;
}

.direct-card-icon {
  top: 12px;
  right: 54px;
  border-radius: 999px 0 0 999px;
  font-size: 28px;
}

.direct-card-icon svg,
.direct-options-panel h3 span svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-card-icon svg path[d^="m8"] {
  fill: currentColor;
  stroke: none;
}

.direct-card-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 520px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.direct-card-fallback strong {
  color: #172033;
  font-size: 20px;
}

.direct-card-fallback span {
  max-width: 250px;
  line-height: 1.45;
}

.direct-card-fallback.error-state {
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.08), transparent 0 34%),
    #eef1f4;
}

.direct-loading-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 32px;
  color: #53627a;
  text-align: center;
}

.direct-loading-state strong {
  color: #172033;
  font-size: 20px;
}

.direct-loading-state span:not(.loading-spinner) {
  max-width: 250px;
  line-height: 1.45;
}

.loading-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(31, 115, 242, 0.16);
  border-top-color: #1f73f2;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

.loading-bar {
  overflow: hidden;
  width: min(100%, 220px);
  height: 7px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(31, 115, 242, 0.12);
}

.loading-bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #1f73f2);
  animation: loading-slide 1.2s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loading-slide {
  0% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(240%);
  }
}

.direct-card-fallback.provider-required {
  position: absolute;
  inset: auto 14px 14px;
  min-height: 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(18, 19, 31, 0.76);
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.direct-card-actions {
  padding: 14px 14px 16px;
}

.direct-card-download {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 7px;
  background: #1f73f2;
  color: #fff;
  box-shadow: 0 6px 0 #1459c9;
  font-size: 24px;
  font-weight: 900;
}

.direct-card-download:hover {
  background: #155fda;
}

.direct-card-download.is-disabled,
.direct-card-download:disabled {
  background: #9ca3af;
  box-shadow: 0 6px 0 #7b8290;
  cursor: not-allowed;
}

.provider-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  padding: 16px 18px;
  border: 1px solid #ffd2d7;
  border-radius: 18px;
  background: #fff7f8;
}

.provider-banner div {
  display: grid;
  gap: 4px;
}

.provider-banner strong {
  color: var(--primary);
}

.provider-banner span {
  color: var(--muted);
  line-height: 1.45;
}

.provider-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.provider-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.refresh-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #bdf3d6;
  border-radius: 14px;
  background: #ffffff;
  color: #13945b;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.refresh-button:hover {
  background: #eafff3;
}

.provider-banner.provider-ok {
  border-color: #bdf3d6;
  background: #f3fff8;
}

.provider-banner.provider-ok strong {
  color: #13945b;
}

.profile-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.avatar-wrap {
  position: relative;
  justify-self: end;
  width: 148px;
  height: 148px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border: 7px solid #6554f2;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff2df, #f3b2b7 50%, #6b5cf6);
  background-position: center;
  background-size: cover;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
}

.avatar.has-photo {
  border-color: var(--primary);
  color: transparent;
  text-shadow: none;
}

.avatar-action {
  position: absolute;
  right: 0;
  bottom: 8px;
  min-width: 58px;
  min-height: 38px;
  border: 3px solid var(--surface);
  border-radius: 999px;
  background: #10d99a;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.profile-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.profile-title-row h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.external-link,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.status-pill {
  color: var(--muted);
}

.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}

.profile-stats span,
.profile-stats strong {
  display: block;
}

.profile-stats strong {
  font-size: 25px;
}

.profile-name {
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 900;
}

.profile-bio {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.media-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.media-tab {
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #a0a4ae;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.media-tab.active {
  background: var(--text);
  color: #fff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
}

.media-card,
.empty-state {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.media-thumb {
  position: relative;
  min-height: 312px;
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
  background: var(--thumb-bg, linear-gradient(135deg, #12131f, #ef3340));
  color: #fff;
}

.media-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-thumb::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.46));
  content: "";
}

.media-expand {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(18, 19, 31, 0.56);
  font-size: 24px;
  font-weight: 900;
}

.media-kind {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 86px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 19, 31, 0.68);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-fallback {
  display: grid;
  place-items: end start;
  min-height: 312px;
  padding: 22px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.media-body {
  padding: 16px;
}

.media-caption {
  display: -webkit-box;
  min-height: 86px;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 1.45;
}

.download-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 58px;
  background: #08d99d;
  color: #07140f;
  font-size: 18px;
}

.download-button:hover {
  background: #00c48c;
}

.media-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 28px;
  text-align: center;
}

.empty-state strong,
.empty-state span {
  display: block;
}

.empty-state span {
  color: var(--muted);
  line-height: 1.5;
}

.provider-empty {
  min-height: 240px;
  border-style: dashed;
  background: #fff7f8;
}

.provider-empty strong {
  color: var(--primary);
  font-size: 24px;
}

.provider-empty code {
  padding: 2px 6px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
}

.info-strip {
  padding-bottom: 52px;
}

.setup-section {
  max-width: 1210px;
  margin: 0 auto;
  padding: 12px clamp(18px, 4vw, 44px) 44px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.setup-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.setup-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.setup-grid code {
  padding: 2px 6px;
  border-radius: 8px;
  background: #f4f4f6;
}

.setup-grid pre {
  overflow-x: auto;
  padding: 14px;
  border-radius: 14px;
  background: #12131f;
  color: #fff;
}

.setup-grid pre code {
  background: transparent;
  color: inherit;
}

.info-strip article {
  min-height: 210px;
  padding: 26px;
}

.info-strip h3 {
  margin: 0 0 12px;
  font-size: 23px;
}

.faq-section {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 44px) 54px;
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 30px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 40px;
}

.faq-list details {
  padding: 19px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 34px;
  max-width: 1210px;
  margin: 0 auto;
  padding: 38px clamp(18px, 4vw, 44px) 44px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer > div,
.subscribe-form {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  font-size: 15px;
}

.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.subscribe-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.subscribe-form input {
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.subscribe-form button {
  min-height: 46px;
  padding: 0 18px;
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .tool-grid,
  .info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-card {
    grid-column: span 2;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .language-select {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel button {
    width: 100%;
  }

  .direct-panel,
  .direct-result {
    grid-template-columns: 1fr;
  }

  .direct-panel {
    text-align: center;
  }

  .direct-download {
    width: 100%;
  }

  .trust-row {
    gap: 10px;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
  }

  .decor-eye,
  .decor-heart,
  .dash {
    display: none;
  }

  .tool-grid,
  .info-strip,
  .setup-grid,
  .media-grid,
  .faq-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-tall,
  .how-card,
  .trusted-card {
    grid-column: auto;
    grid-row: auto;
  }

  .profile-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .avatar-wrap {
    justify-self: center;
  }

  .profile-title-row,
  .profile-stats {
    justify-content: center;
  }

  .media-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .viewer-demo.direct-mode {
    padding: 24px 18px;
  }

  .viewer-demo.direct-mode .media-grid {
    grid-template-columns: minmax(240px, 1fr);
  }

  .direct-card-preview,
  .direct-card-preview img,
  .direct-card-preview video,
  .direct-card-fallback {
    min-height: 430px;
  }

  .subscribe-form div {
    grid-template-columns: 1fr;
  }
}

/* SaveIGVideo landing refresh */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: none;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.brand {
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  font-size: 22px;
  line-height: 1;
}

.brand-mark svg,
.search-icon svg,
.nav-caret,
.nav-globe,
.menu-icon,
.format-icon,
.card-icon svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand-copy strong {
  font-size: 27px;
  letter-spacing: 0;
}

.nav-links {
  gap: clamp(18px, 3vw, 40px);
  font-size: 15px;
  font-weight: 750;
}

.nav-dropdown,
.language-switcher {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-dropdown > button,
.language-switcher > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 750;
}

.nav-caret {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.nav-globe {
  width: 18px;
  height: 18px;
}

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 280px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.language-menu {
  min-width: 150px;
}

.nav-menu a,
.nav-menu .nav-current {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #202636;
  white-space: nowrap;
}

.nav-menu .nav-current {
  background: #f4f5f8;
  color: #6b7280;
  cursor: default;
  font-weight: 850;
}

.menu-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: #7c3aed;
}

.nav-menu a:hover {
  background: #f4f5f8;
  color: #2563eb;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.language-switcher:hover .nav-menu,
.language-switcher:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  min-height: 500px;
  padding: 76px clamp(18px, 5vw, 72px) 58px;
  background:
    radial-gradient(circle at 4% 28%, rgba(255, 255, 255, 0.12), transparent 0 18%, transparent 19%),
    radial-gradient(circle at 94% 8%, rgba(255, 255, 255, 0.1), transparent 0 16%, transparent 17%),
    linear-gradient(100deg, rgba(148, 57, 244, 0.94), rgba(69, 76, 238, 0.95)),
    url("./assets/hero-privacy-viewer.webp") center/cover;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.4vw, 62px);
  font-weight: 900;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 42px;
  font-size: 21px;
}

.search-panel {
  grid-template-columns: 52px minmax(0, 1fr) 128px 150px;
  gap: 8px;
  width: min(100%, 850px);
  min-height: 70px;
  padding: 7px;
  border-radius: 12px;
}

.search-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  color: #657083;
  font-size: 25px;
}

.search-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.search-panel input {
  min-height: 54px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.search-panel button {
  min-height: 56px;
  border-radius: 10px;
  background: #2563eb;
  font-size: 16px;
}

.search-panel .clear-button {
  background: #f1f2f4;
  color: #394150;
}

.form-note {
  margin-top: 16px;
  font-size: 15px;
}

.format-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.format-row button,
.format-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 132px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
}

.format-icon {
  width: 20px;
  height: 20px;
}

.format-icon.dashed {
  stroke-dasharray: 3 3;
}

.format-row button:hover,
.format-row a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.tool-grid {
  grid-template-columns: 280px repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  padding-top: 28px;
}

.tool-card {
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.feature-tall {
  min-height: 540px;
  border: 0;
  background: linear-gradient(160deg, #8b5cf6, #f43f8b);
}

.feature-tall img {
  height: 38%;
  object-position: bottom center;
}

.feature-tall::after {
  height: 38%;
}

.media-tool {
  min-height: 300px;
  padding-bottom: 150px;
}

.preview {
  min-height: 112px;
  border-radius: 14px;
}

.mint {
  background: linear-gradient(135deg, #f4dfb4, #85d8cf);
}

.steel {
  background: linear-gradient(135deg, #d5eff1, #536172);
}

.sand {
  background: linear-gradient(135deg, #f6d8a6, #9d7c55);
}

.how-card {
  grid-row: span 2;
}

.use-card,
.device-card {
  min-height: 230px;
}

.trusted-card {
  grid-column: span 2;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(16, 23, 42, 0.94), rgba(16, 23, 42, 0.72)),
    url("./assets/hero-privacy-viewer.webp") center/cover;
}

.quote-card {
  min-height: 180px;
}

.site-footer {
  max-width: none;
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  padding: 30px clamp(20px, 5vw, 72px) 36px;
  background: #fff;
}

.subscribe-form {
  padding: 22px;
  border-radius: 16px;
  background: #f7f3ff;
}

.subscribe-form button {
  background: #7c3aed;
}

@media (max-width: 1100px) {
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-tall,
  .how-card {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    z-index: 100;
    overflow: visible;
  }

  .nav-links {
    overflow: visible;
  }

  .nav-menu {
    left: auto;
    right: 0;
  }

  .hero {
    min-height: auto;
    padding: 52px 18px 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .search-panel {
    grid-template-columns: 44px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .search-panel button {
    grid-column: 1 / -1;
  }

  .format-row button,
  .format-row a {
    width: calc(50% - 9px);
    min-width: 0;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .trusted-card {
    grid-column: auto;
  }
}

/* SaveIGVideo universal home page */
.home-refresh {
  --home-text: #10172b;
  --home-muted: #586174;
  --home-line: #e6e9f2;
  --home-blue: #2563eb;
  --home-purple: #7c3aed;
  --home-pink: #ec4899;
  --home-card-shadow: 0 16px 38px rgba(32, 39, 61, 0.08);
  background: #ffffff;
  color: var(--home-text);
}

.home-refresh .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  padding: 0 clamp(18px, 6vw, 78px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.home-refresh .brand {
  min-width: max-content;
}

.home-refresh .logo-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.home-refresh .brand-logo {
  display: block;
  width: clamp(170px, 18vw, 245px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.home-refresh .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #5b8cff);
  box-shadow: 0 12px 22px rgba(91, 92, 238, 0.22);
}

.home-refresh .brand-mark svg {
  width: 22px;
  height: 22px;
}

.home-refresh .brand-copy strong {
  color: var(--home-text);
  font-size: 26px;
  font-weight: 900;
}

.home-refresh .brand-copy small {
  display: none;
}

.home-refresh .nav-links {
  flex: 1;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  font-size: 14px;
  font-weight: 800;
}

.home-refresh .nav-links > a,
.home-refresh .nav-dropdown > button,
.home-refresh .language-switcher > button {
  min-height: 44px;
  color: var(--home-text);
}

.home-refresh .nav-links > a.active {
  color: var(--home-purple);
}

.home-refresh .nav-menu {
  min-width: 310px;
}

.home-refresh .hero {
  overflow: hidden;
  min-height: 510px;
  padding: 88px clamp(18px, 5vw, 72px) 54px;
  background:
    linear-gradient(115deg, rgba(132, 61, 244, 0.94), rgba(36, 77, 235, 0.96)),
    url("./assets/hero-privacy-viewer.webp") center/cover;
  color: #fff;
}

.home-refresh .hero::before,
.home-refresh .hero::after {
  position: absolute;
  z-index: 0;
  width: 160px;
  height: 160px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  content: "";
}

.home-refresh .hero::before {
  left: 36px;
  top: 120px;
  transform: rotate(-18deg);
}

.home-refresh .hero::after {
  right: 58px;
  top: 124px;
  transform: rotate(18deg);
}

.home-refresh .hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1050px);
}

.home-refresh .hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5.6vw, 66px);
  font-weight: 950;
  letter-spacing: 0;
}

.home-refresh .hero-copy {
  max-width: 760px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 2.2vw, 23px);
}

.home-refresh .search-panel {
  grid-template-columns: 52px minmax(0, 1fr) 124px 146px;
  width: min(100%, 890px);
  min-height: 72px;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(18, 24, 57, 0.24);
}

.home-refresh .search-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #596275;
}

.home-refresh .search-panel input {
  min-height: 56px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 650;
}

.home-refresh .search-panel button {
  min-height: 56px;
  border-radius: 10px;
  font-size: 15px;
}

.home-refresh .search-panel .clear-button {
  background: #f0f1f4;
  color: #273044;
}

.home-refresh .form-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.home-refresh .hero-progress {
  overflow: hidden;
  width: min(100%, 720px);
  height: 14px;
  margin: 30px auto 0;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #fff;
}

.home-refresh .hero-progress span {
  display: block;
  width: 32%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #5b5cf0);
  animation: hero-loading-slide 1.15s ease-in-out infinite;
}

.home-refresh .search-panel.is-processing {
  box-shadow: 0 24px 60px rgba(18, 24, 57, 0.32);
}

.home-refresh .search-panel button:disabled {
  cursor: wait;
}

.button-download-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 8px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  line-height: 1;
}

@keyframes hero-loading-slide {
  0% {
    transform: translateX(-120%);
  }

  55% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(330%);
  }
}

.home-refresh .format-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.home-refresh .format-row button,
.home-refresh .format-row a {
  min-width: 136px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.home-refresh .viewer-demo.direct-mode {
  max-width: 1240px;
  margin: 0 auto 50px;
  padding: 44px clamp(18px, 4vw, 34px);
  background: #f4f6fb;
}

.home-refresh .viewer-demo.direct-mode .viewer-heading {
  display: block;
  margin: 0 0 34px;
  color: var(--home-text);
  font-size: clamp(28px, 3vw, 38px);
}

.home-refresh .viewer-demo.direct-mode .media-grid {
  display: block;
  padding: 0;
}

.direct-result-card {
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(20, 28, 48, 0.08);
}

.direct-result-card .direct-card-preview {
  overflow: hidden;
  min-height: 0;
  border-radius: 18px;
  background: #eef1f4;
  box-shadow: 0 12px 28px rgba(18, 19, 31, 0.12);
}

.direct-result-card .direct-card-preview img,
.direct-result-card .direct-card-preview video {
  height: min(64vh, 560px);
  min-height: 430px;
  border-radius: inherit;
}

.direct-options-panel {
  padding-top: 8px;
}

.direct-options-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--home-text);
  font-size: 27px;
  line-height: 1.2;
}

.direct-options-panel h3 span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
  font-size: 18px;
}

.download-options {
  display: grid;
  gap: 14px;
}

.download-option-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(150px, 210px);
  align-items: center;
  min-height: 66px;
  overflow: hidden;
  border: 3px solid #7c3aed;
  border-radius: 14px;
  background: #fff;
}

.download-option-row strong {
  display: grid;
  gap: 3px;
  padding: 0 28px;
  color: #273044;
  font-size: 18px;
}

.download-option-row strong span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
}

.download-option-row a {
  display: grid;
  place-items: center;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed, #6d35e8);
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}

.download-option-row button {
  display: grid;
  place-items: center;
  height: 100%;
  border: 0;
  background: #a0a8b6;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}

.download-option-row.video-option {
  border-color: #7c3aed;
}

.download-option-row.photo-option {
  border-color: #1f73f2;
}

.download-option-row.photo-option a {
  background: linear-gradient(135deg, #1f73f2, #2563eb);
}

.download-option-row.is-disabled {
  border-color: #c6ccd7;
  background: #f8fafc;
}

.download-option-row.is-disabled strong {
  color: #7a8395;
}

.show-more-options {
  display: block;
  margin: 18px auto 0;
  border: 0;
  background: transparent;
  color: #6d35e8;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
}

.download-status-text {
  max-width: 440px;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.55;
}

.download-status-note {
  margin-top: 14px;
  color: #7a8395;
  font-size: 14px;
  line-height: 1.45;
}

.download-option-row.preview-option {
  border-color: #94a3b8;
}

.download-option-row.preview-option a {
  background: linear-gradient(135deg, #64748b, #475569);
}

.gallery-result {
  width: 100%;
}

.gallery-result-heading {
  margin-bottom: 24px;
  text-align: center;
}

.gallery-result-heading h3 {
  margin: 0 0 8px;
  color: var(--home-text);
  font-size: clamp(28px, 4vw, 42px);
}

.gallery-result-heading p {
  margin: 0;
  color: #536079;
  font-size: 17px;
}

.gallery-media-section + .gallery-media-section {
  margin-top: 36px;
}

.gallery-media-section > h3 {
  margin: 0 0 8px;
  color: var(--home-text);
  font-size: 26px;
}

.gallery-media-section > p {
  margin: 0 0 18px;
  color: #536079;
  font-size: 16px;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-photo-card {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 39, 61, 0.08);
}

.gallery-photo-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  background: #eef1f5;
}

.gallery-photo-preview img,
.gallery-photo-preview video {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
}

.gallery-photo-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 170px);
  align-items: center;
  min-height: 70px;
  border-top: 1px solid var(--home-line);
}

.gallery-photo-actions strong {
  display: grid;
  gap: 3px;
  padding: 0 18px;
  color: var(--home-text);
  font-size: 18px;
}

.gallery-photo-actions strong span {
  color: #6b7280;
  font-size: 13px;
}

.gallery-photo-actions a {
  display: grid;
  place-items: center;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 950;
}

.gallery-video-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.gallery-video-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.gallery-video-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--home-line);
}

.gallery-video-actions strong {
  color: var(--home-text);
  font-size: 18px;
}

.gallery-video-actions a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 950;
}

.home-refresh .format-icon {
  width: 22px;
  height: 22px;
}

.section-block {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 46px clamp(18px, 4vw, 34px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--home-text);
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.65;
}

.download-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-tool {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
  padding: 28px 26px;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--home-card-shadow);
}

.tool-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--home-purple);
}

.tool-badge svg,
.benefits-grid svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-tool h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

.download-tool p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.55;
}

.download-tool a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 6px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: var(--home-purple);
  font-weight: 900;
}

.download-tool.blue .tool-badge,
.download-tool.blue a {
  color: #2784ef;
}

.download-tool.coral .tool-badge,
.download-tool.coral a {
  color: #f06445;
}

.download-tool.pink .tool-badge,
.download-tool.pink a {
  color: #dd3fa2;
}

.download-tool.green .tool-badge,
.download-tool.green a {
  color: #22b864;
}

.download-tool.gold .tool-badge,
.download-tool.gold a {
  color: #e7a813;
}

.download-tool.violet .tool-badge,
.download-tool.violet a {
  color: #6d4df2;
}

.download-tool.link-tool .tool-badge,
.download-tool.link-tool a {
  color: #1f73f2;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.steps-row article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.steps-row article::after {
  position: absolute;
  top: 24px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #31c887);
  content: "";
}

.steps-row article:last-child::after {
  display: none;
}

.steps-row span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 900;
}

.steps-row strong {
  font-size: 15px;
}

.steps-row p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.55;
}

.features-section {
  padding-top: 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--home-card-shadow);
}

.benefits-grid article {
  min-height: 160px;
  padding: 28px 18px;
  border-right: 1px solid var(--home-line);
  text-align: center;
}

.benefits-grid article:last-child {
  border-right: 0;
}

.benefits-grid span {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.benefits-grid p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.55;
}

.content-section {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.seo-copy,
.ways-card {
  padding: 32px;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--home-card-shadow);
}

.ways-card {
  background: linear-gradient(135deg, #fbf9ff, #f1f6ff);
}

.seo-copy h2,
.ways-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.seo-copy p {
  color: var(--home-muted);
  line-height: 1.7;
}

.ways-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ways-card li {
  position: relative;
  padding-left: 28px;
  color: #333c52;
  line-height: 1.45;
}

.ways-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--home-purple);
  color: #fff;
  font-size: 11px;
  content: "âœ“";
}

.home-refresh .faq-section {
  padding-top: 34px;
}

.home-refresh .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.home-refresh .faq-list details {
  border: 1px solid var(--home-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(32, 39, 61, 0.04);
}

.home-refresh .site-footer {
  max-width: none;
  grid-template-columns: 1.2fr minmax(220px, 0.9fr) minmax(160px, 0.75fr);
  gap: 42px;
  margin-top: 18px;
  padding: 48px clamp(22px, 6vw, 82px);
  border-top: 0;
  background: #070b1e;
  color: #fff;
}

.home-refresh .site-footer .brand-copy strong,
.home-refresh .site-footer strong {
  color: #fff;
}

.home-refresh .site-footer .brand-logo {
  width: 180px;
  max-height: 42px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #fff;
}

.home-refresh .site-footer p,
.home-refresh .site-footer a,
.home-refresh .site-footer label,
.home-refresh .site-footer .footer-current {
  color: rgba(255, 255, 255, 0.72);
}

.home-refresh .site-footer .footer-current {
  cursor: default;
  font-weight: 850;
}

.related-tools-grid .related-current {
  cursor: default;
}

.home-refresh .site-footer a:hover {
  color: #fff;
}

.inner-page {
  background: #f6f7fb;
}

.page-main {
  padding: 74px clamp(18px, 6vw, 82px) 54px;
}

.not-found-body {
  min-height: 100vh;
  background: #f3f6fb;
}

.not-found-main {
  padding: 0;
}

.not-found-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 86px clamp(18px, 6vw, 72px) 68px;
  background:
    linear-gradient(135deg, rgba(132, 59, 242, 0.94), rgba(37, 96, 235, 0.94)),
    url("./assets/hero-privacy-viewer.webp") center/cover;
  color: #fff;
  text-align: center;
}

.not-found-hero::before,
.not-found-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
  transform: rotate(18deg);
}

.not-found-hero::before {
  left: -74px;
  top: 82px;
}

.not-found-hero::after {
  right: -70px;
  bottom: 48px;
}

.not-found-hero > * {
  position: relative;
  z-index: 1;
}

.not-found-hero .hero-label {
  margin-bottom: 16px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.not-found-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.96;
}

.not-found-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.6;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 24px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 850;
}

.primary-action {
  background: #fff;
  color: #6637f0;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
}

.not-found-search {
  margin-top: 8px;
}

.not-found-tools {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 54px;
  position: relative;
  z-index: 2;
}

.not-found-tools a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(128, 88, 245, 0.25);
  border-radius: 14px;
  background: #fff;
  color: var(--home-text);
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(40, 48, 80, 0.1);
}

.not-found-tools .format-icon {
  width: 20px;
  height: 20px;
  color: #7c3cff;
}

.page-hero {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.page-kicker {
  margin: 0 0 8px;
  color: var(--home-purple);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 12px;
  color: var(--home-text);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #536079;
  font-size: 18px;
  line-height: 1.65;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(32, 39, 61, 0.08);
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--home-text);
  font-size: 24px;
  line-height: 1.2;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #43506b;
  font-size: 17px;
  line-height: 1.72;
}

.legal-card p {
  margin: 0 0 15px;
}

.legal-card a {
  color: var(--home-purple);
  font-weight: 900;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.contact-email {
  display: inline-flex;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
}

.video-downloader-page {
  background: #f6f7fb;
}

.video-hero {
  min-height: 520px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}

.video-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.video-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
}

.video-chip-row svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.video-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px clamp(18px, 5vw, 42px);
}

.video-section.soft {
  max-width: none;
  margin: 0;
  padding-inline: clamp(28px, 8vw, 92px);
  background: #fff;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.text-split h2 {
  margin: 0 0 12px;
  color: var(--home-text);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.section-heading p,
.text-split p {
  margin: 0;
  color: #536079;
  font-size: 17px;
  line-height: 1.68;
}

.video-card-grid,
.related-tools-grid {
  display: grid;
  gap: 22px;
}

.video-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card-grid.three,
.related-tools-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card-grid article,
.related-tools-grid a,
.related-tools-grid .related-current,
.video-steps article,
.text-split article {
  border: 1px solid var(--home-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(32, 39, 61, 0.07);
}

.video-card-grid article,
.related-tools-grid a,
.related-tools-grid .related-current {
  padding: 28px;
}

.video-card-grid article > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(37, 99, 235, 0.12));
  color: var(--home-purple);
  font-size: 24px;
  font-weight: 900;
}

.video-card-grid article > span.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-card-grid h3,
.video-steps h3,
.related-tools-grid strong {
  margin: 0 0 10px;
  color: var(--home-text);
  font-size: 20px;
  line-height: 1.18;
}

.video-card-grid p,
.video-steps p,
.related-tools-grid span {
  margin: 0;
  color: #536079;
  line-height: 1.6;
}

.text-split .compact-cards {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

.text-split .compact-cards article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 18px;
}

.text-split .compact-cards article > span {
  grid-row: 1 / 3;
  margin-bottom: 0;
}

.text-split .compact-cards h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.text-split .compact-cards p {
  font-size: 15px;
  line-height: 1.45;
}

.video-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.video-steps article {
  position: relative;
  padding: 30px 24px;
}

.video-steps article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff;
  font-weight: 950;
}

.text-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.text-split article {
  padding: clamp(28px, 5vw, 44px);
}

.text-split p + p {
  margin-top: 14px;
}

.link-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.link-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--home-text);
  font-weight: 900;
}

.link-flow b {
  color: var(--home-purple);
  font-size: 22px;
}

.related-tools-grid a {
  display: grid;
  gap: 8px;
}

@media (max-width: 1100px) {
  .download-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card-grid.four,
  .video-card-grid.three,
  .related-tools-grid,
  .gallery-photo-grid,
  .video-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .text-split {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits-grid article:nth-child(3n) {
    border-right: 0;
  }

  .home-refresh .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .not-found-tools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-refresh .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    overflow: visible;
  }

  .home-refresh .nav-links {
    order: initial;
    display: flex;
    flex-wrap: nowrap;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 8px;
    overflow: visible;
  }

  .home-refresh .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .home-refresh .brand-logo {
    width: min(178px, 42vw);
    height: auto;
  }

  .home-refresh .nav-dropdown > button,
  .home-refresh .language-switcher > button {
    min-height: 38px;
    gap: 4px;
    font-size: 13px;
  }

  .home-refresh .nav-caret {
    width: 12px;
    height: 12px;
  }

  .home-refresh .nav-globe {
    width: 16px;
    height: 16px;
  }

  .home-refresh .nav-links > a {
    display: none;
  }

  .home-refresh .nav-links > a.active,
  .home-refresh .nav-dropdown,
  .home-refresh .language-switcher {
    display: block;
  }

  .home-refresh .nav-menu {
    position: fixed;
    top: 58px;
    left: 12px;
    right: 12px;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .home-refresh .language-switcher {
    flex: 0 0 auto;
  }

  .home-refresh .nav-menu a,
  .home-refresh .nav-menu .nav-current {
    align-items: flex-start;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }

  .home-refresh .hero {
    min-height: auto;
    padding: 48px 18px 38px;
  }

  .home-refresh .hero::before,
  .home-refresh .hero::after {
    display: none;
  }

  .home-refresh .search-panel {
    grid-template-columns: 44px 1fr;
  }

  .home-refresh .search-panel button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-refresh .format-row button,
  .home-refresh .format-row a {
    width: calc(50% - 8px);
    min-width: 0;
  }

  .home-refresh .viewer-demo.direct-mode {
    padding: 32px 14px;
  }

  .direct-result-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px;
    border-radius: 18px;
  }

  .direct-result-card .direct-card-preview img,
  .direct-result-card .direct-card-preview video,
  .direct-result-card .direct-card-fallback {
    min-height: 420px;
  }

  .download-option-row {
    grid-template-columns: 1fr;
  }

  .download-option-row strong {
    min-height: 48px;
    padding: 15px 18px;
  }

  .download-option-row a {
    min-height: 56px;
  }

  .video-card-grid.four,
  .video-card-grid.three,
  .related-tools-grid,
  .gallery-photo-grid,
  .video-steps {
    grid-template-columns: 1fr;
  }

  .video-section {
    padding-block: 40px;
  }

  .video-chip-row {
    justify-content: stretch;
  }

  .video-chip-row span {
    flex: 1 1 180px;
    justify-content: center;
  }

  .link-flow {
    display: grid;
  }

  .link-flow b {
    text-align: center;
    transform: rotate(90deg);
  }

  .gallery-photo-actions {
    grid-template-columns: 1fr;
  }

  .gallery-photo-actions strong {
    min-height: 54px;
    padding: 14px 18px;
  }

  .gallery-photo-actions a {
    min-height: 56px;
  }

  .section-block {
    padding: 34px 18px;
  }

  .download-tool-grid,
  .steps-row,
  .benefits-grid,
  .content-section,
  .home-refresh .faq-list,
  .home-refresh .site-footer {
    grid-template-columns: 1fr;
  }

  .not-found-hero {
    padding: 58px 18px 54px;
  }

  .not-found-hero::before,
  .not-found-hero::after {
    display: none;
  }

  .not-found-actions {
    width: min(100%, 420px);
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .not-found-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 28px, 520px);
    margin-bottom: 38px;
  }

  .not-found-tools a {
    min-height: 60px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .steps-row article::after {
    display: none;
  }

  .benefits-grid article,
  .benefits-grid article:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .benefits-grid article:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 390px) {
  .home-refresh .site-header {
    gap: 6px;
    padding-inline: 10px;
  }

  .home-refresh .brand-logo {
    width: min(156px, 40vw);
  }

  .home-refresh .nav-links {
    gap: 5px;
  }

  .home-refresh .nav-dropdown > button,
  .home-refresh .language-switcher > button {
    font-size: 12px;
  }

  .home-refresh .nav-globe {
    width: 15px;
    height: 15px;
  }

  .home-refresh .nav-caret {
    width: 11px;
    height: 11px;
  }
}

