*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .rte, .rte > * {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  :root {
    --red: #C4262E;
    --red-dark: #9E1E25;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --bg-card: #f0f0f0;
    --border: rgba(0,0,0,0.09);
    --border-strong: rgba(0,0,0,0.15);
    --text: #111111;
    --text-muted: #555555;
    --text-dim: #888888;
    --font: Helvetica Neue, Helvetica, Arial, sans-serif;
    --pad: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem);
    --inner: 1100px;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1 {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
  }

  h1 span { color: var(--red); }

  h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
  }

  h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
  }

  .inner {
    max-width: var(--inner);
    margin: 0 auto;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #ffffff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: var(--red-dark) !important; color: #ffffff !important; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1.5px solid #cccccc;
    text-decoration: none;
    transition: border-color 0.2s;
  }

  .btn-secondary:hover { border-color: #999999; }

  .btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    margin-bottom: 0;
  }

  .trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 7px 16px;
  }

  .badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
  }

  .accent-line {
    width: 36px;
    height: 3px;
    background: var(--red);
    margin-bottom: 20px;
  }

  .accent-line.center { margin-left: auto; margin-right: auto; }

  .stars { display: flex; gap: 3px; justify-content: center; }
  .star {
    width: 15px;
    height: 15px;
    background: var(--red);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    flex-shrink: 0;
  }

  .text-center { text-align: center; }
  .mt-16 { margin-top: 16px; }
  .mt-24 { margin-top: 24px; }

  /* ================================
     1. HERO
     ================================ */
  .hero {
    display: block;
    line-height: 0;
    position: relative;
    width: 100%;
  }

  .hero picture,
  .hero picture img {
    display: block;
    width: 100%;
    height: auto;
    line-height: 0;
  }

  .hero-pills-strip {
    background: var(--bg-alt);
    padding: 26px clamp(1.25rem, 5vw, 2.5rem) 14px !important;
    display: block !important;
  }

  .hero-pills-strip .inner {
    max-width: var(--inner);
    margin: 0 auto;
  }

  .hero-pills-strip .btn-group {
    justify-content: center !important;
    margin-bottom: 20px;
  }

  .hero-pills-strip .trust-badges {
    justify-content: center !important;
  }

  /* ================================
     2. SOCIAL PROOF STRIP
     ================================ */
  .proof-strip {
    background: var(--bg-alt);
    padding: 36px clamp(1.25rem, 5vw, 2.5rem) !important;
  }

  .proof-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    text-align: center;
  }

  .proof-reviews {
    position: relative;
    flex: 1;
    min-width: 280px;
    min-height: 80px;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .proof-review {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    animation: fadeIn 0.4s ease;
  }

  .proof-review.active { display: flex; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .proof-quote {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    text-align: center !important;
  }

  .proof-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .proof-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s;
    cursor: pointer;
  }

  .proof-dot.active { background: var(--red); }

  /* ================================
     3. SOFT FEATURES
     ================================ */
  .soft-section {
    background: var(--bg);
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2.5rem) 0 !important;
  }

  .soft-section-inner {
    max-width: var(--inner);
    margin: 0 auto;
  }

  @media (max-width: 600px) {
    .soft-section-inner { padding: 0; overflow: hidden; position: relative; }
  }

  .soft-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 0;
  }

  .soft-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    min-height: 300px;
    background: var(--bg-card);
  }

  .soft-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 1;
  }

  .soft-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.82) 100%);
    z-index: 2;
  }

  .soft-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
    z-index: 3;
  }

  .soft-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: -0.01em;
  }

  .soft-card p {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
  }

  .soft-gallery-dots { display: none; }

  @media (max-width: 600px) {
    .soft-gallery-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      padding: 16px 0 0;
    }
    .soft-gallery-dots span {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #e0e0e0;
      display: block;
      transition: background 0.2s;
      cursor: pointer;
    }
    .soft-gallery-dots span.active { background: var(--red); }
  }

  /* ================================
     4. HARD FEATURES
     ================================ */
  .features-section {
    background: var(--bg);
    padding: var(--pad);
  }

  .features-inner {
    max-width: var(--inner);
    margin: 0 auto;
  }

  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 56px 0;
  }

