:root {
  --blue: #005bff;
  --blue-mid: #275bdc;
  --blue-deep: #1a4ad7;
  --blue-navy: #0d266e;
  --blue-tint: #eef3ff;
  --white: #ffffff;
  --text: #0d1b3d;
  --text-muted: #56628a;
  --border: #dbe4ff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
}

h1, h2, h3 {
  font-family: 'Lato', 'Inter', Arial, sans-serif;
  font-weight: 900;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.cm-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* URGENCY */
.cm-urgency {
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  flex-wrap: wrap;
}

.cm-timer {
  display: flex;
  gap: 8px;
}

.cm-timer-box {
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 4px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  min-width: 42px;
}

.cm-timer-box span {
  font-size: 16px;
  font-weight: 900;
}

.cm-timer-box small {
  font-size: 9px;
  opacity: 0.85;
}

/* NAV */
.cm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.cm-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 17px;
}

.cm-nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.cm-nav-cta {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
}

/* HERO */
.cm-hero {
  padding: 60px 0 80px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, #001845 0%, #0d266e 32%, #1747d6 68%, #2f6bff 100%);
  position: relative;
}

.cm-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.cm-hero h1 {
  font-size: 32px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #fff;
}

.cm-hero-highlight {
  color: #ffd94a;
}

.cm-hero-text p.cm-hero-sub {
  font-size: 17px;
  font-weight: 800;
  color: #ffd94a;
  margin: 0 0 26px;
}

.cm-hero-h2 {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #fff;
}

.cm-hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 24px;
}

.cm-rating {
  max-width: 320px;
  border-radius: 10px;
}

.cm-hero-image img {
  border-radius: 20px;
}

/* SECTIONS */
.cm-section {
  padding: 70px 0;
}

.cm-section h2 {
  font-size: 30px;
  line-height: 1.3;
  max-width: 820px;
  margin: 0 auto 16px;
}

.cm-section-blue {
  background: var(--blue-tint);
}

.cm-section-navy {
  background: linear-gradient(120deg, var(--blue-navy) 0%, var(--blue-deep) 100%);
  color: #fff;
}

.cm-section-navy h2,
.cm-section-navy h3 {
  color: #fff;
}

.cm-kicker {
  font-weight: 800;
  font-size: 18px;
  color: var(--blue-mid);
  margin: 0 0 14px;
}

.cm-kicker-light {
  color: #ffd94a;
}

/* VIDEO */
.cm-video-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13,27,61,0.15);
}

.cm-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA IMG BUTTON */
.cm-cta-img {
  display: inline-block;
  transition: transform 0.15s ease;
  margin: 10px 0;
}

.cm-cta-img:hover {
  transform: scale(1.02);
}

.cm-cta-img img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

/* METHOD PANEL */
.cm-method-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 820px;
  margin: 40px auto;
  box-shadow: 0 20px 50px rgba(13,27,61,0.08);
}

.cm-method-eyebrow {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--blue-mid);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin: 0 0 18px;
}

.cm-method-panel h3 {
  font-size: 27px;
  line-height: 1.3;
  max-width: 560px;
  margin: 0 auto 30px;
}

.cm-method-panel img {
  max-width: 360px;
  width: 100%;
  margin: 0 auto 30px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(13,27,61,0.12);
}

.cm-method-panel p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 16px;
}

.cm-bold-note {
  display: inline-block;
  background: var(--blue-tint);
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text) !important;
  margin: 10px auto 0;
}

.cm-bold-note-light {
  font-weight: 700;
  color: #fff;
  max-width: 620px;
  margin: 20px auto 0;
}

/* TOOLS */
.cm-tools-title {
  font-size: 20px;
  max-width: 780px;
  margin: 20px auto 30px;
}

.cm-tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.cm-tool-badge {
  background: var(--blue-tint);
  border: 1px solid var(--border);
  color: var(--blue-navy);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 50px;
}

