:root {
  color-scheme: light;
  --dark: #07090f;
  --dark-soft: #0f1320;
  --yellow: #facc15;
  --yellow-dark: #eab308;
  --white: #ffffff;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --page-bg: #f7f8fb;
  --header: var(--dark);
  --green: var(--yellow);
  --bg: var(--page-bg);
  --text: var(--text-dark);
  --muted: var(--text-muted);
  --card: var(--card-bg);
  --border: #e5e7eb;
  --blue: #1677ff;
  --purple: #a855f7;
  --pink: #ff3b86;
  --shadow: 0 14px 38px rgba(20, 24, 39, 0.12);
  --soft-shadow: 0 8px 24px rgba(20, 24, 39, 0.08);
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 15, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(250, 204, 21, 0.14);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo img {
  display: block;
  width: clamp(180px, 18vw, 290px);
  height: auto;
}

.logo b,
.hero-content h1 span {
  color: var(--yellow);
}

.logo em {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 20px;
  margin-left: -3px;
  border: 1px solid var(--yellow);
  border-radius: 4px;
  color: var(--yellow);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.logo-symbol {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.logo-symbol svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a,
.main-nav span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 72px;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:hover,
.main-nav .active {
  color: var(--yellow);
}

.main-nav span {
  cursor: default;
}

.main-nav .active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  height: 2px;
  background: var(--yellow);
}

.language-link {
  margin-left: 16px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-left: max(18px, calc((100vw - 1180px) / 2));
  min-height: 72px;
}

.brand img {
  display: block;
  width: clamp(180px, 18vw, 280px);
  height: auto;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  margin-left: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--yellow);
}

.page-hero,
.page-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 18px;
}

.page-hero {
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.lead {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.page-body {
  padding-top: 0;
  color: var(--text-dark);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(250, 204, 21, 0.24);
}

.primary-button:hover {
  background: var(--yellow-dark);
}

.hero-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 72px 18px 64px;
  background:
    radial-gradient(circle at 80% 40%, rgba(250, 204, 21, 0.35), transparent 35%),
    radial-gradient(circle at 18% 70%, rgba(250, 204, 21, 0.18), transparent 30%),
    linear-gradient(135deg, #050505 0%, #111827 45%, #b8860b 100%);
  color: #fff;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(250, 204, 21, 0.18) 52%, transparent 70%),
    radial-gradient(circle at 55% 45%, rgba(250, 204, 21, 0.22), transparent 7%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 910px;
  margin: 0 auto;
}

.hero-content h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.44);
}

.hero-content h2 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.45;
}

.hero-form {
  display: grid;
  grid-template-columns: 52px 1fr 46px 168px;
  align-items: center;
  gap: 0;
  max-width: 850px;
  min-height: 78px;
  margin: 0 auto;
  padding: 7px;
  border: 3px solid rgba(250, 204, 21, 0.74);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(250, 204, 21, 0.18), 0 18px 44px rgba(0, 0, 0, 0.36);
}

.form-link-icon {
  display: grid;
  place-items: center;
  color: var(--yellow-dark);
}

.form-link-icon svg,
.download-button svg,
.card-icon svg,
.step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-form input {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 0;
  outline: 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 650;
}

.hero-form input::placeholder {
  color: #858ca3;
}

.clear-input {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111827;
  cursor: pointer;
}

.clear-input:hover {
  background: #f1f5f9;
}

.clear-input span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
}

.clear-input span::before,
.clear-input span::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 2px;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}

.clear-input span::before {
  transform: rotate(45deg);
}

.clear-input span::after {
  transform: rotate(-45deg);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12), 0 10px 24px rgba(250, 204, 21, 0.28);
}

.download-button:hover {
  background: var(--yellow-dark);
}

.hero-content .form-message {
  min-height: 24px;
  margin: 24px auto 0;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
}

