/* =========================================================
   OMANESS BACK-TO-SCHOOL SALES PAGE
   Plain HTML + CSS
   ========================================================= */

   :root {
    --green: #064d2d;
    --orange: #ff6500;
    --light-orange: #ffb27a;
    --cream: #fff8f1;
    --off-white: #f7f4ef;
    --text: #171717;
    --muted: #444444;
    --white: #ffffff;
    --danger-bg: #ffe9e2;
    --danger: #b3210a;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    --radius: 12px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  #order-form {
    scroll-margin-top: 70px;
  }
  
  body {
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
    background: var(--off-white);
  }
  
  a {
    color: inherit;
  }
  
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  
  h1,
  h2,
  h3 {
    line-height: 1.25;
  }
  
  h1 {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 900;
  }
  
  h2 {
    font-size: clamp(25px, 4vw, 36px);
    font-weight: 900;
  }
  
  h3 {
    font-size: 20px;
    font-weight: 800;
  }
  
  p {
    margin-bottom: 18px;
  }
  
  .sales-page {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .container {
    width: min(1100px, calc(100% - 40px));
    margin-inline: auto;
  }
  
  .narrow {
    max-width: 880px;
  }
  
  .wide {
    max-width: 1050px;
  }
  
  .center {
    text-align: center;
  }
  
  /* =========================================================
     GLOBAL HELPERS
     ========================================================= */
  
  .green {
    background: var(--green);
  }
  
  .cream {
    background: var(--cream);
  }
  
  .white {
    background: var(--white);
  }
  
  .white-text {
    color: var(--white);
  }
  
  .green-text {
    color: var(--green);
  }
  
  .orange-text,
  .eyebrow {
    color: var(--orange);
  }
  
  .light-orange {
    color: var(--light-orange);
  }
  
  .block {
    display: block;
  }
  
  .section {
    width: 100%;
    padding: 65px 0;
  }
  
  .eyebrow {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  .section-intro {
    max-width: 720px;
    margin: 0 auto 32px;
    color: var(--muted);
    font-size: 18px;
  }
  
  .large-copy {
    font-size: 19px;
    line-height: 1.7;
  }
  
  .subheading {
    color: var(--green);
    font-size: 19px;
    font-weight: 800;
  }
  
  .orange-line {
    width: 60px;
    height: 4px;
    margin: 0 auto 24px;
    background: var(--orange);
    border-radius: 10px;
  }
  
  /* =========================================================
     BUTTONS
     ========================================================= */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 15px 30px;
    border: 0;
    border-radius: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 101, 0, 0.2);
  }
  
  .btn-white {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  }
  
  /* =========================================================
     PROMO + LOGO
     ========================================================= */
  
  .promo-bar {
    width: 100%;
    padding: 14px 20px;
    background: var(--orange);
    color: var(--white);
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
  }
  
  .logo-area {
    width: 100%;
    padding: 22px 20px;
    background: var(--white);
    text-align: center;
  }
  
  .logo-area img {
    width: 121px;
    height: 121px;
    margin: 0 auto;
    object-fit: cover;
  }
  
  /* =========================================================
     HERO
     ========================================================= */
  
  .hero {
    padding: 60px 0;
    background:
      radial-gradient(1200px 500px at 85% -10%, rgba(255, 101, 0, 0.18), transparent 60%),
      linear-gradient(135deg, #04321d 0%, var(--green) 55%, #0a5c37 100%);
    color: var(--white);
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 40px;
  }
  
  .hero-copy {
    min-width: 0;
    text-align: center;
  }
  
  .hero-question {
    margin: 22px 0;
    color: var(--white);
    font-size: clamp(22px, 4vw, 34px);
    line-height: 1.2;
    font-weight: 900;
  }
  
  .hero-warning {
    margin: 25px 0 18px;
    color: var(--light-orange);
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.2;
    font-weight: 900;
  }
  
  .hero h1 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(26px, 4.4vw, 38px);
    line-height: 1.3;
    overflow-wrap: break-word;
  }
  
  .hero p {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.7;
  }
  
  .hero-btn {
    border: 3px solid var(--white);
  }
  
  .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  
  .delivery-text {
    margin-top: 14px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
  }
  
  .delivery-text span {
    padding: 0 6px;
  }
  
  .hero-video {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }
  
  .hero-video iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
  }
  
  /* =========================================================
     EARLY PROOF
     ========================================================= */
  
     .early-proof-grid {
      width: min(900px, 100%);
      margin: 30px auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    
    .proof-image {
      background: var(--white);
      padding: 8px;
      border-radius: var(--radius);
      overflow: hidden;
    }
    
    .proof-image img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }
    
    .proof-statement {
      margin: 25px auto 0;
      color: var(--white);
      font-weight: 900;
      font-size: 15px;
      line-height: 1.5;
      letter-spacing: .5px;
    }
    
  /* =========================================================
     PARENT EMOTION
     ========================================================= */
  
     .emotion-grid {
      align-items: center;
      gap: 55px;
    }
    
    .emotion-image img {
      width: 100%;
      max-width: 430px;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: var(--radius);
    }
    
    .emotion-copy h2 {
      margin-bottom: 18px;
    }
    
    .emotion-copy p {
      margin-bottom: 18px;
    }
  
  
  /* =========================================================
     CHECK LIST
     ========================================================= */
  
  .check-list {
    display: grid;
    gap: 14px;
  }
  
  .check-item {
    position: relative;
    min-height: 70px;
    padding: 20px 22px 20px 58px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    font-weight: 700;
  }
  
  .check-item span {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 16px;
    line-height: 28px;
    font-weight: 900;
    text-align: center;
  }
  
  /* =========================================================
     DEAR PARENT
     ========================================================= */
  
  .lead {
    font-size: 22px;
    line-height: 1.4;
  }
  
  .question {
    margin: 16px 0;
    font-size: 19px;
    line-height: 1.5;
  }
  
  .highlight {
    margin: 26px 0;
    padding: 24px 26px;
    background: #fff3e9;
    border-left: 6px solid var(--orange);
    border-radius: 0 10px 10px 0;
    color: var(--green);
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.4;
    font-weight: 900;
    text-align: center;
  }
  
  .green-statement {
    margin: 32px 0 18px;
    color: var(--green);
    font-size: 22px;
    line-height: 1.45;
    font-weight: 900;
  }
  
  .green-statement.compact {
    margin-top: 0;
    margin-bottom: 26px;
  }
  
  .green-card {
    width: 100%;
    padding: 30px;
    background: var(--green);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 18px;
    line-height: 1.65;
  }
  
  .green-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
  }
  
  .soft-card {
    margin-top: 30px;
    padding: 26px 25px;
    background: #fff3e9;
    border-radius: var(--radius);
    color: var(--green);
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.4;
    font-weight: 900;
    text-align: center;
  }
  
  /* =========================================================
     CTA
     ========================================================= */
  
  .cta-orange,
  .offer {
    width: 100%;
    padding: 60px 0;
    background: var(--orange);
    color: var(--white);
  }
  
  .cta-orange h2,
  .offer h2 {
    color: var(--white);
  }
  
  .pill {
    display: inline-block;
    margin-bottom: 18px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .pill.orange {
    background: var(--orange);
    color: var(--white);
  }
  
  .pill.white {
    background: var(--white);
    color: var(--orange);
  }
  
  .green-pill {
    background: var(--green);
    color: var(--white);
  }
  
  /* =========================================================
     IMAGE SECTIONS
     ========================================================= */
  
  .image-section {
    width: 100%;
    padding: 55px 0 60px;
    background: var(--white);
    text-align: center;
  }
  
  .image-section.bottom-space {
    padding-bottom: 60px;
  }
  
  .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container img {
    margin: 0 auto;
  }
  
  .wide-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }
  
  /* =========================================================
     PRODUCT INTRO
     ========================================================= */
  
  .product-intro {
    background: var(--cream);
  }
  
  .product-intro .container {
    max-width: 850px;
  }
  
  .two-column {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(0, 520px);
    justify-content: center;
    align-items: center;
    gap: 45px;
  }
  
  .product-image {
    margin: 25px auto;
    display: flex;
    justify-content: center;
  }
  
  .product-image img {
    width: min(300px, 80vw);
    height: auto;
    display: block;
  }
  
  .product-pair {
    width: min(700px, 100%);
    margin: 28px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .product-pair-item {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--green);
  }
  
  .product-copy {
    min-width: 0;
  }
  
  .product-copy h2 {
    color: var(--green);
    margin-bottom: 12px;
  }
  
  .orange-text {
    color: var(--orange);
  }
  
  .routine-callout {
    margin-top: 24px;
    padding: 22px 24px;
    background: var(--white);
    border-left: 5px solid var(--orange);
    border-radius: 0 10px 10px 0;
    color: var(--green);
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  
  /* =========================================================
     DIFFERENTIATION
     ========================================================= */
  
     .differentiation {
      background: var(--white);
    }
    
    .differentiation-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .differentiation-copy p {
      margin-bottom: 18px;
    }
    
    .differentiation-highlight {
      margin: 10px 0;
      padding: 18px 20px;
      background: var(--cream);
      border-left: 5px solid var(--orange);
      border-radius: 8px;
      color: var(--green);
      font-weight: 900;
      line-height: 1.45;
    }
    
    .differentiation-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .differentiation-image img {
      width: 100%;
      min-height: 280px;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: var(--radius);
    }
  
  /* =========================================================
     GREEN QUOTE SECTION
     ========================================================= */
  
  .quote-card {
    margin: 28px auto 30px;
    padding: 26px 28px;
    background: rgba(255, 255, 255, 0.10);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    color: var(--white);
    font-size: clamp(20px, 3vw, 25px);
    line-height: 1.4;
    font-weight: 900;
    font-style: italic;
  }
  
  /* =========================================================
     SIMPLE ROUTINE
     ========================================================= */
  
  .routine {
    max-width: 950px;
  }
  
  .three-cards,
  .two-cards,
  .four-cards {
    display: grid;
    gap: 16px;
  }
  
  .three-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
  }
  
  .two-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 30px;
  }
  
  .number-card {
    padding: 24px 18px;
    background: var(--cream);
    border-radius: 10px;
  }
  
  .number {
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
  }
  
  .number-card strong {
    color: var(--green);
    line-height: 1.4;
  }
  
  /* =========================================================
     BENEFITS
     ========================================================= */
  
  .benefits {
    max-width: 900px;
  }
  
  .green-banner {
    margin-bottom: 28px;
    padding: 22px 26px;
    background: var(--green);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
  }
  
  .benefit-card {
    margin-bottom: 14px;
    padding: 24px 26px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }
  
  .benefit-card:last-child {
    margin-bottom: 0;
  }
  
  .benefit-card h3 {
    margin-bottom: 8px;
    color: var(--green);
  }
  
  .benefit-card h3 span {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    vertical-align: 2px;
  }
  
  .benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
  }
  
  /* =========================================================
     WHY PARENTS
     ========================================================= */
  
  .four-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .choice-card {
    padding: 26px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
  }
  
  .choice-card h3 {
    margin-bottom: 10px;
    color: var(--green);
  }
  
  .choice-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
  }
  
  .disclaimer {
    max-width: 720px;
    margin: 32px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
  }
  
  /* =========================================================
     IRRITATIONS
     ========================================================= */
  
  .irritation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  
  .irritation-grid > div {
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
  }
  
  .irritation-grid .featured {
    grid-column: span 2;
    background: rgba(255, 101, 0, 0.18);
    border-color: rgba(255, 101, 0, 0.45);
  }
  
  /* =========================================================
     ROUTINE PRODUCTS
     ========================================================= */
  
  .routine-product {
    padding: 26px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 5px solid var(--orange);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
  }
  
  .routine-product:nth-child(2) {
    border-left-color: var(--green);
  }
  
  .routine-product .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }
  
  .routine-product h3 {
    margin-bottom: 8px;
    color: var(--green);
    font-size: 21px;
  }
  
  .routine-product p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
  }
  
  /* =========================================================
     TESTIMONIALS
     ========================================================= */
  
  .testimonials {
    padding-bottom: 65px;
  }
  
  .testimonial-intro {
    max-width: 640px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .testimonial-stories {
    display: grid;
    gap: 26px;
  }
  
  .story-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--text);
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-top: 6px solid var(--orange);
  }
  
  .story-card.story-emeka {
    border-top-color: var(--green);
  }
  
  .story-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }
  
  .story-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
  }
  
  .story-emeka .story-avatar {
    background: var(--green);
  }
  
  .story-name {
    color: var(--green);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
  }
  
  .story-role {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  
  .testimonial-title {
    margin-bottom: 22px;
    color: var(--orange);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.25;
    text-align: left;
  }
  
  .story-emeka .testimonial-title {
    color: var(--green);
  }
  
  .testimonial-title span {
    font-weight: 700;
  }
  
  .testimonial-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
  }
  
  .testimonial-images img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .testimonial-copy {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--cream);
  }
  
  .story-emeka .testimonial-copy {
    border-left-color: #eef6f0;
  }
  
  .testimonial-copy p {
    color: #222;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1.75;
  }
  
  .testimonial-copy p strong {
    font-weight: 400;
  }
  
  .single-testimonial-image {
    width: 100%;
    max-width: 280px;
    margin: 6px auto 25px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .green-text {
    color: var(--green);
  }
  
  .compact-proof-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .compact-proof-grid .testimonial-wall-item {
    overflow: hidden;
    border-radius: var(--radius);
  }
  
  .compact-proof-grid .testimonial-wall-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }
  
  /* =========================================================
     TESTIMONIAL WALL
     ========================================================= */
  
     .testimonial-wall {
      background: var(--off-white);
    }
    
    .testimonial-wall-heading {
      max-width: 780px;
      margin: 0 auto 38px;
    }
    
    .testimonial-wall-heading h2 {
      margin-bottom: 16px;
      color: var(--green);
    }
    
    .testimonial-wall-heading p {
      max-width: 650px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }
    
    /* Testimonial Grid */
    
    .testimonial-wall-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
    }
    
    /* Individual Testimonial */
    
    .testimonial-wall-item {
      overflow: hidden;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }
    
    .testimonial-wall-item img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0;
    }
    
    /* CTA underneath */
    
    .testimonial-wall-cta {
      max-width: 650px;
      margin: 35px auto 0;
    }
    
    .testimonial-wall-cta p {
      margin-bottom: 0;
      color: var(--green);
      font-size: 18px;
      line-height: 1.6;
      font-weight: 800;
    }
    
    /* =========================================================
       TESTIMONIAL WALL RESPONSIVE
       ========================================================= */
    
    @media (max-width: 900px) {
    
      .testimonial-wall-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    
    }
    
    @media (max-width: 680px) {
    
      .testimonial-wall-heading {
        margin-bottom: 28px;
      }
    
      .testimonial-wall-heading h2 {
        font-size: 27px;
      }
    
      .testimonial-wall-heading p {
        font-size: 16px;
      }
    
      .testimonial-wall-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    
      .testimonial-wall-cta {
        margin-top: 28px;
      }
    
    }
  
  /* =========================================================
     OFFER
     ========================================================= */
  
  .offer {
    padding: 70px 20px;
    background: var(--orange);
  }
  
  .offer-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    color: var(--white);
    font-size: 17px;
    line-height: 1.7;
  }
  
  .offer .bundle-grid {
    margin-top: 35px;
  }
  
  .offer h2 {
    font-size: clamp(30px, 5.6vw, 44px);
    line-height: 1.15;
  }
  
  .offer-copy {
    max-width: 620px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
  }
  
  .offer-line {
    margin-bottom: 18px;
  }
  
  .offer-line.strong {
    margin: 20px 0 10px;
    font-weight: 700;
  }
  
  .offer-big {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
  }
  
  .offer-card {
    margin-bottom: 16px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: var(--radius);
  }
  
  .offer-card strong,
  .offer-card span {
    display: block;
  }
  
  .offer-card strong {
    margin-bottom: 6px;
    font-size: 21px;
  }
  
  .offer-card span {
    font-size: 14px;
  }
  
  .offer-end {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 800;
  }
  
  /* =========================================================
     ORDER INFORMATION
     ========================================================= */
  
  .forgot {
    margin-bottom: 8px;
    font-weight: 700;
  }
  
  .order-info {
    margin: 26px 0;
    padding: 28px;
    background: var(--cream);
    border: 2px solid var(--orange);
    border-radius: var(--radius);
    font-size: 17px;
    line-height: 1.6;
  }
  
  .order-info strong {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 22px;
    line-height: 1.3;
  }
  
  .warning {
    margin-top: 28px;
    padding: 22px 24px;
    background: var(--danger-bg);
    border: 2px solid #ff3b1e;
    border-radius: 10px;
    color: var(--danger);
    font-size: 16px;
  }
  
  /* =========================================================
     BUNDLES
     ========================================================= */
  
  .package-note {
    margin-bottom: 36px;
    font-size: 16px;
    font-weight: 800;
  }
  
  .bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }
  
  .bundle-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  
  .bundle-card.popular {
    border: 3px solid var(--orange);
    box-shadow: 0 14px 34px rgba(255, 101, 0, 0.20);
  }
  
  .popular-bar {
    padding: 10px;
    background: var(--orange);
    color: var(--white);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
  }
  
  .bundle-header {
    padding: 18px 15px;
    background: var(--green);
    color: var(--white);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
  }
  
  .bundle-image {
    padding: 22px 20px 8px;
    text-align: center;
  }
  
  .bundle-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .bundle-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 22px 26px;
  }
  
  .bundle-body h3 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.5;
  }
  
  .free-text {
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 900;
  }
  
  .price {
    margin-bottom: 4px;
    color: var(--green);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
  }
  
  .delivery-note {
    margin-bottom: 18px;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .bundle-body ul {
    flex: 1;
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
    text-align: left;
  }
  
  .bundle-body li::before {
    content: "✓ ";
  }
  
  .bundle-cta {
    display: block;
    width: 100%;
  }
  
  /* =========================================================
     DELIVERY NOTICE
     ========================================================= */
  
  .delivery-notice {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  
  .notice-card {
    padding: 30px;
    background: var(--white);
    border-left: 7px solid var(--orange);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .notice-card h2 {
    margin-bottom: 18px;
    color: var(--green);
    font-size: 24px;
  }
  
  .notice-card p:last-child {
    margin-bottom: 0;
  }
  
  /* =========================================================
     CHOICE
     ========================================================= */
  
  .choice-box {
    margin: 28px 0;
    padding: 26px;
    background: #fff3e9;
    border-left: 6px solid var(--orange);
    border-radius: var(--radius);
  }
  
  .choice-box p {
    margin-bottom: 14px;
  }
  
  .choice-box p:last-child {
    margin-bottom: 0;
  }
  
  .final-cta {
    padding: 30px 20px;
    background: var(--orange);
    border-radius: var(--radius);
    text-align: center;
  }
  
  .final-cta .delivery-text {
    margin-top: 14px;
  }
  
  /* =========================================================
     FINAL ORDER FORM
     ========================================================= */
  
     .order-form-container {
      max-width: 800px;
    }
    
    .order-form-container h2 {
      margin-bottom: 12px;
    }
    
    .order-form-container > .large-copy {
      max-width: 650px;
      margin: 0 auto 32px;
    }
    
    /* Form Card */
    
    .order-form-wrapper {
      width: min(640px, 100%);
      margin: 0 auto;
      padding: 32px 28px;
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
      text-align: left;
    }
    
    /* Form */
    
    .order-form {
      width: 100%;
      padding: 30px 22px;
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      text-align: left;
      box-sizing: border-box;
    }  
    
    /* Form Groups */
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group:last-of-type {
      margin-bottom: 24px;
    }
    
    /* Labels */
    
    .form-group label {
      display: block;
      margin-bottom: 7px;
      color: var(--green);
      font-size: 14px;
      line-height: 1.4;
      font-weight: 800;
    }
    
    .form-group input,
  .form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.10);
  }
  
  .order-form button {
    width: 100%;
    border: 0;
    cursor: pointer;
  }

  .form-delivery-warning {
    margin: 20px 0;
    padding: 14px 16px;
    background: #ffe9e9;
    border: 1px solid #d93025;
    border-radius: 8px;
    color: #b3210a;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
  
  .form-delivery-warning strong {
    font-weight: 800;
  }
  
    /* Inputs + Select + Textarea */
    
    .order-form input,
    .order-form select,
    .order-form textarea {
      display: block;
      width: 100%;
      padding: 14px 16px;
      background: var(--white);
      border: 1.5px solid #d8d8d8;
      border-radius: 9px;
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      outline: none;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    }
    
    /* Placeholder */
    
    .order-form input::placeholder,
    .order-form textarea::placeholder {
      color: #999;
    }
    
    /* Select */
    
    .order-form select {
      cursor: pointer;
      appearance: auto;
    }
    
    /* Textarea */
    
    .order-form textarea {
      min-height: 110px;
      resize: vertical;
    }
    
    /* Focus */
    
    .order-form input:focus,
    .order-form select:focus,
    .order-form textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.12);
    }
    
    /* Submit Button */
    
    .order-form button[type="submit"] {
      width: 100%;
      margin-top: 4px;
      border: 0;
    }
    
    /* Delivery Text */
    
    .order-form-container .delivery-text {
      margin-top: 18px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.3px;
    }
  
    /* =========================================================
     FINAL CLOSE
     ========================================================= */
  
  .final-close {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .final-close h2 {
    margin-bottom: 15px;
  }
  
  .final-close p {
    margin-bottom: 18px;
  }
    
    /* =========================================================
       FORM MOBILE
       ========================================================= */
    
    @media (max-width: 680px) {
    
      .order-form-wrapper {
        padding: 26px 20px;
        border-radius: 14px;
      }
    
      .form-group {
        margin-bottom: 18px;
      }
    
      .form-group label {
        font-size: 13px;
      }
    
      .order-form input,
      .order-form select,
      .order-form textarea {
        padding: 13px 14px;
        font-size: 16px;
      }
    
      .order-form textarea {
        min-height: 100px;
      }
    
    }
    
    @media (max-width: 420px) {
    
      .order-form-wrapper {
        padding: 24px 16px;
      }
    
    }
  
  /* =========================================================
     FAQ
     ========================================================= */
  
  .faq-container {
    max-width: 850px;
  }
  
  .faq-item {
    margin-bottom: 14px;
    padding: 24px 26px;
    background: var(--white);
    border-left: 5px solid var(--orange);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  
  .faq-item.last {
    margin-bottom: 0;
  }
  
  .faq-item h3 {
    margin-bottom: 10px;
    color: var(--green);
    font-size: 18px;
  }
  
  .faq-item p {
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
  }
  
  .faq-item p:last-child {
    margin-bottom: 0;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  
  @media (max-width: 900px) {
    .hero-grid,
    .two-column {
      grid-template-columns: 1fr;
    }
  
    .hero-copy,
    .product-copy {
      max-width: 650px;
      margin-inline: auto;
    }
  
    .hero-video {
      width: 100%;
      max-width: 900px;
      margin: 40px auto;
      aspect-ratio: 16 / 9;
  }
  
  .hero-video iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
  }
  
    .three-cards {
      grid-template-columns: 1fr;
    }
  
    .bundle-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .irritation-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .irritation-grid .featured {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 680px) {
    body {
      font-size: 16px;
    }
  
    .container {
      width: min(100% - 30px, 880px);
    }
  
    .section,
    .hero,
    .cta-orange,
    .offer {
      padding: 50px 0;
    }
  
    .promo-bar {
      padding: 12px 15px;
      font-size: 13px;
    }
  
    .logo-area {
      padding: 18px 15px;
    }
  
    .logo-area img {
      width: 95px;
      height: 95px;
    }
  
    .hero-grid {
      gap: 32px;
    }
  
    .hero h1 {
      font-size: 29px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .hero-video iframe {
      height: 250px;
    }
  
    .lead {
      font-size: 20px;
    }
  
    .green-statement {
      font-size: 20px;
    }
  
    .green-card {
      padding: 24px 20px;
      font-size: 17px;
    }
  
    .two-cards,
    .four-cards,
    .bundle-grid {
      grid-template-columns: 1fr;
    }
  
    .irritation-grid {
      grid-template-columns: 1fr;
    }
  
    .irritation-grid .featured {
      grid-column: auto;
    }
  
    .testimonial-images {
      grid-template-columns: 1fr;
    }
  
    .testimonial-images img {
      max-width: 300px;
      margin: 0 auto;
    }
  
    .story-card {
      padding: 24px 18px;
    }
  
    .story-header {
      align-items: flex-start;
    }
  
    .testimonial-title {
      font-size: 22px;
    }
  
    .notice-card,
    .order-info,
    .warning,
    .choice-box {
      padding: 22px 20px;
    }
  
    .bundle-body {
      padding-inline: 18px;
    }
  
    .btn {
      width: 100%;
      max-width: 360px;
    }
  
    .delivery-text {
      font-size: 13px;
    }
  }
  
  @media (max-width: 420px) {
    .container {
      width: min(100% - 24px, 880px);
    }
  
    .hero h1 {
      font-size: 26px;
    }
  
    .hero-video iframe {
      height: 220px;
    }
  
    .check-item {
      padding-left: 55px;
    }
  
    .section-intro,
    .large-copy {
      font-size: 17px;
    }
  
    .testimonial-title {
      font-size: 23px;
    }
  
    .bundle-header {
      font-size: 20px;
    }
  
    .price {
      font-size: 30px;
    }
  }
  
  /* =========================================================
     MOBILE
     ========================================================= */
  
     @media (max-width: 900px) {
  
      .early-proof-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    
      .compact-proof-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    
      .emotion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    
      .emotion-image {
        order: 1;
      }
    
      .emotion-copy {
        order: 2;
      }
    
      .differentiation {
        text-align: center;
      }
    
      .differentiation-copy {
        order: 1;
      }
    
      .differentiation-image {
        order: 2;
      }
    
    }
    
    
    @media (max-width: 680px) {
    
      .early-proof-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
      }
    
      .proof-image {
        max-width: 100%;
      }
    
      .product-pair {
        grid-template-columns: 1fr;
      }
    
      .compact-proof-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    
      .hero-question {
        font-size: 24px;
      }
    
      .hero-warning {
        font-size: 25px;
      }
    
      .order-form {
        padding: 24px 18px;
      }
    
    }
    
    
    @media (max-width: 420px) {
    
      .compact-proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
    
      .product-image img {
        width: 250px;
      }
    
    }