.feature-row-image {
  margin-bottom: 160px;
}

.feature-row-image:last-child {
  margin-bottom: 0;
}

.feature-row-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .feature-row-image {
    margin-bottom: 60px;
  }
}

  @media (max-width: 768px) {
    .feature-row { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse { direction: ltr; }
    .feature-gif-wrap { max-width: 280px; margin: 0 auto; }
    .feature-gif { aspect-ratio: 9/16 !important; max-height: none !important; }
  }

  /* ================================
     5. APPLE WATCH
     ================================ */
  .watch-section {
  background: var(--bg);
  padding: var(--pad);
}

  .watch-inner {
    max-width: var(--inner);
    margin: 0 auto;
  }

  .watch-header {
    margin-bottom: 32px;
  }

  .watch-header .accent-line { margin-bottom: 16px; }

  .watch-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
  }

  .watch-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  /* ================================
     6. MUSCLE SCORES
     ================================ */
  .muscle-section {
    background: var(--bg);
    padding: var(--pad);
  }

  .muscle-card {
    background: var(--bg-alt);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3.5rem);
  }

  .muscle-inner-wrap {
    max-width: var(--inner);
    margin: 0 auto;
  }

  .muscle-inner {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .muscle-bullets {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .muscle-bullet-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .muscle-bullet-item::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 8px;
  }

  @media (max-width: 768px) {
    .muscle-inner { grid-template-columns: 1fr; }
    .muscle-bullets { grid-template-columns: 1fr; }
    .ms-scores-tbl .muscle-image { width: 100%; aspect-ratio: auto; }
  }

  .muscle-image {
    width: 260px;
    aspect-ratio: 9/16;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }

  .muscle-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; object-position: center 20%; }

  .muscle-copy-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .muscle-copy-left p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

  /* ================================
     8. PRICING
     ================================ */
  .pricing-section {
    background: var(--bg);
    padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem) !important;
  }

 .pricing-inner {
  max-width: var(--inner);
  margin: 0 auto;
}

  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: table !important;
  }

  .pricing-table thead { display: table-header-group !important; }
  .pricing-table tbody { display: table-row-group !important; }
  .pricing-table tr { display: table-row !important; }
  .pricing-table th, .pricing-table td { display: table-cell !important; }

  .pricing-table thead tr { background: var(--bg-alt); }

  .pricing-table th.col-premium,
  .pricing-table td.col-premium { background: #FEF2F2; }

  .pricing-table thead th.col-premium { background: #FECACA; }

  .pricing-table th {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    text-align: center;
  }

  .pricing-table th.col-feature {
    text-align: left;
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .pricing-table th.col-premium { color: var(--red); }

  .pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
  }

  .pricing-table td.col-feature {
    text-align: left;
    color: var(--text);
    font-weight: 500;
  }

  .pricing-table tr:last-child td { border-bottom: none; }
  .pricing-table tr:hover td { background: var(--bg-alt); }

  .tick {
    display: inline-block;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #ffffff;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
  }

  .limited {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    background: var(--bg-alt);
    border-radius: 20px;
    padding: 3px 12px;
  }

  /* ================================
     9. FINAL CTA
     ================================ */
  .final-cta {
    background: var(--bg);
    padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2.5rem) clamp(4rem, 10vw, 7rem) !important;
  }

  .final-cta-inner {
    max-width: var(--inner);
    margin: 0 auto;
  }

  .section-intro-center {
    max-width: 580px;
    margin: 14px auto 0;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
  }

@media (max-width: 480px) {
  .btn-group img {
    width: 140px !important;
  }
}