@font-face {
  font-family: "Mouse Memoirs";
  src: url("../fonts/mouse-memoirs.regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f5f5;
  background-color: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

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

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  height: 60px;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.5);
}

.logo {
  font-family: "Mouse Memoirs", cursive;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.top-bar nav {
  display: flex;
  gap: 2rem;
}

.top-bar nav a {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.top-bar nav a:hover,
.logo:hover {
  opacity: 0.7;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 2rem 5.5rem;
}

.friends-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.5);
}

.friends-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
}

.friends-list img {
  display: block;
  max-height: 2rem;
  max-width: 6rem;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.friends-list .friends-logo--blender {
  max-width: 7.5rem;
  max-height: 2.25rem;
}

.friends-list .friends-logo--ograf {
  max-width: 7rem;
}

.friends-list img:hover {
  opacity: 1;
}

.content {
  width: 100%;
  max-width: 42rem;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
}

.content h1 {
  font-family: "Mouse Memoirs", cursive;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.content h2 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.content p {
  margin-bottom: 2rem;
}

.content p:last-child {
  margin-bottom: 0;
}

.contact-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.content--contact h1 {
  margin-bottom: 1.75rem;
}

.contact-field,
.contact-list .contact-field {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.65rem 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.contact-field--info {
  margin-bottom: 0.65rem;
}

.contact-field--info:last-child {
  margin-bottom: 0;
}

.contact-field--message {
  display: block;
  margin-bottom: 1rem;
}

.contact-field__label {
  font-size: 1rem;
  color: #fff;
}

.contact-field--message .contact-field__label {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-field__value {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
}

.contact-field__input {
  width: 11rem;
  max-width: 100%;
  height: 1.75rem;
  padding: 0 0.5rem;
  font: inherit;
  font-size: 0.9rem;
  color: #111;
  background: #fff;
  border: none;
  border-radius: 0.3rem;
}

.contact-field__textarea {
  display: block;
  width: 100%;
  min-height: 8.5rem;
  padding: 0.5rem;
  font: inherit;
  font-size: 0.9rem;
  color: #111;
  background: #fff;
  border: none;
  border-radius: 0.3rem;
  resize: vertical;
}

.contact-field__input:focus,
.contact-field__textarea:focus {
  outline: none;
}

.contact-field__input:-webkit-autofill,
.contact-field__input:-webkit-autofill:hover,
.contact-field__input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.contact-form {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form__submit {
  display: inline-block;
  min-width: 4.5rem;
  padding: 0.35rem 0.85rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111;
  background: #fff;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
}

.contact-form__submit:hover {
  opacity: 0.85;
}

.form-notice {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.form-notice--error {
  color: #ffb4b4;
}

.hp {
  display: none !important;
}

.content--product {
  max-width: 52rem;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-header h1,
.product-header__title {
  margin-bottom: 0;
}

.product-logo {
  display: block;
  max-width: 150px;
  width: 100%;
  height: auto;
}

.product-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  background: #fff;
  border-radius: 0.25rem;
}

.product-lead {
  margin-bottom: 1.75rem;
}

.product-shot {
  margin: 0 0 2rem;
}

.product-shot img {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
}

.product-pricing {
  margin-bottom: 2rem;
}

.product-pricing h2 {
  margin-bottom: 0.75rem;
}

.product-pricing__plans {
  list-style: none;
  margin-bottom: 0.75rem;
}

.product-pricing__plans li {
  margin-bottom: 0.35rem;
}

.product-pricing__plans li:last-child {
  margin-bottom: 0;
}

.product-pricing__plans strong {
  display: inline-block;
  min-width: 3.5rem;
  font-weight: 500;
}

.product-pricing__note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.product-cta {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  background: #fff;
  border-radius: 0.3rem;
  transition: opacity 0.2s ease;
}

.product-cta:hover {
  opacity: 0.85;
}

.product-list {
  list-style: none;
}

.product-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.25rem 1.25rem;
  padding: 1.25rem 0;
  transition: opacity 0.2s ease;
}

.product-list a:hover {
  opacity: 0.75;
}

.product-list__logo {
  grid-column: 1;
  grid-row: 1 / span 2;
  max-width: 120px;
  width: 100%;
  height: auto;
}

.product-list__desc {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 0.95rem;
  opacity: 0.85;
}

.product-list .product-badge {
  grid-column: 3;
  grid-row: 1 / span 2;
}

@media (max-width: 600px) {
  .top-bar {
    padding: 0 1.25rem;
  }

  .friends-bar {
    padding: 0 1.25rem;
    height: 52px;
  }

  .friends-list {
    gap: 1.25rem;
  }

  .friends-list img {
    max-height: 1.5rem;
    max-width: 4.5rem;
  }

  .page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 4.5rem;
  }

  .content {
    padding: 2rem 1.5rem;
  }

  .content h1 {
    font-size: 2rem;
  }

  .contact-field__input {
    width: 100%;
  }
}