.cm-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.cm-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cm-check-list li {
  padding-left: 30px;
  position: relative;
  font-size: 15.5px;
  color: var(--text);
}

.cm-check-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
}

/* CONTENT PANEL */
.cm-content-panel {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(13,27,61,0.08);
}

.cm-module-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cm-module-list li {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
}

.cm-module-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
}

/* TESTIMONIALS */
.cm-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.cm-testimonial-grid img {
  border-radius: 14px;
  border: 1px solid var(--border);
}

/* PROGRESS */
.cm-progress-bar {
  max-width: 420px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  margin: 24px auto 40px;
  overflow: hidden;
}

.cm-progress-fill {
  height: 100%;
  width: 5%;
  background: #ff3b3b;
  border-radius: 50px;
  transition: width 1.8s ease;
}

.cm-method-secret {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 30px;
}

.cm-offer-copy {
  font-size: 19px;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 24px;
}

.cm-price-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 20px;
}

.cm-small-note {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 20px auto 0;
}

.cm-section:not(.cm-section-navy) .cm-small-note {
  color: var(--text-muted);
}

/* BONUS */
.cm-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  text-align: left;
}

.cm-bonus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 28px rgba(13,27,61,0.06);
}

.cm-bonus-card img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

.cm-bonus-card p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.cm-bonus-card span {
  font-weight: 800;
  color: var(--blue-mid);
  font-size: 14px;
}

.cm-cert-text {
  font-size: 17px;
  font-weight: 700;
  max-width: 650px;
  margin: 0 auto 24px;
}

.cm-cert-img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 12px;
}

/* OFFER GRID */
.cm-offer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.cm-offer-image img {
  border-radius: 16px;
}

.cm-offer-text h2 {
  font-size: 26px;
  text-align: left;
  margin: 0 0 20px;
}

.cm-offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cm-offer-list li {
  font-size: 15.5px;
  font-weight: 600;
  padding-left: 28px;
  position: relative;
}

.cm-offer-list li::before {
  content: '✔';
  color: var(--blue);
  position: absolute;
  left: 0;
  font-weight: 900;
}

.cm-offer-list li span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13.5px;
}

.cm-offer-close {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cm-offer-copy-dark {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 20px;
}

.cm-safe-badge {
  max-width: 280px;
  margin: 26px auto 0;
}

/* GUARANTEE */
.cm-guarantee-grid {
  display: flex;
  align-items: center;
  gap: 46px;
}

.cm-guarantee-grid > img {
  flex: 0 0 200px;
  width: 200px;
}

.cm-guarantee-grid p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 22px;
}

/* ACCORDION */
.cm-accordion {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.cm-accordion details {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
}

.cm-accordion summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cm-accordion summary::-webkit-details-marker {
  display: none;
}

.cm-accordion summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  margin-left: 12px;
  flex-shrink: 0;
}

.cm-accordion details[open] summary::after {
  content: '−';
}

.cm-accordion-body {
  padding: 0 24px 20px;
}

.cm-accordion-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* BUTTONS */
.cm-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0,91,255,0.25);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cm-btn:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

/* FOOTER */
.cm-footer {
  text-align: center;
  padding: 30px 20px;
  background: var(--blue-navy);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cm-hero-grid,
  .cm-offer-grid {
    grid-template-columns: 1fr;
  }
  .cm-hero-image { order: -1; }
  .cm-check-grid,
  .cm-testimonial-grid,
  .cm-bonus-grid {
    grid-template-columns: 1fr;
  }
  .cm-guarantee-grid {
    flex-direction: column;
    text-align: center;
  }
  .cm-offer-text h2 {
    text-align: center;
  }
  .cm-offer-list {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .cm-hero h1 { font-size: 25px; }
  .cm-section h2 { font-size: 24px; }
  .cm-nav-cta { font-size: 12px; padding: 8px 14px; }
  .cm-urgency { font-size: 12px; }
}
