.site-body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background-color: #f8f9fa;
  background-image: radial-gradient(ellipse 90% 50% at 50% -8%, color-mix(in srgb, #ff6b00 10%, transparent), transparent 58%), radial-gradient(circle, color-mix(in srgb, #1a1a2e 4%, transparent) 1px, transparent 1.5px);
  background-size: auto, 22px 22px;
  color: #1a1a2e;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
}

.site-main {
  flex: 1 0 auto;
}
.site-main > .alert {
  max-width: 1180px;
  margin: 1rem auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  color: #1a1a2e;
  border-bottom: 1px solid color-mix(in srgb, #1a1a2e 12%, #ffffff);
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__burger {
  display: none;
  margin-left: auto;
  background: transparent;
  color: inherit;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
}
.site-header__burger:focus {
  outline: none;
}
.site-header__burger:focus-visible {
  outline: 2px solid #ff6b00;
  outline-offset: 3px;
}
.site-header__burger {
  transition: background-color 180ms ease;
}
@media (max-width: 960px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
  }
  .site-header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.site-logo {
  color: inherit;
  text-decoration: none;
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  white-space: nowrap;
}
.site-logo:focus {
  outline: none;
}
.site-logo:focus-visible {
  outline: 2px solid #ff6b00;
  outline-offset: 3px;
}
.site-logo__mark {
  color: #ff6b00;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  margin-left: auto;
}
.site-nav__link {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.75;
  transition: color 180ms ease, opacity 180ms ease;
}
.site-nav__link:focus {
  outline: none;
}
.site-nav__link:focus-visible {
  outline: 2px solid #ff6b00;
  outline-offset: 3px;
}
.site-nav__link:hover, .site-nav__link--active {
  opacity: 1;
  color: #ff6b00;
}
.site-nav__auth {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.75rem;
}
.site-nav__auth form {
  margin: 0;
}
@media (max-width: 960px) {
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
  }
  .site-nav--open {
    display: flex;
  }
  .site-nav__link {
    padding: 0.55rem 0;
    border-bottom: 1px solid color-mix(in srgb, #1a1a2e 10%, #ffffff);
  }
  .site-nav__auth {
    margin: 0.5rem 0 0;
    flex-direction: column;
  }
}

.site-footer {
  background: #1a1a2e;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: auto;
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}
.site-footer__link {
  color: inherit;
  transition: opacity 180ms ease;
}
.site-footer__link:focus {
  outline: none;
}
.site-footer__link:focus-visible {
  outline: 2px solid #ff6b00;
  outline-offset: 3px;
}
.site-footer__link:hover {
  opacity: 0.72;
}
@media (max-width: 960px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
  .site-footer__nav {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 650;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.btn:focus {
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid #ff6b00;
  outline-offset: 3px;
}
.btn--primary {
  background: linear-gradient(135deg, #ff6b00 0%, color-mix(in srgb, #ff6b00 55%, #ffb800) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px color-mix(in srgb, #ff6b00 28%, transparent);
}
.btn--primary:hover {
  color: #ffffff;
  box-shadow: 0 14px 28px color-mix(in srgb, #ff6b00 40%, transparent);
}
@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .btn--primary:hover {
    transform: translateY(-2px);
  }
}
.btn--outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn--outline:hover {
  opacity: 0.72;
}
.btn--ghost {
  background: transparent;
  color: #1a1a2e;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
}
.btn--ghost:hover {
  background: color-mix(in srgb, #1a1a2e 6%, #ffffff);
}
.btn--inverse {
  background: #ffffff;
  color: #ff6b00;
}
.btn--inverse:hover {
  background: #ffffff;
  color: #1a1a2e;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
    transform: none;
  }
}
.hero {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .hero {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .hero {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.hero:last-child {
  margin-bottom: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.75rem;
}
.hero__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.hero__mark {
  color: #ff6b00;
  background: none;
  font-weight: 800;
}
.hero__subtitle {
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.hero__badge::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #ff6b00;
}
@media (hover: hover) {
  .hero__badge:hover {
    background: color-mix(in srgb, #ff6b00 8%, #ffffff);
    border-color: color-mix(in srgb, #ff6b00 32%, #f8f9fa);
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.hero__note {
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
  font-size: 0.85rem;
}
.hero__media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 320px;
  border-radius: 16px;
  background: radial-gradient(circle at 78% 18%, color-mix(in srgb, #ff6b00 42%, transparent), transparent 42%), radial-gradient(circle at 18% 82%, color-mix(in srgb, #ffb800 28%, transparent), transparent 44%), #1a1a2e;
}
@media (max-width: 960px) {
  .hero__media {
    min-height: 220px;
  }
}
.hero__corner {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  color: #ffffff;
  background: color-mix(in srgb, #ff6b00 88%, #1a1a2e);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.hero__float {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #1a1a2e;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 12px 28px color-mix(in srgb, #1a1a2e 10%, transparent);
}
.hero__float--a {
  top: 42%;
  right: 1.25rem;
}
.hero__float--b {
  right: auto;
  left: 1.25rem;
  bottom: 1.25rem;
  top: auto;
}

.how-it-works {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .how-it-works {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .how-it-works {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.how-it-works:last-child {
  margin-bottom: 0;
}
.how-it-works__header {
  margin-bottom: 2rem;
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .how-it-works__header {
    margin-bottom: 1.5rem;
  }
}
.how-it-works__heading {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.how-it-works__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.how-it-works__list:has(.how-it-works__step:nth-child(2))::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(to bottom, color-mix(in srgb, #ff6b00 70%, transparent), color-mix(in srgb, #ff6b00 18%, transparent));
  pointer-events: none;
}
@media (max-width: 960px) {
  .how-it-works__list:has(.how-it-works__step:nth-child(2))::before {
    left: 1.125rem;
    top: 1.125rem;
    bottom: 1.125rem;
  }
}
.how-it-works__step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 960px) {
  .how-it-works__step {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.75rem;
  }
}
.how-it-works__index {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1.5px solid #ff6b00;
  background: #ffffff;
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ff6b00;
  user-select: none;
}
@media (max-width: 960px) {
  .how-it-works__index {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.72rem;
  }
}
.how-it-works__body {
  min-width: 0;
}
.how-it-works__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.5rem;
}
.how-it-works__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
.how-it-works__subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
}
.how-it-works__features {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.how-it-works__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  line-height: 1.45;
}
.how-it-works__icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12em;
  flex-shrink: 0;
  color: #ff6b00;
}
.how-it-works__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .how-it-works__actions {
    margin-top: 1.75rem;
  }
}

.why-us {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .why-us {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .why-us {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.why-us:last-child {
  margin-bottom: 0;
}
.why-us__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.75rem;
}
.why-us__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 960px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}
.why-us__card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  padding: 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .why-us__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px color-mix(in srgb, #1a1a2e 10%, transparent);
  }
}
.why-us__card-title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.why-us__card-text {
  margin: 0;
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
}

.stats {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .stats {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .stats {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.stats:last-child {
  margin-bottom: 0;
}
.stats__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.75rem;
}
.stats__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 767.98px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}
.stats__item {
  background: #1a1a2e;
  color: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .stats__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px color-mix(in srgb, #1a1a2e 10%, transparent);
  }
}
.stats__value {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: #ffb800;
}
.stats__label {
  display: block;
}
.stats__footnote {
  margin-top: 1rem;
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
  font-size: 0.85rem;
}

.faq {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .faq {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .faq {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.faq:last-child {
  margin-bottom: 0;
}
.faq__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.75rem;
}
.faq__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}
.faq__item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  margin: 0 0 0.5rem;
  padding: 0;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}
.faq__question:focus {
  outline: none;
}
.faq__question:focus-visible {
  outline: 2px solid #ff6b00;
  outline-offset: 3px;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.4em;
  flex-shrink: 0;
  border-right: 2px solid #ff6b00;
  border-bottom: 2px solid #ff6b00;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.faq__item[open] .faq__question::after {
  transform: rotate(225deg);
  margin-top: 0.55em;
}
.faq__answer {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
}

.final-cta {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .final-cta {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .final-cta {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.final-cta:last-child {
  margin-bottom: 0;
}
.final-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  background: #ff6b00;
  color: #ffffff;
  border-color: color-mix(in srgb, #1a1a2e 20%, #ff6b00);
}
@media (max-width: 960px) {
  .final-cta {
    grid-template-columns: 1fr;
  }
}
.final-cta__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.final-cta__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.final-cta .btn:focus-visible {
  outline-color: #ffffff;
}
.final-cta__media {
  background: color-mix(in srgb, #1a1a2e 35%, #ff6b00);
  color: #ffffff;
  border-radius: 16px;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.packages {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .packages {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .packages {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.packages:last-child {
  margin-bottom: 0;
}
.packages {
  scroll-margin-top: 5rem;
}
.packages__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.packages__subtitle {
  margin: 0;
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 960px) {
  .packages__grid {
    grid-template-columns: 1fr;
  }
}
.packages__item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  padding: 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .packages__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px color-mix(in srgb, #1a1a2e 10%, transparent);
  }
}
.packages__item--hit {
  border-color: #ff6b00;
}
.packages__item-title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.packages__item-price {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff6b00;
}

.page-intro {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .page-intro {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .page-intro {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.page-intro:last-child {
  margin-bottom: 0;
}
.page-intro__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.page-intro__lead {
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
}
.page-intro__text {
  margin: 0 0 0.75rem;
}

.advantages {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .advantages {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .advantages {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.advantages:last-child {
  margin-bottom: 0;
}
.advantages__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.advantages__list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}
.advantages__item {
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
  margin-bottom: 0.4rem;
}

.contact {
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  border-radius: 16px;
  background: #ffffff;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 960px) {
  .contact {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 480px), (max-width: 767px) and (orientation: landscape) {
  .contact {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
}
.contact:last-child {
  margin-bottom: 0;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 960px) {
  .contact {
    grid-template-columns: 1fr;
  }
}
.contact__done {
  margin: 0 0 1rem;
}

.index-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
@media (max-width: 960px) {
  .index-page {
    padding: 1.25rem 1.25rem 3rem;
  }
}

.buyer-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
@media (max-width: 960px) {
  .buyer-page {
    padding: 1.25rem 1.25rem 3rem;
  }
}

.seller-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
@media (max-width: 960px) {
  .seller-page {
    padding: 1.25rem 1.25rem 3rem;
  }
}

.about-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
@media (max-width: 960px) {
  .about-page {
    padding: 1.25rem 1.25rem 3rem;
  }
}

.ads-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
@media (max-width: 960px) {
  .ads-page {
    padding: 1.25rem 1.25rem 3rem;
  }
}
.ads-page__intro {
  margin: 0 0 2rem;
}
.ads-page__kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  margin: 0 0 0.5rem;
}
.ads-page__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.ads-page__lead {
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
}
.ads-page__channel {
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
}
.ads-page__channel:hover {
  text-decoration: underline;
}
.ads-page__empty {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  padding: 2.5rem 1.75rem;
  text-align: center;
}
.ads-page__empty-title {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.ads-page__empty-text {
  color: color-mix(in srgb, #1a1a2e 62%, #f8f9fa);
  margin: 0 0 1.5rem;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .ads-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.ad-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #1a1a2e 12%, #f8f9fa);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.ad-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in srgb, #1a1a2e 10%, transparent);
}
.ad-card__gallery {
  display: grid;
  gap: 2px;
  background: color-mix(in srgb, #1a1a2e 8%, #f8f9fa);
  min-height: 220px;
}
.ad-card__gallery--1 {
  grid-template-columns: 1fr;
  min-height: 280px;
}
.ad-card__gallery--2 {
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}
.ad-card__gallery--3 {
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 200px;
}
.ad-card__gallery--4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 320px;
}
.ad-card__gallery--5 {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1.15fr 1fr;
  min-height: 340px;
}
.ad-card__gallery--5 .ad-card__shot:nth-child(1),
.ad-card__gallery--5 .ad-card__shot:nth-child(2) {
  grid-column: span 3;
}
.ad-card__gallery--5 .ad-card__shot:nth-child(n+3) {
  grid-column: span 2;
}
.ad-card__gallery--6 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  min-height: 320px;
}
.ad-card__shot {
  display: block;
  min-height: 120px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ad-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.ad-card__text {
  margin: 0;
  color: #1a1a2e;
  font-size: 0.98rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.ad-card__link {
  margin-top: auto;
  align-self: flex-start;
  color: #ff6b00;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.ad-card__link:hover {
  text-decoration: underline;
}

.contact-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
@media (max-width: 960px) {
  .contact-page {
    padding: 1.25rem 1.25rem 3rem;
  }
}

html {
  height: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
