/* ============================
   RESET + BASE
   ============================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: 'Noto Serif JP', 'Source Han Serif', serif;
  line-height: 1.6;
  color: #fff;
  background: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* global container (was referenced many times but not defined) */
.lp-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* spacing for each section (reduced in media queries) */
.lp-custom-section {
  padding: 100px 150px;
}

/* basic anchor */
a { text-decoration: none; color: inherit; }

/* ============================
   HEADER
   ============================ */
.lp-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lp-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
}

/* logo */
.lp-header__logo img { max-height: 60px; display: block; }

/* right column (top row + nav) */
.lp-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* top row */
.lp-header__top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.lp-header__title {
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-right: 10px;
}

.lp-header__btn {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  white-space: nowrap;
}

/* individual button styles */
.lp-header__btn.login { background: #fff; color: #000; }
.lp-header__btn.register { background: #444; color: #fff; }
.lp-header__btn.trial { background: #d32f2f; color: #fff; border-radius: 6px; }
.lp-header__btn.fitting { background: #2e7d32; color: #fff; border-radius: 6px; }

/* nav (bottom row) */
.lp-header__nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.lp-header__nav a { font-size: 14px; color: #fff; }

/* mobile menu button (hidden on desktop) */
.lp-header__menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ============================
   MOBILE NAV + OVERLAY
   ============================ */
.lp-mobile-nav {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100%;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  transition: left 0.28s ease;
  z-index: 1001;
}

.lp-mobile-nav.active { left: 0; }

.lp-mobile-nav__close {
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 20px;
}

.lp-mobile-nav ul { list-style: none; padding-left: 0; }
.lp-mobile-nav li { margin: 15px 0; }
.lp-mobile-nav a { color: #fff; font-size: 16px; }

/* overlay */
.lp-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.lp-overlay.active { opacity: 1; visibility: visible; }

/* ============================
   HERO
   ============================ */
.lp-hero { color: #fff; text-align: center; padding: 100px 150px; background: #000;margin-top: 40px; }

/* There is an inline style on the child .lp-container in your HTML that sets the background-image.
   That's OK — but if you move the background-image into CSS, remove the inline style */
.lp-hero .lp-hero-bg {
  background-image: url('/images/sample-main-image.png');
  background-size: cover;
  background-position: center;
  height: 70vh;
  width: 100%;
}

/* hero content container */
.lp-hero-content-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
}

/* left/right content */
.lp-hero-content-container .left { text-align: left; max-width: 650px; }
.lp-hero-content-container .left h1 {
  font-size: 40px; font-weight: 700; margin-bottom: 20px;
}
.lp-hero-content-container .left p { font-size: 20px; font-weight: 700; }
.lp-hero-content-container .right img { max-width: 400px; width: 100%; height: auto; }

/* ============================
   SECTION 2 (sleep benefit)
   ============================ */
#section-2 { padding-bottom: 70px; background: #000; }
#section-2 .lp-container { text-align: center; }
#section-2 .header-1 { font-size: 40px; font-weight: 700; color: #E7EF32; }
#section-2 .header-2 { font-size: 52px; font-weight: 700; margin-top: 10px; }
#section-2 .header-2 span.yellow { color: #E7EF32; }
#section-2 .section-2-image { margin-top: 30px; max-width: 600px; width: 100%; height: auto; }
#section-2 .section-2-paragraph-1 { font-size: 24px; font-weight: 500; color: #fff; max-width: 750px; margin: 20px auto 0; text-align: left; }

/* ============================
   SECTION 3
   ============================ */
#section-3 { padding-top: 0; background-color: #000; }
#section-3 .lp-container { text-align: center; display: flex; flex-direction: column; justify-content: center; }
#section-3 .heading-with-bg { font-size: 24px; color: #000; background-color: #fff; width: fit-content; padding: 10px 20px; margin: 0 auto; }
#section-3 .header-1 { font-size: 56px; font-weight: 800; margin-top: 20px; }
#section-3 p { text-align: left; font-size: 20px; font-weight: 700; width: fit-content; margin: 0 auto; }

/* ============================
   SECTION 4 (heading + bullets)
   ============================ */
#section-4 { padding-top: 0; background-color: #000; }
#section-4 .heading-with-lines { background-color: #000; padding: 20px 0; text-align: center; }
#section-4 .lp-container { max-width: 1000px; width: 100%; margin: 0 auto; }

#section-4 .heading-with-lines h2 {
  color: #fff; font-size: 55px; font-weight: 700; margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 15px;
}
#section-4 .heading-with-lines h2 span { color: #d7df3f; }

#section-4 .heading-with-lines h2::before,
#section-4 .heading-with-lines h2::after {
  content: ""; flex: 1; height: 1px; background: #898989;
}

/* Bullet list (multi-column wrap) */
#section-4 .custom-bullet-list {
  list-style: none; margin: 20px auto 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 15px 30px;
  justify-content: flex-start; max-width: 748px;
}
#section-4 .custom-bullet-list li {
  color: #fff; font-size: 22px; font-weight: 500; position: relative; padding-left: 1.4em;
  min-width: 160px; /* ensures readable wrapping */
}
#section-4 .custom-bullet-list li::before {
  content: "●"; position: absolute; left: 0; top: 0; color: #fff; font-size: 22px;
}

/* ============================
   SECTION 5 (pricing + CTA)
   ============================ */
#section-5 {
  /* use background image (you already used inline on a different section; this is the one you provided) */
  background: url('https://thepremiumbackstage.com/wp/wp-content/uploads/2025/09/background-image-2.webp') center center/cover no-repeat;
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  min-height: 480px;
}