.hero-content .hero-support {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.form-message.is-error {
  color: #fde68a;
}

.loading-state {
  margin: 42px auto 0;
  text-align: center;
}

.loading-state[hidden] {
  display: none;
}

.loading-state p {
  margin: 24px 0 0;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
}

.loading-bar {
  width: min(100%, 745px);
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.82);
}

.loading-bar span {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.38) 0 18px,
      rgba(255, 255, 255, 0.1) 18px 36px
    ),
    linear-gradient(90deg, #facc15, #fef3c7);
  animation: loadingStripe 950ms linear infinite;
}

@keyframes loadingStripe {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 38px 0, 0 0;
  }
}

.hero-icon {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: 72px;
  color: rgba(250, 204, 21, 0.26);
}

.hero-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-icon-play {
  top: 78px;
  left: 95px;
  transform: rotate(-13deg);
}

.hero-icon-film {
  top: 215px;
  left: 70px;
  transform: rotate(18deg);
}

.hero-icon-link {
  bottom: 70px;
  left: 125px;
  transform: rotate(-42deg);
}

.hero-icon-image {
  top: 205px;
  right: 140px;
  transform: rotate(-12deg);
}

.hero-icon-download {
  top: 108px;
  right: 82px;
}

.section-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 18px;
}

.download-results[hidden] {
  display: none;
}

.download-results {
  padding-top: 34px;
  scroll-margin-top: 88px;
}

.result-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.result-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #07090f, #b8860b);
}

.result-preview img,
.result-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-preview:has(img:not([hidden]))::before,
.result-preview:has(video:not([hidden]))::before {
  background: rgba(255, 255, 255, 0.88);
}

.result-preview::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(3, 22, 51, 0.18);
}

.result-preview::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--yellow-dark);
}

.result-preview span {
  position: absolute;
  z-index: 3;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(1, 13, 31, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.result-info {
  min-width: 0;
  padding: 4px 4px 4px 0;
}

.result-eyebrow {
  margin: 0 0 8px;
  color: var(--yellow-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-info h2 {
  margin: 0 0 10px;
  color: #101633;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0;
}

.result-info p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.result-source {
  margin-top: 16px;
  padding: 12px 14px;
  overflow-wrap: anywhere;
  border: 1px solid #dce4f1;
  border-radius: 10px;
  background: #f8fbff;
  color: #29324a;
  font-size: 14px;
}

.format-list {
  display: grid;
  gap: 12px;
}

.format-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 26, 43, 0.08);
}

.format-preview {
  position: relative;
  display: grid;
  flex: 0 0 86px;
  place-items: center;
  width: 86px;
  height: 64px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #07090f, #b8860b);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.format-preview img,
.format-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-preview.is-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.format-item > div {
  flex: 1 1 auto;
  min-width: 0;
}

.format-item strong {
  display: block;
}

.format-item strong {
  color: #101633;
  font-size: 17px;
}

.format-item div span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.format-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(250, 204, 21, 0.24);
}

.format-item a:hover {
  background: var(--yellow-dark);
}

.format-item a.is-busy {
  pointer-events: none;
  opacity: 0.78;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.seo-text h2 {
  margin: 0 0 14px;
  color: #151832;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.benefits {
  position: relative;
  max-width: none;
  margin: 0;
  overflow: hidden;
  padding: 56px 18px 72px;
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.2), transparent 27%),
    radial-gradient(circle at 100% 88%, rgba(250, 204, 21, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 46%, #f8fafc 100%);
  color: var(--text-dark);
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(250, 204, 21, 0.36) 1.3px, transparent 1.4px) 3.5% 50% / 18px 18px,
    radial-gradient(circle, rgba(250, 204, 21, 0.28) 1.2px, transparent 1.3px) 92% 8% / 18px 18px,
    radial-gradient(circle, rgba(250, 204, 21, 0.18) 1px, transparent 1.2px) 94% 76% / 20px 20px,
    repeating-radial-gradient(circle at -5% -15%, rgba(250, 204, 21, 0.18) 0 1px, transparent 1px 20px),
    repeating-radial-gradient(circle at 110% 105%, rgba(250, 204, 21, 0.14) 0 1px, transparent 1px 20px);
  opacity: 0.72;
}

.benefits::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7Z' fill='none' stroke='%23facc15' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' opacity='.35'/%3E%3C/svg%3E") 5% 73% / 92px 92px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v10m0 0 4-4m-4 4-4-4M5 19h14' fill='none' stroke='%23facc15' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='.35'/%3E%3C/svg%3E") 85% 23% / 94px 94px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24'%3E%3Cpath d='M10 13a5 5 0 0 0 7.1 0l1.4-1.4a5 5 0 0 0-7.1-7.1L10 5.9M14 11a5 5 0 0 0-7.1 0l-1.4 1.4a5 5 0 0 0 7.1 7.1L14 18.1' fill='none' stroke='%23facc15' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='.28'/%3E%3C/svg%3E") 14% 28% / 82px 82px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16v12H4zM7 15l3-3 2 2 2-3 3 4M8 9h.01' fill='none' stroke='%23facc15' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round' opacity='.28'/%3E%3C/svg%3E") 91% 55% / 88px 88px no-repeat;
}

