@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #2D00F7;
  --primary-dark: #1A009D;
  --accent: #F5004F;
  --bg-light: #F8F9FA;
  --text-dark: #212529;
  --text-muted: #6C757D;
  --border-radius: 8px;
  --max-width: 1000px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section {
  overflow: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.top-bar {
  background-color: #212529;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 6px 0;
}

.top-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.top-bar__advertorial {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}

.logo-line1,
.logo-line2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}

.logo-line1 {
  font-size: 1.5rem;
}

.logo-line2 {
  font-size: 1.2rem;
}

.hero {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  transition: background-color 0.2s ease;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-button:hover {
  background-color: #d0003f;
}

.cta-button--full {
  width: 100%;
}

.cta-button--accent {
  background-color: #2D00F7;
}

.cta-button--accent:hover {
  background-color: #1A009D;
}

.content-with-sidebar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.main-content {
  min-width: 0;
}

.article-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 12px;
}

.main-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 32px 0 16px;
  color: var(--primary-dark);
}

.main-content p {
  margin-bottom: 16px;
}

.main-content img {
  border-radius: var(--border-radius);
  margin: 24px 0;
  object-fit: cover;
}

.steps {
  margin-left: 24px;
  margin-bottom: 16px;
}

.steps li {
  margin-bottom: 8px;
}

.benefit-list {
  list-style: none;
  margin-bottom: 24px;
}

.benefit-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.benefit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.special-offer {
  background: linear-gradient(135deg, #F9F9F9, #FFF5F7);
  border: 2px solid var(--accent);
  padding: 32px;
  border-radius: var(--border-radius);
  margin: 32px 0;
  text-align: center;
}

.special-offer h2 {
  margin-top: 0;
  color: var(--accent);
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 5px;
}

.testimonial {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
  margin: 16px 0;
  border-left: 4px solid var(--accent);
}

.testimonial blockquote p {
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

.cta-inline {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 32px 0;
}

.cta-inline p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-inline .cta-button {
  background-color: #fff;
  color: var(--primary);
}

.cta-inline .cta-button:hover {
  background-color: #f0f0f0;
}

.sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

.product-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.product-card__desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.product-card__features {
  list-style: none;
  margin-bottom: 16px;
}

.product-card__features li {
  font-size: 0.9rem;
  padding: 4px 0 4px 20px;
  position: relative;
}

.product-card__features li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.product-card__price {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 16px 0;
}

.product-card__price small {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.site-footer {
  background-color: #212529;
  color: #dee2e6;
  padding: 40px 20px 20px;
  margin-top: auto;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
}

.footer-logo .logo-line1,
.footer-logo .logo-line2 {
  color: #fff;
  font-size: 1rem;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-legal a {
  color: #adb5bd;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  flex-basis: 100%;
  font-size: 0.85rem;
  color: #adb5bd;
  border-top: 1px solid #495057;
  padding-top: 16px;
  margin-top: 8px;
}

.footer-copy {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.9rem;
  padding-top: 12px;
  color: #adb5bd;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  color: var(--primary-dark);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 28px 0 16px;
  font-family: var(--font-heading);
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 22px 0 12px;
  font-family: var(--font-heading);
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}