/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f8f8;
  color: #111;
  font-size: 16px;
  line-height: 1.5;
}

/* ── Attention / Success Banner ── */
.banner {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.banner--yellow {
  background: #FFEA01;
  color: #111;
}

/* ── Page wrapper ── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ── White content box ── */
.content-box {
  background: #fff;
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 36px 40px;
  border-radius: 4px;
}

/* ── Headings ── */
h1 {
  font-size: 42px;
  line-height: 1.25;
  text-align: center;
  color: #111;
  margin-bottom: 18px;
}

.subheading {
  font-size: 21px;
  text-align: center;
  color: #333;
  margin-bottom: 28px;
  line-height: 1.4;
}

/* ── Hero image ── */
.hero-image-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.hero-image {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 3px;
}

/* ── Opt-in form ── */
.optin-form {
  max-width: 600px;
  margin: 0 auto;
}

.input-wrap {
  margin-bottom: 0;
}

.optin-form input[type="email"] {
  width: 100%;
  padding: 16px 18px;
  font-size: 17px;
  border: 2px solid #FF5500;
  border-radius: 7px;
  background: #f8f8f8;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
}
.optin-form input[type="email"]:focus {
  border-color: #cc4400;
  background: #fff;
}
.optin-form input[type="email"]::placeholder {
  color: #888;
}

/* ── Buttons ── */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  margin-top: 14px;
  border: none;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  transition: filter 0.15s;
}
.btn:hover { filter: brightness(0.92); }

.btn--orange {
  background: #FF5500;
  color: #fff;
}

.btn--green {
  background: #00AE00;
  color: #fff;
}

.btn-icon {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
}

/* ── Form errors ── */
.form-error {
  background: #ffe0e0;
  border: 1px solid #cc0000;
  color: #cc0000;
  padding: 10px 14px;
  border-radius: 5px;
  margin-bottom: 12px;
  font-size: 15px;
}

/* ── Discover / bullet list section ── */
.discover-box {
  margin-top: 0;
}
.discover-heading {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.check-list li:last-child { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.check-icon svg {
  width: 100%;
  height: 100%;
  fill: #FF5500;
}

/* ── Thank-you page ── */
.step-label {
  font-size: 46px;
  text-align: center;
  background: #FF5500;
  color: #fff;
  padding: 6px 20px;
  display: inline-block;
  margin: 24px auto 10px;
  width: 100%;
  border-radius: 4px;
}

.step-instruction {
  font-size: 22px;
  text-align: center;
  margin-bottom: 18px;
  color: #111;
}

/* Responsive 16:9 Vimeo embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 30px;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-wrap {
  text-align: center;
  margin-top: 8px;
}
.cta-wrap .btn {
  max-width: 600px;
  margin: 0 auto;
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #555;
}

/* ── Consent checkbox ── */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 4px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #FF5500;
  cursor: pointer;
}

/* ── Footer legal links ── */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 8px;
}
.footer-legal-links a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
}
.footer-legal-links a:hover { text-decoration: underline; }

/* ── Legal pages ── */
.legal-header {
  background: #111;
  text-align: center;
  padding: 16px 20px;
}
.legal-home-link {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.legal-home-link:hover { text-decoration: underline; }

.legal-box {
  background: #fff;
  max-width: 860px;
  margin: 0 auto 24px;
  padding: 40px 48px;
  border-radius: 4px;
}
.legal-title {
  font-size: 32px;
  text-align: left;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #FF5500;
}
.legal-box h2 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: #111;
}
.legal-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}
.legal-box ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-box ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 6px;
}
.legal-box a {
  color: #FF5500;
  text-decoration: none;
}
.legal-box a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 767px) {
  h1 { font-size: 26px; }
  .subheading { font-size: 17px; }
  .content-box { padding: 24px 20px; }
  .btn { font-size: 18px; letter-spacing: 1px; }
  .step-label { font-size: 30px; }
  .step-instruction { font-size: 17px; }
  .discover-heading { font-size: 18px; }
  .check-list li { font-size: 15px; }
  .cta-wrap .btn { font-size: 17px; }
}