.benefits > .section-heading,
.benefits > .benefit-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.benefits .section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.benefits .section-heading h2 {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  color: #071225;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.benefits .section-heading h2 span,
.benefits .section-heading h2 strong {
  display: block;
}

.benefits .section-heading h2 strong {
  color: var(--yellow);
}

.benefits .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #46546b;
  font-size: 18px;
  line-height: 1.55;
}

.trusted-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.16);
  color: #ca8a04;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trusted-label span {
  color: var(--yellow-dark);
  font-size: 14px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.info-card {
  position: relative;
  min-height: 312px;
  overflow: hidden;
  padding: 28px 36px 34px;
  border: 1px solid #e4e8f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.52);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.benefit-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(250, 204, 21, 0.45);
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.08);
  color: #d18a00;
  font-size: 14px;
  font-weight: 800;
}

.benefit-label.blue {
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow);
}

.benefit-label.purple {
  background: rgba(250, 204, 21, 0.12);
  color: var(--yellow);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #0a0a0a;
  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.28);
}

.card-icon.green,
.card-icon.blue,
.card-icon.purple {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #0a0a0a;
}

.step-icon.green {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: var(--text-dark);
}

.step-icon.blue {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.step-icon.purple {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.step-icon.yellow {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: var(--text-dark);
}

.decor-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(250, 204, 21, 0.46);
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.05);
  color: #d8a000;
}

.decor-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  margin: 0 0 14px;
  color: #071225;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.info-card p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
}

.seo-text p,
.step-card p {
  margin: 0;
  color: #4f5667;
  font-size: 15px;
  line-height: 1.75;
}

.platforms {
  max-width: none;
  margin-top: -1px;
  padding-top: 52px;
  border-radius: 28px 28px 0 0;
  background: #f8fafc;
}

.benefits,
.platforms {
  scroll-margin-top: 86px;
}

.platforms > .section-heading,
.platforms > .platform-grid,
.platforms > .popular-tools {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.18);
  color: #ca8a04;
  font-size: 14px;
  font-weight: 800;
}

.platforms .section-heading h2 {
  color: #111827;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 900;
}

.platforms .section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #667085;
}

.platform-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.platform-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid #d9dee8;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.platform-chips span:first-child {
  border-color: var(--yellow-dark);
  color: #ca8a04;
  box-shadow: 0 10px 24px rgba(250, 204, 21, 0.12);
}

.platform-chips span::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  font-size: 16px;
  line-height: 1;
}

.platform-chips span:nth-child(1)::before {
  content: "▶";
}

.platform-chips span:nth-child(2)::before {
  content: "▣";
}

.platform-chips span:nth-child(3)::before {
  content: "⌁";
}

