@font-face {
  font-family: "Quicksand";
  src: url(../fonts/Quicksand-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary: #0d6b6e;
  --primary-light: #15aab2;
  --primary-dark: #084b4e;
  --accent: #ff6b6b;
  --accent-light: #ff8e8e;
  --text-dark: #2d3436;
  --text-muted: #636e72;
  --bg-light: #f0f4f8;
  --bg-yellow: #fff5e6;
  --bg-gray: #edf2f7;
  --bg-blue: #e6f2f5;
  --gray-border: #dcdde1;
  --white: #ffffff;
  --urgent-red: #e74c3c;
  --link-blue: #0984e3;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  background: #fafbfc;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid var(--gray-border);
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
}

.header-row {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.header-badge {
  font-size: 14px;
  color: var(--text-muted);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.main-wrapper {
  flex: 1;
  width: 100%;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-row {
  max-width: 1170px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.col-full {
  width: 100%;
  padding: 0 15px;
}

.col-seventy-five {
  width: 75%;
  padding: 0 15px;
}

.col-twenty-five {
  width: 25%;
  padding: 0 15px;
}

.advertorial-label {
  color: var(--text-muted);
  font-size: 18px;
  text-align: center;
  padding: 15px;
  letter-spacing: 1px;
}

.hero-wrap {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(13,107,110,0.85), rgba(13,107,110,0.2));
  border-radius: 0 0 20px 20px;
}

.hero-desktop {
  display: block;
}

.hero-heading {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.hero-heading strong {
  padding: 2px 10px;
  border-radius: 6px;
}

.hero-mobile {
  display: none;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 15px 15px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.author-pic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.author-meta {
  color: var(--text-dark);
  font-size: 17px;
}

.content-columns {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.main-column {
  width: 70%;
  padding: 0 20px;
}

.sidebar {
  width: 30%;
  padding: 0 20px;
}

.highlight-box {
  background: var(--bg-yellow);
  border-left: 6px solid var(--accent);
  padding: 20px 24px;
  font-size: 20px;
  line-height: 1.8;
  border-radius: 16px;
  color: var(--text-dark);
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
}

.section-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin: 25px 0 15px;
  padding: 0 10px;
  color: #1a3b3d;
}

.accent-color {
  color: var(--accent);
}

.text-block {
  font-size: 19px;
  line-height: 1.8;
  margin: 15px 0 0;
  padding: 0 10px;
  color: var(--text-dark);
}

.text-block p {
  margin-bottom: 18px;
}

.quote-block {
  background: var(--bg-gray);
  padding: 18px 22px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
  border-radius: 18px;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
}

.quote-block ul {
  margin-left: 24px;
}

.faq-block {
  background: var(--bg-blue);
  padding: 18px 22px;
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.7;
  border-radius: 18px;
  border: 1px solid #b2d8d8;
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
}

.urgency-block {
  background: var(--bg-yellow);
  border: 3px dashed var(--accent);
  padding: 24px;
  margin: 20px 0 0;
  text-align: center;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.urgency-text {
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  color: var(--text-dark);
}

.urgency-text p {
  margin-bottom: 12px;
}

.urgency-img {
  max-width: 100%;
  margin: 20px auto 0;
  display: block;
  height: auto;
  border-radius: 16px;
}

.urgent-red {
  color: var(--urgent-red);
  font-weight: 700;
}

.urgent-link {
  color: var(--primary-light);
  text-decoration: underline;
  font-weight: 700;
}

.muted-note {
  color: #636e72;
}

.content-visual {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 25px 0;
}

.cta-btn {
  display: inline-block;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 16px 36px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(13,107,110,0.3);
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 10px 28px rgba(13,107,110,0.45);
  transform: translateY(-3px);
}

.cta-btn-large {
  font-size: 26px;
  padding: 20px 48px;
}

.cta-final {
  margin-top: 45px;
}

.cta-final-large {
  margin-top: 65px;
}

.product-card {
  position: sticky;
  top: 30px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 22px;
  padding: 24px;
  margin: 70px 0 0;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.product-card-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
}

.product-card-stars {
  color: #f39c12;
  font-size: 28px;
  font-weight: bold;
  margin: 8px 0;
}

.product-card-reviews {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.product-card-name {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 16px;
}

.product-card-features {
  text-align: left;
  margin: 18px 0;
}

.product-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 14px 0;
}

.product-card-feature img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.product-card-feature span {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.5;
}

.product-card-img {
  max-width: 100%;
  height: auto;
  margin: 18px 0;
  border-radius: 14px;
}

.product-card-cta {
  display: block;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: var(--primary);
  padding: 16px 20px;
  margin: 12px 0 0;
  border-radius: 40px;
  transition: background 0.3s;
}

.product-card-cta:hover {
  background: var(--primary-dark);
}

.alert-box {
  background: #e8f4f8;
  border: 2px dashed var(--primary-light);
  padding: 20px;
  margin: 40px 0 0;
  font-size: 18px;
  line-height: 1.7;
  border-radius: 16px;
  color: var(--text-dark);
}

.alert-box a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}

.fb-comments {
  max-width: 680px;
  margin: 35px 0;
  border-bottom: 1px solid var(--gray-border);
  padding-bottom: 25px;
}

.fb-comments-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fb-comments-list > li {
  margin: 24px 0;
}

.fb-comment {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fb-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #bdc3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
}

.fb-avatar-small {
  width: 38px;
  height: 38px;
  font-size: 15px;
}

.fb-comment-body {
  flex: 1;
  min-width: 0;
}

.fb-comments h3 {
  font: 700 16px 'Quicksand', sans-serif;
  color: var(--primary);
  margin: 0 0 4px;
}

.fb-comments p {
  margin: 5px 0;
  font-size: 17px;
  line-height: 1.6;
  color: #2d3436;
}

.fb-comment-body p strong {
  color: var(--primary);
  font-weight: 700;
}

.fb-replies {
  margin: 10px 0 0 48px;
  list-style: none;
  padding-left: 18px;
  border-left: 1px solid #dfe6e9;
}

.fb-replies > li {
  margin: 14px 0;
}

.fb-view-more {
  color: var(--text-muted);
  font-style: italic;
}

.hidden-svg {
  position: absolute;
  visibility: hidden;
}

.site-footer {
  margin-top: auto;
  background: #eaf0f4;
  border-top: 1px solid var(--gray-border);
  padding: 45px 20px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.footer-logo {
  text-align: center;
  margin-bottom: 28px;
}

.footer-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-links a {
  color: var(--primary);
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #4a5568;
}

.footer-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 20px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 28px;
  border-top: 1px solid #cbd5e0;
  border-bottom: 1px solid #cbd5e0;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-meta {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 45px 25px;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.8rem;
  font-family: 'Quicksand', sans-serif;
  color: var(--text-dark);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 1.8rem 0 1rem;
  font-family: 'Quicksand', sans-serif;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 1.4rem 0 0.8rem;
  font-family: 'Quicksand', sans-serif;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
}

.thanks-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.thanks-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 14px 45px rgba(0,0,0,0.08);
  padding: 56px 48px;
  max-width: 620px;
  width: 90%;
  text-align: center;
}

.thanks-card img {
  width: 55px;
  height: 55px;
  margin-bottom: 28px;
}

.thanks-card h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-card p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 14px;
}

@media only screen and (max-width: 768px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

  .hero-heading {
    font-size: 20px;
  }

  .main-column {
    width: 100%;
  }

  .sidebar {
    width: 100%;
  }

  .product-card {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .author-desktop {
    display: none;
  }

  .author-mobile {
    display: block;
  }

  .fb-replies {
    margin-left: 40px;
  }

  body {
    font-size: 18px;
  }

  .text-block {
    font-size: 18px;
  }

  .highlight-box {
    font-size: 18px;
  }

  .quote-block,
  .faq-block {
    font-size: 17px;
  }

  .alert-box {
    font-size: 17px;
  }

  .urgency-text {
    font-size: 17px;
  }

  .section-heading {
    font-size: 24px;
  }

  .cta-btn {
    font-size: 20px;
    padding: 14px 28px;
  }

  .col-seventy-five {
    width: 100%;
  }

  .col-twenty-five {
    width: 100%;
  }

  .product-card {
    margin: 24px 10px;
    position: relative;
    top: 0;
    display: block;
  }

  .header-row {
    flex-direction: column;
    text-align: center;
  }

  .header-badge {
    text-align: center;
    font-size: 13px;
  }

  .legal-content {
    padding: 25px 18px;
  }

  .legal-content h1 {
    font-size: 1.8rem;
  }

  .site-footer {
    font-size: 0.85rem;
  }
}

@media only screen and (min-width: 769px) {
  .author-mobile {
    display: none;
  }
}