:root {
  --color-bg: #fff;
  --color-bg-grad: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(240,240,245,0.85) 100%);
  --color-bg-card: rgba(255,255,255,0.96);
  --color-bg-card-grad: linear-gradient(120deg, rgba(255,255,255,0.97) 0%, rgba(245,245,250,0.94) 100%);
  --color-accent: #111;
  --color-accent-light: #222;
  --color-accent-fade: rgba(0,0,0,0.06);
  --color-border: rgba(0,0,0,0.07);
  --color-shadow: 0 2px 16px 0 rgba(0,0,0,0.07), 0 1.5px 4px 0 rgba(0,0,0,0.03);
  --color-shadow-card: 0 2px 12px 0 rgba(0,0,0,0.06);
  --color-btn-bg: #111;
  --color-btn-text: #fff;
  --color-btn-hover-bg: #fff;
  --color-btn-hover-text: #111;
  --color-btn-border: #111;
  --color-btn-ghost-bg: transparent;
  --color-btn-ghost-border: #111;
  --color-btn-ghost-hover-bg: #111;
  --color-btn-ghost-hover-text: #fff;
  --color-link: #111;
  --color-link-hover: #222;
  --radius-card: 18px;
  --radius-btn: 7px;
  --radius-img: 12px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --max-width: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --font-size-title: 2.1rem;
  --font-size-h2: 1.4rem;
  --font-size-h3: 1.1rem;
  --font-size-btn: 1rem;
  --padding-section: 56px 0 44px 0;
  --padding-section-mobile: 36px 0 24px 0;
  --gap-section: 36px;
  --gap-card: 28px;
  --gap-grid: 32px;
}

html, body {
  min-height: 100%;
  background: var(--color-bg-grad);
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--color-accent);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body.the-white-door-body {
  background: var(--color-bg-grad);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* HEADER */
.the-white-door-header {
  background: var(--color-bg-card-grad);
  box-shadow: var(--color-shadow);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.the-white-door-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 32px;
}

.the-white-door-logo__img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.07);
  object-fit: cover;
  transition: box-shadow var(--transition);
}
.the-white-door-logo__img:hover {
  box-shadow: 0 4px 20px 0 rgba(0,0,0,0.12);
}