.platform-chips span:nth-child(4)::before {
  content: "○";
}

.platform-chips span:nth-child(5)::before {
  content: "▧";
}

.platform-chips span:nth-child(6)::before {
  content: "♫";
}

.platform-chips span:nth-child(7)::before {
  content: "▻";
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.platform-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 238px;
  padding: 28px 20px 20px;
  border: 1px solid #e6eaf0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.38);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.platform-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 12px;
  font-weight: 900;
}

.platform-card span {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 2px auto 18px;
  border-radius: 18px;
  font-size: 42px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.platform-card .platform-icon {
  font-size: 0;
}

.platform-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.15;
}

.platform-card p {
  margin: 7px 0 20px;
  color: #64748b;
  font-size: 15px;
  font-weight: 700;
}

.platform-card em {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 42px;
  margin-top: auto;
  border: 1px solid color-mix(in srgb, var(--platform-color) 42%, transparent);
  border-radius: 11px;
  background: color-mix(in srgb, var(--platform-color) 7%, #fff);
  color: var(--platform-color);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.platform-card:hover em {
  border-color: var(--platform-color);
  background: var(--platform-color);
  color: #fff;
}

.instagram {
  --platform-color: #dd2a7b;
  color: var(--platform-color);
}

.tiktok,
.twitter {
  --platform-color: #000;
  color: var(--platform-color);
}

.facebook {
  --platform-color: #1877f2;
  color: var(--platform-color);
}

.twitch {
  --platform-color: #9146ff;
  color: var(--platform-color);
}

.pinterest {
  --platform-color: #e60023;
  color: var(--platform-color);
}

.instagram .platform-icon {
  border-radius: 20px;
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
}

.instagram .platform-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 4px solid #fff;
  border-radius: 10px;
}

.instagram .platform-icon::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.tiktok .platform-icon::before {
  content: "♪";
  color: #fff;
  font-size: 56px;
  line-height: 1;
  text-shadow: 3px 0 #22d3ee, -3px 0 #fb2f6b;
}

.tiktok .platform-icon,
.twitter .platform-icon {
  background: #111;
}

.facebook .platform-icon {
  background: #1877f2;
}

.facebook .platform-icon::before {
  content: "f";
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.twitch .platform-icon {
  width: 72px;
  height: 62px;
  border-radius: 10px;
  background: #9146ff;
}

.twitch .platform-icon::before {
  content: "";
  position: absolute;
  inset: 10px 12px 13px;
  border: 4px solid #fff;
  border-top-width: 7px;
}

.twitch .platform-icon::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -7px;
  width: 16px;
  height: 14px;
  background: #9146ff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.pinterest .platform-icon {
  background: #e60023;
}

.pinterest .platform-icon::before {
  content: "P";
  color: #fff;
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.twitter .platform-icon::before {
  content: "X";
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 44px;
  font-weight: 850;
  line-height: 1;
}

.popular-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #e6eaf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.popular-tools strong {
  color: #0f172a;
  font-size: 15px;
}

.popular-tools a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.popular-tools a:hover {
  border-color: rgba(20, 184, 166, 0.35);
  background: #f0fdfa;
  color: #0f766e;
}

.how {
  max-width: none;
  padding-top: 34px;
  padding-bottom: 54px;
  border-top: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
  background: #fff;
}

.how .section-heading,
.steps-panel {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.steps-panel {
  display: grid;
  grid-template-columns: 1fr 62px 1fr 62px 1fr 62px 1fr;
  align-items: center;
  padding: 26px 34px 32px;
  border: 1px solid #edf0f4;
  border-radius: 18px;
  background: #fff;
}

.step-card {
  text-align: center;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.3;
}

.step-card h3 b {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
}

.step-card:nth-of-type(2) h3 b {
  background: var(--blue);
}

.step-card:nth-of-type(3) h3 b {
  background: var(--purple);
}

.step-card:nth-of-type(4) h3 b {
  background: var(--yellow-dark);
  color: var(--text-dark);
}

.step-arrow {
  color: #a9bee5;
  font-size: 54px;
  font-weight: 300;
  text-align: center;
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 56px;
  padding-top: 54px;
  padding-bottom: 46px;
}

.seo-text h2 {
  margin-bottom: 18px;
}

.seo-text p + p {
  margin-top: 18px;
}

.content-types {
  padding-top: 44px;
  padding-bottom: 48px;
}

.content-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.content-type-grid article {
  padding: 22px;
  border: 1px solid #e6eaf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.content-type-grid h3,
.device-panel h2,
.responsible-use h2,
.final-cta h2 {
  margin: 0 0 10px;
  color: #0f172a;
}

.content-type-grid p,
.device-panel p,
.device-panel li,
.responsible-use p,
.final-cta p {
  margin: 0;
  color: #4f5667;
  font-size: 15px;
  line-height: 1.7;
}

.device-content {
  padding-top: 18px;
  padding-bottom: 22px;
}

.device-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 42px;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fffdf3 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.device-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.16;
}

.device-copy h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--yellow);
}

