body, html {
  overflow-x: hidden;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #313131;
  color: #222;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'LTRenovate', 'Open Sans', Arial, sans-serif;
}

.video-fade-top {
  width: 100%;
  height: auto;

  /* Create the fade effect using a mask */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%);
  mask-image: linear-gradient(to bottom, transparent, black 30%);
  
  /* Ensure the mask behaves as expected */
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Container utility */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 40px 0;
}

/* Header/Hero Section */
header {
  background: radial-gradient(circle at center, #7c7c7c 0%, #313131 80%);
  color: #fff;
  text-align: center;
  padding-top: 0px;
  position: relative;
  height: 68vh;
}

header .logo {
  height: 110px;
}

header h1 {
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
}

.header-labels {
  display: flex;
  align-items: center;
  justify-content: space-between; /* this spaces out labels and image */
  width: 100vw;
  max-width: 1400px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.center-img {
  width: 50vw;
  max-width: 800px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  margin-bottom: clamp(-320px, -20vw, 10000px);
}

.side-label {
  font-family: 'LTRenovate', Arial, sans-serif;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
  max-width: 220px;
  /* fixed distance from container edge: */
  margin-left: 40px;
  margin-right: 40px;
}

.left-label  { margin-right: 0; text-align: left; }
.right-label { margin-left: 0; text-align: right; }

.logo {
    max-width: 420px;
    margin: 0 auto 20px auto;
    margin-bottom: 50px;
    display: block;
}

.header-cta-wrap {
    text-align: center;
    position:absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100;
}

.cta {
    display: inline-block;
    margin: 0 auto;
    padding: 10px 70px;
    background: #BB2323;
    color: #fff;
    font-family: 'LTRenovate', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 28px;
    box-shadow: 0 2px 10px rgba(60,0,0,0.09);
    text-decoration: none;
}

.features {
  background: #F8F8ED;
  color: #313131;
  padding: clamp(0px, 40vw, 280px) 0 300px 0;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.feature {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 200px;
  min-height: 250px;
  /* Center the feature row within the container */
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.feature-2 {
  grid-template-columns: 1fr 250px;
}

.circle-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(80,80,80,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.09rem;
  color: #aaa;
  font-weight: 500;
  flex-shrink: 0;
  overflow: hidden;
}
.circle-img img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  display: block;
}

.feature-text {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: start;  /* Align text block within grid cell */
}

.feature-text h2,
.feature-text h3 {
  font-size: 1.23rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.feature-text p {
  font-weight: lighter;
  font-size: 1rem;
  margin-bottom: 2px;
}

/* Divider Image Section */
.divider-img {
  background: #313131;
  text-align: center;
  padding: 0 0 0 0;
  position: relative;
}

.divider-img img {
  height: 400px;
  position: absolute;
  top: -272px;
  left: 50%;
  transform: translateX(-50%);
}

/* How it Works */
.how-it-works {
  background: #313131;
  color: #fff;
  padding: 50px 0;
}

.how-it-works {
  background: #313131;
  color: #fff;
  padding-top: 150px;
  padding-bottom: 100px;
}
.how-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.how-it-works h2 {
  margin-bottom: 26px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
}

.how-video-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #fff;
  border-radius: 18px;
  margin: 0; /* <-- Remove auto centering */
  box-shadow: 0 2px 20px rgba(0,0,0,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.12rem;
  object-fit: contain;
}

.how-video {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Footer / Buy Section */
footer {
  background: #313131;
  color: #fff;
  padding: 48px 0 0 0;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 30px 100px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 32px;
  padding-bottom: 80px;
}

.footer-logo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo .logo {
  width: auto;
  height: 80px;
}

.footer-heading {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  margin: 0 0 8px 0;
}
.footer-heading h3 {
  margin: 0;
  font-size: 1.15rem;
}

.whats-included-heading {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin: 0 0 8px 0;
}
.whats-included-heading h3 {
  margin: 0;
  font-size: 1.15rem;
}

.footer-description {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  font-size: 1rem;
  max-width: 420px;
}
.whats-included {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  font-size: 1rem;
  max-width: 420px;
}
.whats-included ul {
  margin: 0;
  padding-left: 18px;
}

.footer-img {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.socials {
  background: #1B1B1B;
  color: #fff;
  font-size: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  justify-content: center;
  display: flex;
  gap: 30px;
}

.socials a {
  color: inherit;
  text-decoration: none;
  font-size: 1.5rem;
}

::-webkit-scrollbar {
  width: 9px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 6px;
}

@font-face {
  font-family: 'LTRenovate';
  src: url('/fonts/LTRenovate-Regular.woff2') format('woff2'),
       url('/fonts/LTRenovate-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LTRenovate';
  src: url('/fonts/LTRenovate-Medium.woff2') format('woff2'),
       url('/fonts/LTRenovate-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LTRenovate';
  src: url('/fonts/LTRenovate-SemiBold.woff2') format('woff2'),
       url('/fonts/LTRenovate-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LTRenovate';
  src: url('/fonts/LTRenovate-Bold.woff2') format('woff2'),
       url('/fonts/LTRenovate-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}