.the-white-door-nav__list {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.the-white-door-nav__link {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.the-white-door-nav__link:hover,
.the-white-door-nav__link:focus {
  background: var(--color-accent-fade);
  color: var(--color-link-hover);
}

/* HERO */
.the-white-door-hero {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.the-white-door-hero__media {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 36px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.the-white-door-hero__video,
.the-white-door-hero__image {
  border-radius: var(--radius-img);
  box-shadow: var(--color-shadow-card);
  object-fit: cover;
  max-height: 300px;
  width: 100%;
  background: #eaeaea;
}
.the-white-door-hero__video {
  min-width: 240px;
  max-width: 420px;
  aspect-ratio: 16/9;
  display: block;
}
.the-white-door-hero__image {
  min-width: 180px;
  max-width: 260px;
  aspect-ratio: 4/5;
  display: block;
}
@media (max-width: 900px) {
  .the-white-door-hero__media {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .the-white-door-hero__video,
  .the-white-door-hero__image {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    max-height: 220px;
  }
}

.the-white-door-hero__content {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-bg-card-grad);
  border-radius: var(--radius-card);
  box-shadow: var(--color-shadow-card);
  padding: 32px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.the-white-door-hero__title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
  color: var(--color-accent);
}

.the-white-door-hero__tagline {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 8px 0;
  color: #444;
  opacity: 0.92;
}

.the-white-door-hero__meta {
  margin: 0 0 10px 0;
  width: 100%;
}
.the-white-door-hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.the-white-door-hero__list-item {
  position: relative;
  padding-left: 18px;
  color: #333;
  font-size: 0.98rem;
}
.the-white-door-hero__list-item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}

.the-white-door-hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.the-white-door-hero__btn {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  border: 1px solid var(--color-btn-border);
  border-radius: var(--radius-btn);
  padding: 10px 26px;
  font-size: var(--font-size-btn);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border var(--transition), box-shadow var(--transition);
  box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.06);
  outline: none;
  display: inline-block;
}
.the-white-door-hero__btn:hover,
.the-white-door-hero__btn:focus {
  background: var(--color-btn-hover-bg);
  color: var(--color-btn-hover-text);
  border: 1px solid var(--color-btn-border);
}
.the-white-door-hero__btn--ghost {
  background: var(--color-btn-ghost-bg);
  color: var(--color-accent);
  border: 1px solid var(--color-btn-ghost-border);
}
.the-white-door-hero__btn--ghost:hover,
.the-white-door-hero__btn--ghost:focus {
  background: var(--color-btn-ghost-hover-bg);
  color: var(--color-btn-ghost-hover-text);
  border: 1px solid var(--color-btn-ghost-border);
}

/* WORLD */
.the-white-door-world {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-world__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 42px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.the-white-door-world__content {
  flex: 1 1 0;
  background: var(--color-bg-card-grad);
  border-radius: var(--radius-card);
  box-shadow: var(--color-shadow-card);
  padding: 36px 36px 28px 36px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.the-white-door-world__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.the-white-door-world__subtitle {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 7px;
}
.the-white-door-world__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.the-white-door-world__list-item {
  position: relative;
  padding-left: 18px;
  color: #2a2a2a;
}
.the-white-door-world__list-item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.10;
}

/* HOW TO PLAY */
.the-white-door-how {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-how__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.the-white-door-how__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 20px;
}
.the-white-door-how__columns {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}
.the-white-door-how__col {
  flex: 1 1 0;
  min-width: 260px;
  background: var(--color-bg-card-grad);
  border-radius: var(--radius-card);
  box-shadow: var(--color-shadow-card);
  padding: 32px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.the-white-door-how__subtitle {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 8px;
}
.the-white-door-how__subsubtitle {
  font-size: 0.98rem;
  font-weight: 500;
  margin: 10px 0 4px 0;
}
.the-white-door-how__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.the-white-door-how__list-item {
  position: relative;
  padding-left: 18px;
  color: #2a2a2a;
}
.the-white-door-how__list-item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.11;
}

/* RHYTHM */
.the-white-door-rhythm {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-rhythm__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-bg-card-grad);
  border-radius: var(--radius-card);
  box-shadow: var(--color-shadow-card);
  padding: 36px 38px 28px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.the-white-door-rhythm__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 18px;
}
.the-white-door-rhythm__steps {
  margin: 0 0 16px 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.99rem;
}
.the-white-door-rhythm__step {
  margin-bottom: 0;
}
.the-white-door-rhythm__subtitle {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin: 14px 0 7px 0;
}
.the-white-door-rhythm__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.the-white-door-rhythm__list-item {
  position: relative;
  padding-left: 18px;
  color: #2a2a2a;
}
.the-white-door-rhythm__list-item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.10;
}

/* FEATURES */
.the-white-door-features {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-features__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.the-white-door-features__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 22px;
}
.the-white-door-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-grid);
}
.the-white-door-features__card {
  background: var(--color-bg-card-grad);
  border-radius: 14px;
  box-shadow: var(--color-shadow-card);
  padding: 28px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.the-white-door-features__card:hover {
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.12);
  transform: translateY(-2px) scale(1.015);
}
.the-white-door-features__card-title {
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.the-white-door-features__card-text {
  color: #333;
  opacity: 0.93;
}

/* SCREENSHOTS */
.the-white-door-screenshots {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-screenshots__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.the-white-door-screenshots__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 22px;
}
.the-white-door-screenshots__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}
.the-white-door-screenshots__item {
  background: var(--color-bg-card-grad);
  border-radius: 14px;
  box-shadow: var(--color-shadow-card);
  padding: 16px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.the-white-door-screenshots__item:hover {
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.12);
  transform: translateY(-2px) scale(1.015);
}
.the-white-door-screenshots__img {
  width: 100%;
  max-width: 210px;
  max-height: 130px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.07);
}
.the-white-door-screenshots__caption {
  font-size: 0.92rem;
  color: #333;
  opacity: 0.88;
  text-align: center;
  margin-top: 4px;
}