.device-copy p {
  max-width: 590px;
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.7;
}

.device-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.device-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  color: #ca8a04;
  font-size: 14px;
  font-weight: 700;
}

.device-support-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fff8db 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.visual-glow {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.18);
  filter: blur(1px);
  transform: translate(72px, -12px);
}

.float-bubble {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--yellow-dark);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.float-bubble svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.bubble-play {
  top: 38px;
  left: 58px;
}

.bubble-download {
  top: 22px;
  right: 50px;
}

.bubble-download svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark {
  position: absolute;
  z-index: 4;
  width: 14px;
  height: 14px;
  color: var(--yellow-dark);
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
}

.spark::before {
  width: 3px;
  height: 14px;
}

.spark::after {
  width: 14px;
  height: 3px;
}

.spark-one {
  top: 92px;
  left: 150px;
}

.spark-two {
  right: 34px;
  bottom: 96px;
  transform: scale(0.78);
}

.device-laptop {
  position: relative;
  z-index: 3;
  width: min(65%, 360px);
  min-width: 260px;
  margin-top: 42px;
}

.device-screen {
  position: relative;
  height: 190px;
  overflow: hidden;
  border: 10px solid #0f172a;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 18px 26px rgba(15, 23, 42, 0.2);
}

.device-screen::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #263245;
}

.device-base {
  display: block;
  height: 18px;
  margin: 0 -18px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #4b5563, #111827);
}

.device-base::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 0 auto;
  border-radius: 0 0 999px 999px;
  background: rgba(255, 255, 255, 0.32);
}

.screen-play,
.phone-play,
.tablet-play {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #facc15, #eab308);
}

.screen-play {
  top: 44px;
  left: 48px;
  width: 48px;
  height: 48px;
}

.screen-play::before,
.phone-play::before,
.tablet-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  transform: translateX(2px);
}

.screen-line,
.tablet-line,
.phone-line {
  position: absolute;
  height: 9px;
  border-radius: 999px;
  background: #d9dde3;
}

.screen-line {
  top: 48px;
  left: 114px;
  width: 110px;
}

.screen-line.long {
  top: 72px;
  width: 148px;
}