/* dark overlay for readability (was missing background earlier) */
#section-5::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); z-index: 1;
}

/* content sits above overlay */
#section-5 .lp-container { position: relative; z-index: 2; max-width: 1110px; margin: 0 auto; }

/* heading (smaller centered box) */
#section-5 .heading-with-lines { max-width: 400px; margin: 0 auto; width: 100%; }
#section-5 .heading-with-lines h2 {
  color: #fff; font-size: 36px; font-weight: 700; margin: 0; display: flex; align-items: center; justify-content: center; gap: 15px;
}
#section-5 .heading-with-lines h2::before,
#section-5 .heading-with-lines h2::after { content: ""; flex: 1; height: 1px; background: #efefef; }

/* CTA box/button */
#section-5 .cta-box { max-width: 800px; margin: 0 auto; }
#section-5 h2 { font-size: 28px; color: #fff; margin-bottom: 15px; }
#section-5 p { font-size: 18px; color: #ccc; margin-bottom: 30px; }
#section-5 .cta-btn { display: inline-block; background-color: #c6a750; color: #000; padding: 12px 28px; font-size: 18px; font-weight: 700; border-radius: 5px; }

/* pricing boxes */
#section-5 .plan-box-container {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 40px;
}
#section-5 .plan-box-item {
  border: 2px solid #8a8059; background-color: #000; text-align: center;
  padding: 26px 18px; box-sizing: border-box;
  width: calc(33.333% - 26.66px); /* three columns */
  margin: 0;
}
#section-5 .plan-box-heading { color: #8a8059; font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; }
#section-5 .plan-box-price { display: flex; justify-content: center; align-items: center; flex-direction: column; }
#section-5 .plan-box-price-num { font-size: 3.125rem; font-weight: 700; line-height: 1; }
#section-5 .plan-box-price-text { font-size: 1.5rem; font-weight: 700; margin-top: 8px; }
#section-5 .plan-box-detail { font-size: 1rem; font-weight: 600; margin-top: 12px; }

/* plan bottom small print and CTA */
#section-5 .plan-bottom { margin-top: 30px; z-index: 2; position: relative; }
#section-5 .plan-bottom p { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
#section-5 .plan-bottom .lp-button-link {
  font-weight: 700; background-color: #C13642; color: #fff; font-size: 18px; padding: 10px 25px; border-radius: 5px; display: inline-block;
}

/* ============================
   ABOUT + FOOTER
   ============================ */