/* IMPRESSIONS */
.the-white-door-impressions {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-impressions__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.the-white-door-impressions__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 22px;
}
.the-white-door-impressions__grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.the-white-door-impressions__col {
  flex: 1 1 0;
  min-width: 260px;
  background: var(--color-bg-card-grad);
  border-radius: 14px;
  box-shadow: var(--color-shadow-card);
  padding: 28px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.the-white-door-impressions__subtitle {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 8px;
}
.the-white-door-impressions__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.the-white-door-impressions__list-item {
  position: relative;
  padding-left: 18px;
  color: #2a2a2a;
}
.the-white-door-impressions__list-item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.10;
}

/* CONTENT */
.the-white-door-content {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-content__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.the-white-door-content__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 22px;
}
.the-white-door-content__blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.the-white-door-content__block {
  background: var(--color-bg-card-grad);
  border-radius: 14px;
  box-shadow: var(--color-shadow-card);
  padding: 24px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.the-white-door-content__subtitle {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 7px;
}

/* FAQ */
.the-white-door-faq {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-faq__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.the-white-door-faq__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 22px;
}
.the-white-door-faq__qa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.the-white-door-faq__item {
  background: var(--color-bg-card-grad);
  border-radius: 14px;
  box-shadow: var(--color-shadow-card);
  padding: 22px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.the-white-door-faq__q {
  font-size: 1.01rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.the-white-door-faq__a {
  color: #333;
  opacity: 0.93;
}

/* REVIEWS */
.the-white-door-reviews {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-reviews__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.the-white-door-reviews__title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 22px;
}
.the-white-door-reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.the-white-door-reviews__item {
  background: var(--color-bg-card-grad);
  border-radius: 12px;
  box-shadow: var(--color-shadow-card);
  padding: 20px 16px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.the-white-door-reviews__text {
  font-size: 0.98rem;
  color: #222;
}
.the-white-door-reviews__date {
  font-size: 0.91rem;
  color: #888;
  margin-left: 8px;
}
.the-white-door-reviews__note {
  margin-top: 18px;
  color: #444;
  opacity: 0.86;
  font-size: 0.98rem;
}

/* CTA */
.the-white-door-cta {
  padding: var(--padding-section);
  background: var(--color-bg-grad);
}
.the-white-door-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-bg-card-grad);
  border-radius: 22px;
  box-shadow: var(--color-shadow-card);
  padding: 38px 38px 28px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.the-white-door-cta__title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.the-white-door-cta__text {
  font-size: 1.01rem;
  color: #222;
  text-align: center;
  margin-bottom: 8px;
}
.the-white-door-cta__actions {
  display: flex;
  gap: 18px;
  margin: 12px 0 10px 0;
}
.the-white-door-cta__btn {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  border: 1px solid var(--color-btn-border);
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-size: var(--font-size-btn);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border var(--transition), box-shadow var(--transition);
  box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.06);
  outline: none;
  display: inline-block;
}
.the-white-door-cta__btn:hover,
.the-white-door-cta__btn:focus {
  background: var(--color-btn-hover-bg);
  color: var(--color-btn-hover-text);
  border: 1px solid var(--color-btn-border);
}
.the-white-door-cta__btn--store {
  background: var(--color-btn-ghost-bg);
  color: var(--color-accent);
  border: 1px solid var(--color-btn-ghost-border);
}
.the-white-door-cta__btn--store:hover,
.the-white-door-cta__btn--store:focus {
  background: var(--color-btn-ghost-hover-bg);
  color: var(--color-btn-ghost-hover-text);
  border: 1px solid var(--color-btn-ghost-border);
}
.the-white-door-cta__question {
  margin-top: 10px;
  color: #444;
  font-size: 1.01rem;
  text-align: center;
}

/* FOOTER */
.the-white-door-footer {
  background: var(--color-bg-card-grad);
  box-shadow: 0 -2px 16px 0 rgba(0,0,0,0.04);
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  padding-bottom: 0;
}
.the-white-door-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 32px 16px 32px;
  flex-wrap: wrap;
}
.the-white-door-footer__links,
.the-white-door-footer__about,
.the-white-door-footer__social {
  flex: 1 1 0;
  min-width: 220px;
  margin-bottom: 18px;
}
.the-white-door-footer__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.the-white-door-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.the-white-door-footer__link {
  color: var(--color-link);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color var(--transition);
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
}
.the-white-door-footer__link:hover,
.the-white-door-footer__link:focus {
  color: var(--color-link-hover);
  background: var(--color-accent-fade);
}
.the-white-door-footer__text {
  color: #444;
  opacity: 0.86;
  font-size: 0.97rem;
}
.the-white-door-footer__copyright {
  background: transparent;
  text-align: center;
  color: #aaa;
  font-size: 0.93rem;
  padding: 14px 0 18px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

/* RESPONSIVE */
@media (max-width: 1240px) {
  .the-white-door-header__inner,
  .the-white-door-footer__inner,
  .the-white-door-hero__media,
  .the-white-door-hero__content,
  .the-white-door-world__inner,
  .the-white-door-how__inner,
  .the-white-door-rhythm__inner,
  .the-white-door-features__inner,
  .the-white-door-screenshots__inner,
  .the-white-door-impressions__inner,
  .the-white-door-content__inner,
  .the-white-door-faq__inner,
  .the-white-door-reviews__inner,
  .the-white-door-cta__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 900px) {
  .the-white-door-header__inner,
  .the-white-door-footer__inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 14px 12px;
  }
  .the-white-door-footer__inner {
    gap: 24px;
    padding-bottom: 0;
  }
  .the-white-door-world__inner,
  .the-white-door-impressions__grid,
  .the-white-door-how__columns {
    flex-direction: column;
    gap: 18px;
  }
  .the-white-door-rhythm__inner,
  .the-white-door-cta__inner {
    padding: 24px 10px 18px 10px;
  }
  .the-white-door-hero,
  .the-white-door-world,
  .the-white-door-how,
  .the-white-door-rhythm,
  .the-white-door-features,
  .the-white-door-screenshots,
  .the-white-door-impressions,
  .the-white-door-content,
  .the-white-door-faq,
  .the-white-door-reviews,
  .the-white-door-cta {
    padding: var(--padding-section-mobile);
  }
}

@media (max-width: 600px) {
  :root {
    --font-size-title: 1.4rem;
    --font-size-h2: 1.07rem;
    --font-size-h3: 1.01rem;
  }
  .the-white-door-header__inner,
  .the-white-door-footer__inner {
    padding: 8px 4px;
  }
  .the-white-door-hero__content,
  .the-white-door-world__content,
  .the-white-door-how__col,
  .the-white-door-rhythm__inner,
  .the-white-door-features__card,
  .the-white-door-impressions__col,
  .the-white-door-content__block,
  .the-white-door-faq__item,
  .the-white-door-reviews__item,
  .the-white-door-cta__inner {
    padding: 14px 7px 10px 7px;
    border-radius: 10px;
  }
  .the-white-door-cta__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }
  .the-white-door-nav__list {
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
}

::-webkit-scrollbar {
  width: 10px;
  background: rgba(240,240,245,0.7);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.07);
  border-radius: 6px;
}