.screen-url,
.tablet-url {
  position: absolute;
  left: 38px;
  right: 64px;
  bottom: 70px;
  display: flex;
  align-items: center;
  height: 34px;
  padding-left: 14px;
  border-radius: 7px;
  background: #fff;
  color: #6b7280;
  font-size: 11px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.screen-download,
.phone-download,
.tablet-download {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
}

.screen-download {
  right: 38px;
  bottom: 70px;
  width: 34px;
  height: 34px;
}

.screen-download::before,
.phone-download::before,
.tablet-download::before {
  content: "↓";
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.screen-card {
  position: absolute;
  bottom: 24px;
  width: 58px;
  height: 34px;
  border-radius: 7px;
  background: #f0ede6;
}

.screen-card:nth-of-type(6) {
  left: 38px;
}

.screen-card:nth-of-type(7) {
  left: 112px;
}

.screen-card:nth-of-type(8) {
  left: 186px;
}

.device-phone,
.device-tablet {
  position: absolute;
  z-index: 4;
  border: 7px solid #111827;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 16px 24px rgba(15, 23, 42, 0.18);
}

.device-phone {
  left: 36px;
  bottom: 38px;
  width: 86px;
  height: 154px;
  border-radius: 16px;
}

.phone-notch {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 34px;
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: #111827;
  transform: translateX(-50%);
}

.phone-play {
  top: 44px;
  left: 22px;
  width: 42px;
  height: 42px;
}

.phone-line {
  left: 16px;
  bottom: 46px;
  width: 48px;
}

.phone-line.short {
  bottom: 30px;
  width: 38px;
}

.phone-download {
  right: 12px;
  bottom: 10px;
  width: 24px;
  height: 24px;
}

.phone-download::before {
  font-size: 15px;
}

.device-tablet {
  right: 34px;
  bottom: 34px;
  width: 144px;
  height: 174px;
  border-radius: 16px;
}

.tablet-play {
  top: 38px;
  left: 28px;
  width: 38px;
  height: 38px;
}

.tablet-line {
  top: 44px;
  left: 78px;
  width: 48px;
}

.tablet-line.short {
  top: 66px;
  width: 60px;
}

.tablet-url {
  left: 20px;
  right: 32px;
  bottom: 70px;
  height: 25px;
  padding-left: 8px;
  font-size: 7px;
}

.tablet-download {
  right: 12px;
  bottom: 70px;
  width: 24px;
  height: 25px;
}

.tablet-download::before {
  font-size: 15px;
}

.tablet-card {
  position: absolute;
  bottom: 22px;
  width: 42px;
  height: 34px;
  border-radius: 6px;
  background: #f0ede6;
}

.tablet-card:nth-of-type(6) {
  left: 18px;
}

.tablet-card:nth-of-type(7) {
  right: 18px;
}

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

.responsible-use {
  max-width: 920px;
  padding-top: 12px;
  padding-bottom: 24px;
  text-align: center;
}

.responsible-use h2 {
  font-size: 24px;
}

.final-cta {
  max-width: none;
  padding-top: 46px;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 72% 40%, rgba(250, 204, 21, 0.26), transparent 32%),
    linear-gradient(135deg, #07090f, #111827 58%, #5b4210);
  color: #fff;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.final-cta p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta a {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 900;
}

.device-illustration {
  position: relative;
  min-height: 250px;
}

.browser-window {
  position: absolute;
  right: 28px;
  bottom: 34px;
  width: 280px;
  height: 170px;
  border: 8px solid #1c2635;
  border-radius: 10px;
  background: #f8fbff;
  box-shadow: var(--shadow);
}

.browser-window > span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 12px 0 0 8px;
  border-radius: 50%;
  background: #14d3b5;
}

.browser-bar {
  width: 190px;
  height: 18px;
  margin: 18px auto 16px;
  border-radius: 9px;
  background: #e8edf5;
}

.browser-lines {
  width: 210px;
  height: 68px;
  margin: 0 auto;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #facc15 0 28%, transparent 28%),
    repeating-linear-gradient(#e2e8f0 0 9px, transparent 9px 18px);
}

.float-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 13px;
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.float-icon.video {
  left: 18px;
  bottom: 72px;
  background: #ff3b3b;
}

.float-icon.image {
  left: 78px;
  bottom: 28px;
  background: #ff7357;
}

.float-icon.music {
  right: 12px;
  bottom: 88px;
  background: #8b5cf6;
}

.float-icon.save {
  right: 82px;
  bottom: 34px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text-dark);
}

.faq {
  padding-top: 28px;
  padding-bottom: 36px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 24px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(20, 24, 39, 0.06);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 19px;
  border: 0;
  background: #fff;
  color: #2b3044;
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}

.faq-item button span {
  transition: transform 180ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 19px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open button span {
  transform: rotate(180deg);
}

.site-footer {
  background: var(--dark);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.8fr));
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 18px 24px;
}

