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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0e0e0e;
  color: #f2f2f2;
  line-height: 1.6;
}

/* =========================
   GENERAL LAYOUT
========================= */
section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1, h2 {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.5px;
}

p {
  font-size: 22px;
  margin-top: 15px;
  text-align: center;
}

.bold {
  font-weight: 700;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 0;
  max-width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  font-size: 46px;
  margin-top: 30px;
}

.hero-sub {
  font-size: 26px;
  max-width: 800px;
  margin: 20px auto 0;
}

/* =========================
   PRODUCT STRIPS
========================= */
.strip {
  padding: 80px 0;
}

.strip img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  margin-bottom: 30px;
  border-radius: 6px;
}

.copy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.copy h2 {
  font-size: 38px;
}

.copy p,
.copy ul {
  font-size: 24px;
  margin-top: 20px;
}

.copy ul {
  list-style: none;
}

.copy ul li {
  margin: 8px 0;
}

/* =========================
   PAIN SECTION
========================= */
.pain {
  background: #141414;
  border-top: 2px solid #b30000;
  border-bottom: 2px solid #b30000;
}

.pain h2 {
  font-size: 40px;
  color: #ff3b3b;
}

.pain ul {
  list-style: none;
  margin-top: 30px;
}

.pain ul li {
  font-size: 26px;
  margin: 12px 0;
  text-align: center;
}

.pain-bold {
  font-size: 26px;
  font-weight: 800;
  margin-top: 30px;
  color: #ff3b3b;
}

/* =========================
   PRESSURE SECTION
========================= */
.pressure {
  background: #000;
  border-top: 3px solid #ff0000;
  border-bottom: 3px solid #ff0000;
}

.pressure h2 {
  font-size: 44px;
  color: #ff0000;
}

.pressure p {
  font-size: 26px;
}

/* =========================
   PRICE SECTION
========================= */
.price {
  background: #111;
  text-align: center;
}

.price h2 {
  font-size: 34px;
}

.amount {
  font-size: 52px;
  font-weight: 900;
  margin: 20px 0;
  color: #00ff99;
}

.delivery {
  font-size: 26px;
  font-weight: 700;
}

/* =========================
   ORDER FORM
========================= */
.order {
  background: #0a0a0a;
  border-top: 4px solid #00ff99;
}

.order h2 {
  font-size: 46px;
}

.order-note {
  font-size: 24px;
  max-width: 700px;
  margin: 20px auto 40px;
}

/* CUSTOMER REVIEWS STRIP */
.strip.reviews {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
}

/* Review images */
.strip.reviews img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.order-review-header {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1.2px;
  color: #dad3d3; /* Dark text */
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


form {
  max-width: 600px;
  margin: 0 auto;
}

.field {
  margin-bottom: 25px;
}

label {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  text-align: left;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px;
  font-size: 20px;
  border-radius: 4px;
  border: none;
  outline: none;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.order-btn {
  width: 100%;
  padding: 18px;
  font-size: 24px;
  font-weight: 800;
  background: #00ff99;
  color: #000;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.2s ease;
}

.order-btn:hover {
  background: #00e68a;
  transform: scale(1.02);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
  font-size: 20px;
  color: #aaa;
}

/* =========================
   MOBILE TUNING
========================= */
@media (max-width: 600px) {

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 22px;
  }

  .copy h2 {
    font-size: 32px;
  }

  .pain ul li,
  .pressure p {
    font-size: 32px;
  }

  .strip.reviews {
    flex-direction: column;
  }

  .strip.reviews img {
    max-width: 100%;
  }

  .amount {
    font-size: 44px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    height: 45px;
  }
}

/* ===========================
   MODAL – HIGH CONTRAST
=========================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); /* darker overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  background: #ffffff;
  max-width: 420px;
  width: 92%;
  padding: 1.8rem 1.6rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #000; /* strong edge */
}

.modal h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #000;
}

.modal p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #111;
}

/* ACTIONS */
.modal-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* BUTTONS */
.modal-btn {
  padding: 0.75rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* PRIMARY */
.modal-btn.ok {
  background: #000;
  color: #fff;
}

/* CANCEL */
.modal-btn.cancel {
  background: #e5e5e5;
  color: #000;
  border: 1px solid #000;
}

.modal-btn:active {
  transform: scale(0.97);
}

.hidden {
  display: none;
}


.footer {
  background: #0b0b0b;
  color: #ffffff;
  padding: 30px 15px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-text {
  text-align: center;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
}

.footer-text .muted {
  opacity: 0.7;
  font-size: 14px;
}