.lp-about { padding: 60px 20px; background: #f9f9f9; color: #000; }
.lp-about h2 { margin-bottom: 20px; font-size: 28px; }

.lp-footer { background: #222; color: #fff; text-align: center; padding: 20px; }

/* ============================
   RESPONSIVE RULES
   ============================ */
@media (max-width: 1400px) {
    .lp-hero-content-container {
        margin-top: 20px;
    }
    
}


/* ---- Large tablets / small desktops ---- */
@media (max-width: 1200px) {
  .lp-custom-section { padding: 80px 60px; }
  .lp-hero-content-container { gap: 50px; }
  #section-4 .heading-with-lines h2 { font-size: 44px; }
  #section-5 .heading-with-lines h2 { font-size: 30px; }
  #section-5 .plan-box-item { width: calc(33.333% - 20px); }
}

/* ---- Tablet ---- */
@media (max-width: 992px) {
    .lp-hero .lp-container {
        height: 70vh !important; /* Shorter height on tablets */
        background-size: contain !important; /* Ensure full image is visible */
        background-repeat: no-repeat !important; /* Prevent tiling */
        margin-bottom: 10px;
    }
    .lp-hero .lp-container.lp-hero-content-container{
        height: unset !important;
    }
  /* Header */
  .lp-header__nav { display: none; }
  .lp-header__menu-btn { display: block; }
  .lp-header__top { display: none; }

  /* Section spacing */
  .lp-custom-section { padding: 60px 28px; }

  /* HERO: stack content */
  .lp-hero { padding: 60px 20px; }
  .lp-hero-content-container { flex-direction: column; align-items: center; gap: 30px; margin-top: 0; }
  .lp-hero-content-container .left { text-align: center; }
  .lp-hero-content-container .left h1 { font-size: 30px; }
  .lp-hero-content-container .left p { font-size: 18px; }
  .lp-hero-content-container .right img { max-width: 320px; }

  /* Section headings */
  #section-2 .header-2 { font-size: 40px; }
  #section-3 .header-1 { font-size: 42px; }

  /* Section 4: reduce heading + bullet size */
  #section-4 .heading-with-lines h2 { font-size: 36px; }
  #section-4 .custom-bullet-list li { font-size: 20px; min-width: 140px; }
  #section-4 .custom-bullet-list { justify-content: center; }

  /* Section 5: pricing grid -> 2 columns */
  #section-5 { padding: 60px 20px; min-height: auto; }
  #section-5 .plan-box-item { width: calc(50% - 20px); padding: 22px 16px; }
  #section-5 .plan-box-price-num { font-size: 2.4rem; }
  #section-5 .plan-box-price-text { font-size: 1.2rem; }
}

/* ---- Small phones ---- */
@media (max-width: 768px) {
  .lp-custom-section { padding: 48px 18px; }

  /* header layout: compact */
  .lp-header__container { align-items: center; padding: 12px 16px; }
  .lp-header__logo img { max-height: 48px; }

  /* hero smaller */
  .lp-hero-content-container { gap: 18px; }
  .lp-hero-content-container .left h1 { font-size: 24px; }
  .lp-hero-content-container .left p { font-size: 16px; }

  /* Section 2/3/4 smaller text */
  #section-2 .header-1 { font-size: 28px; }
  #section-2 .header-2 { font-size: 28px; }
  #section-3 .header-1 { font-size: 32px; }

  #section-4 .heading-with-lines h2 { font-size: 28px; }
  #section-4 .custom-bullet-list li {  min-width: 120px; padding-left: 1.1em; }
  #section-4 .custom-bullet-list { gap: 10px 18px; justify-content: center; }

  /* Section 5: single column */
  #section-5 .plan-box-container { gap: 16px; }
  #section-5 .plan-box-item { width: 100%; }
  #section-5 .plan-box-price-num { font-size: 2rem; }
  #section-5 .plan-box-price-text { font-size: 1rem; }

  /* Call-to-action button */
  #section-5 .plan-bottom .lp-button-link { font-size: 16px; padding: 10px 18px; }

  #section-4 .custom-bullet-list li::before {
    font-size: 20px;
    }
}

/* ---- Very small phones ---- */
@media (max-width: 480px) {
  .lp-custom-section { padding: 36px 14px; }

  .lp-header__menu-btn { font-size: 26px; }
  .lp-header__logo img { max-height: 44px; }

  .lp-hero-content-container .left h1 { font-size: 20px; }
  .lp-hero-content-container .left p { font-size: 15px; }

  #section-4 .heading-with-lines h2 { font-size: 22px; }
  #section-4 .custom-bullet-list li { font-size: 18px; min-width: auto; padding-left: 1em; }

  #section-5 .heading-with-lines h2 { font-size: 22px; }
  #section-5 .plan-box-item { padding: 18px 12px; }
  #section-5 .plan-box-price-num { font-size: 1.8rem; }
  #section-5 .plan-box-price-text { font-size: 0.95rem; }
  #section-5 .plan-bottom .lp-button-link { font-size: 15px; padding: 8px 14px; }
    #section-4 .custom-bullet-list li::before {
        font-size: 17px;
    }
}
.breadcrumb {
	display:none;
}
.video-hero {
    height: 800px;
    overflow: hidden;
    position: relative;
    width: auto;
}

.video-bg {
  position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