.footer-logo {
  font-size: 20px;
}

.footer-inner section h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.footer-inner section > a,
.footer-inner section > span {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.footer-inner section > span {
  cursor: default;
}

.copyright {
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 18px 24px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

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

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

  .content-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 64px;
  }

  .burger {
    display: block;
  }

  .main-nav {
    position: absolute;
    right: 18px;
    top: 64px;
    display: none;
    width: min(330px, calc(100vw - 36px));
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: #0b172a;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a,
  .main-nav span {
    min-height: 42px;
    padding: 0 10px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .main-nav .active::after {
    display: none;
  }

  .language-link {
    margin-left: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .seo-content,
  .device-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .steps-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
  }

  .step-arrow {
    transform: rotate(90deg);
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .benefits {
    padding: 62px 14px 58px;
  }

  .benefits::after {
    display: none;
  }

  .benefits .section-heading {
    margin-bottom: 34px;
  }

  .benefits .section-heading h2 {
    font-size: 32px;
  }

  .benefits .section-heading p {
    font-size: 16px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-card {
    min-height: 0;
    padding: 28px;
    border-radius: 22px;
  }

  .decor-icon {
    width: 50px;
    height: 50px;
    top: 24px;
    right: 24px;
  }

  .platforms {
    padding-top: 42px;
    border-radius: 24px 24px 0 0;
  }

  .platform-chips {
    gap: 10px;
  }

  .platform-chips span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .logo {
    font-size: 18px;
  }

  .logo em {
    min-width: 31px;
    height: 18px;
    font-size: 11px;
  }

  .hero-section {
    min-height: auto;
    padding: 42px 14px 38px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content p {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .hero-form {
    grid-template-columns: 42px 1fr 42px;
    min-height: 0;
    padding: 6px;
  }

  .download-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
  }

  .loading-state {
    margin-top: 28px;
  }

  .loading-state p {
    font-size: 26px;
  }

  .loading-bar {
    height: 32px;
  }

  .result-card {
    gap: 18px;
    padding: 14px;
  }

  .result-preview {
    min-height: 160px;
  }

  .result-info h2 {
    font-size: 24px;
  }

  .format-item {
    align-items: stretch;
    flex-direction: column;
  }

  .format-item a {
    width: 100%;
  }

  .hero-icon {
    opacity: 0.55;
    transform: scale(0.75);
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .content-type-grid {
    grid-template-columns: 1fr;
  }

  .device-panel {
    padding: 24px;
    border-radius: 18px;
  }

  .device-support-visual {
    min-height: 250px;
    border-radius: 20px;
  }

  .device-laptop {
    width: 72%;
    min-width: 210px;
    transform: scale(0.86);
  }

  .device-phone {
    left: 18px;
    bottom: 28px;
    transform: scale(0.82);
    transform-origin: left bottom;
  }

  .device-tablet {
    right: 12px;
    bottom: 26px;
    transform: scale(0.78);
    transform-origin: right bottom;
  }

  .float-bubble {
    width: 48px;
    height: 48px;
  }

  .bubble-play {
    top: 24px;
    left: 26px;
  }

  .bubble-download {
    top: 18px;
    right: 26px;
  }

  .platform-card {
    min-height: 232px;
    padding: 26px 20px 20px;
  }

  .platform-card em {
    width: 100%;
  }

  .section-block {
    padding-right: 14px;
    padding-left: 14px;
  }

  .device-illustration {
    min-height: 230px;
    transform: scale(0.9);
    transform-origin: center;
  }
}



.logo picture,
.brand picture {
  display: block;
}

