/* =====================================================
   RESET
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  list-style: none;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  color: #262626;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
a {
  color: #c0392b;
  font-weight: 700;
}

p {
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 1.65;
  color: #262626;
}

/* =====================================================
   PAGE LAYOUT
   ===================================================== */
#smb-page {
  max-width: 100%;
}

.smb-page-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}

.smb-page-left {
  padding: 20px;
  max-width: 740px;
  flex: 1;
}

.smb-left-main {
  max-width: 100%;
}

/* =====================================================
   MAGAZINE HEADER
   ===================================================== */

/* Top accent strip */
.mag-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #1a2744 0%, #c0392b 50%, #e8870d 100%);
}

/* Masthead row */
.mag-masthead {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e8e8e8;
}

/* Logo lockup */
.mag-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mag-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.mag-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.mag-logo-name {
  font-size: 26px;
  font-weight: 900;
  color: #1a2744;
  letter-spacing: -0.03em;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
}

.mag-logo-sub {
  font-size: 10px;
  font-weight: 800;
  color: #c0392b;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Right side meta */
.mag-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.mag-tagline {
  font-size: 11px;
  color: #888;
  font-style: italic;
  letter-spacing: 0.03em;
}

.mag-date {
  font-size: 11px;
  color: #aaa;
  font-weight: 600;
}

/* Breadcrumb nav bar */
.mag-nav {
  background: #1a2744;
}

.mag-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.mag-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Chevron separator */
.mag-breadcrumb li + li::before {
  content: "›";
  margin: 0 8px;
  color: #4a5a7a;
  font-size: 15px;
  font-weight: 400;
}

.mag-breadcrumb li a {
  display: block;
  padding: 9px 0;
  color: #8a9bbf;
  text-decoration: none;
  transition: color 0.15s;
}

.mag-breadcrumb li a:hover {
  color: #fff;
}

/* Current page — white, no link */
.mag-breadcrumb li span {
  padding: 9px 0;
  color: #fff;
}

/* Mobile header */
@media (max-width: 768px) {
  .mag-masthead {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mag-logo-name {
    font-size: 21px;
  }

  .mag-meta {
    display: none;
  }

  .mag-breadcrumb {
    padding: 0 14px;
  }
}

/* =====================================================
   HEADINGS
   ===================================================== */
#smb-page h1 {
  color: #17191c;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0 0 20px;
}

#smb-page h2 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #17191c;
}

#smb-page h3 {
  color: #359b76;
  font-size: 28px;
  line-height: 1.3;
  margin: 32px 0 16px;
  font-weight: 700;
}

/* =====================================================
   ADVERTORIAL / AUTHOR
   ===================================================== */
#smb-page .advertisement {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.smb-autor {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.smb-autor-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.smb-autor-content {
  text-align: left;
  border-left: 3px #359b76 solid;
  padding-left: 14px;
}

.smb-autor-name {
  color: #359b76;
  font-size: 18px;
  display: block;
  font-weight: 700;
}

.smb-autor-date {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

/* =====================================================
   IMAGES
   ===================================================== */
.smb-main-img {
  max-width: 100%;
  border: 0;
  margin: 12px auto 0;
  display: block;
  border-radius: 4px;
}

/* =====================================================
   CALLOUT BOXES
   ===================================================== */
.gray-box {
  background: #ececec;
  padding: 10px 10px 3px 10px;
}

.update-box {
  border-left: 4px solid #c0392b;
  background: #FFF5F5;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 0 4px 4px 0;
}

.proof-box {
  border-left: 4px solid #359b76;
  background: #F0FAF4;
  padding: 14px 20px;
  margin-bottom: 24px;
  border-radius: 0 4px 4px 0;
}

/* =====================================================
   CTA BUTTONS — orange, high-contrast, pulse on primary
   ===================================================== */
.smb-right-button {
  display: block;
  padding: 18px 24px;
  background: linear-gradient(180deg, #f5a623 0%, #e8870d 100%);
  color: #fff !important;
  font-weight: 800;
  border-radius: 8px;
  font-size: 19px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(232, 135, 13, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
}

.smb-right-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 135, 13, 0.55);
  color: #fff !important;
  text-decoration: none;
}

/* Pulse animation — draws the eye */
@keyframes cta-pulse {
  0%   { box-shadow: 0 4px 14px rgba(232, 135, 13, 0.45); }
  50%  { box-shadow: 0 4px 28px rgba(232, 135, 13, 0.80); }
  100% { box-shadow: 0 4px 14px rgba(232, 135, 13, 0.45); }
}

.smb-right-button.pulse {
  animation: cta-pulse 2s ease-in-out infinite;
}

/* Fallback click-button class (same style) */
.smb-click-button {
  display: block;
  padding: 18px 24px;
  background: linear-gradient(180deg, #f5a623 0%, #e8870d 100%);
  color: #fff;
  text-align: center;
  font-weight: 800;
  border-radius: 8px;
  font-size: 19px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(232, 135, 13, 0.45);
  margin: 20px auto;
  width: 90%;
}

.cta-text {
  text-align: center;
  color: #c0392b;
  font-weight: 700;
  display: block;
  font-size: 16px;
  margin-top: 8px;
}

/* =====================================================
   URGENCY CTA BOX (.elm) — red border, warm background
   ===================================================== */
.elm {
  font-size: 22px;
  line-height: 1.6;
  color: #262626;
  margin-bottom: 25px;
  border: 3px solid #c0392b;
  border-radius: 8px;
  background: #FFF8F6;
  padding: 32px 20px;
}

.elm p {
  text-align: center;
  margin: 0 0 16px;
  padding: 0 10px;
}

/* =====================================================
   STEP LIST
   ===================================================== */
.gr-list1 {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 28px;
}

.gr-list1 li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
}

.gr-list1 li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #359b76;
  font-weight: 800;
  font-size: 20px;
}

.gr-list1 p {
  margin: 0;
  font-size: 20px;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.gr-reviews {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.gr-reviews > img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.gr-reviews p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  color: #262626;
}

.gr-reviews p span {
  font-weight: 700;
}

.review-text {
  font-size: 18px;
  line-height: 1.65;
  color: #2a2a2a;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 24px;
  margin-bottom: 32px;
  font-style: italic;
}

/* =====================================================
   MONEY BACK GUARANTEE BOX
   ===================================================== */
.money_back {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 2px solid #FAB73C;
  border-radius: 8px;
  background: #FFFBEF;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.money_back img {
  width: 90px;
  flex-shrink: 0;
}

.money_back p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

/* Stars SVG — constrain size everywhere */
img[src*="stars"] {
  width: 90px !important;
  max-width: 90px !important;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

/* =====================================================
   RIGHT SIDEBAR
   ===================================================== */
.smb-page-right {
  flex: 0 0 300px;
  padding: 20px 10px 10px;
  position: relative;
}

#smb-fixed-flag {
  height: 1px;
}

.smb-right-main {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
}

.smb-fixed {
  position: sticky;
  top: 16px;
  max-width: 270px;
}

.smb-link {
  border-bottom: 2px solid #359b76;
  margin-bottom: 16px;
}

.smb-page-right p {
  font-size: 17px;
  margin-bottom: 10px;
}

/* =====================================================
   MOBILE STICKY BAR
   ===================================================== */
.smb-button-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.88);
  padding: 10px 16px 12px;
  z-index: 100;
  text-align: center;
  display: none;
  box-sizing: border-box;
}

.smb-button-bottom .smb-right-button {
  margin: 4px auto;
  padding: 14px 20px;
  font-size: 17px;
  max-width: 340px;
}

.stickybtn { display: none; }
.stickybtn_fixed { display: block; }

/* =====================================================
   MISC UTILITIES
   ===================================================== */
.smb-text-center { text-align: center; }
.smb-border-main { padding: 15px; border: 2px solid red; }
.smb-center-bold { text-align: center; font-weight: 700; }

.dialogue {
  background: #ecffc6;
  font-size: 22px;
  font-style: italic;
  padding: 18px 25px;
  margin: 0 0 25px;
  border-left: 4px solid #a3d900;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1025px) {
  .smb-fixed {
    position: static;
  }
}

@media (max-width: 768px) {
  .smb-page-main {
    flex-direction: column;
  }

  .smb-page-left {
    padding: 16px;
    max-width: 100%;
  }

  .smb-page-right {
    display: none; /* sidebar hidden on mobile — sticky bar takes over */
  }

  #smb-page h1 {
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    padding: 0 0 14px;
  }

  #smb-page h3 {
    font-size: 22px;
    margin: 24px 0 12px;
  }

  p {
    font-size: 19px;
  }

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

  .gr-list1 p {
    font-size: 18px;
  }

  .elm {
    font-size: 19px;
    padding: 24px 14px;
  }
}

@media (max-width: 480px) {
  .smb-page-left {
    padding: 14px;
  }

  #smb-page h1 {
    font-size: 23px;
  }

  p {
    font-size: 18px;
  }

  .smb-right-button {
    font-size: 17px;
    padding: 16px 18px;
  }

  .review-text {
    font-size: 17px;
  }
}

/* =====================================================
   DR FOOTER
   ===================================================== */
.dr-footer {
  background-color: #1a1a1a;
  color: #999;
  padding: 40px 20px;
  margin-top: 40px;
}

.dr-footer-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.dr-footer-nav {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.dr-footer-nav a {
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.dr-footer-nav a:hover {
  color: #fff;
}

.dr-footer-copy {
  color: #bbb;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px !important;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.dr-footer-disclosure {
  color: #888;
  font-size: 11px;
  line-height: 18px;
  margin-bottom: 12px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dr-footer-disclaimer {
  color: #666;
  font-size: 11px;
  line-height: 18px;
  margin-bottom: 12px !important;
  text-align: left;
}

.dr-footer-disclaimer strong {
  color: #888;
}

@media (max-width: 768px) {
  .dr-footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .dr-footer-disclaimer {
    text-align: center;
  }
}
