* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Barlow', sans-serif; background: #0C0F18; color: #fff; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,15,24,0.92); backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: 0.05em;
}
.nav-logo span { color: #FF6A2B; }
.lp-logo-img { height: 40px; width: 40px; object-fit: contain; mix-blend-mode: screen; flex-shrink: 0; }
.nav-cta {
  background: #FF6A2B; color: #fff; padding: 10px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 700; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* HERO */
.hero-section {
  background: linear-gradient(180deg, #060810 0%, #0C0F18 100%);
  padding: 80px 24px 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-block; background: rgba(255,106,43,0.12);
  border: 1px solid rgba(255,106,43,0.35); color: #FF6A2B;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
}
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 64px); font-weight: 900; line-height: 1.05;
  color: #fff; margin-bottom: 20px;
}
h1 span { color: #FF6A2B; }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.6);
  line-height: 1.65; max-width: 680px; margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary {
  background: #FF6A2B; color: #fff; padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 700; transition: opacity 0.2s; display: inline-block;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75);
  padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: border-color 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.45); }

/* SECTIONS */
.section-wrap { border-bottom: 1px solid rgba(255,255,255,0.06); }
.section-wrap.alt { background: rgba(255,255,255,0.025); }
.section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700; color: #FF6A2B;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 16px;
}
.body-copy { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.75; max-width: 720px; }
.body-copy p { margin-bottom: 16px; }

/* PAIN GRID */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 40px; }
.pain-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 24px; transition: border-color 0.2s;
}
.pain-card:hover { border-color: rgba(255,106,43,0.3); }
.pain-card-icon { font-size: 28px; margin-bottom: 12px; }
.pain-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* FEATURE LIST */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; margin-top: 40px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 18px; transition: border-color 0.2s;
}
.feature-item:hover { border-color: rgba(255,106,43,0.25); }
.feature-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,106,43,0.15); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 12px; margin-top: 1px;
  color: #FF6A2B; font-weight: 700;
}
.feature-item h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* TABLE */
.comparison-wrap { overflow-x: auto; margin-top: 40px; }
table { width: 100%; border-collapse: collapse; min-width: 500px; }
thead th {
  padding: 14px 20px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
thead th:first-child { text-align: left; color: rgba(255,255,255,0.4); }
thead th:nth-child(2) { color: #FF6A2B; text-align: center; }
thead th:not(:first-child) { text-align: center; color: rgba(255,255,255,0.4); }
tbody td { padding: 13px 20px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }
tbody td:first-child { color: rgba(255,255,255,0.8); }
tbody td:not(:first-child) { text-align: center; font-size: 17px; }
tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.price-row { background: rgba(255,106,43,0.05) !important; border-top: 2px solid rgba(255,106,43,0.25); }
.price-row td:first-child { color: #fff; font-weight: 700; font-size: 15px; }
.price-row td:nth-child(2) { color: #FF6A2B; font-size: 17px; font-weight: 800; }
.price-row td:not(:first-child):not(:nth-child(2)) { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 600; }

/* PRICE CARD */
.price-card {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,106,43,0.3);
  border-radius: 16px; padding: 40px 60px;
}
.price-label { font-size: 13px; font-weight: 700; color: #FF6A2B; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900; color: #fff; line-height: 1; }
.price-period { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 24px; }
.price-fine { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* TESTIMONIAL */
.testimonial-section {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 64px 24px; text-align: center;
}
.testimonial-quote {
  font-size: clamp(18px, 3vw, 26px); font-style: italic;
  color: rgba(255,255,255,0.8); max-width: 760px; margin: 0 auto 20px; line-height: 1.5;
}
.testimonial-author { font-size: 14px; color: rgba(255,255,255,0.35); }

/* CTA SECTION */
.cta-section {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, #0C0F18 0%, #141824 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p:not(.cta-fine) {
  color: rgba(255,255,255,0.55); font-size: 16px;
  max-width: 520px; margin: 0 auto 32px; line-height: 1.6;
}
.cta-fine { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* RELATED PAGES */
.related-pages {
  padding: 48px 24px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.related-pages-inner { max-width: 1100px; margin: 0 auto; }
.related-pages h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-link {
  display: inline-block; padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.related-link:hover { border-color: #FF6A2B; color: #FF6A2B; }

/* FOOTER */
.lp-footer {
  padding: 40px 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #0C0F18;
}
.lp-footer-inner { max-width: 1100px; margin: 0 auto; }
.lp-footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 28px;
}
.lp-footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  font-weight: 800; letter-spacing: 0.05em; color: #fff;
}
.lp-footer-brand span { color: #FF6A2B; }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.lp-footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.lp-footer-links a:hover { color: rgba(255,255,255,0.75); }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px; font-size: 13px; color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .section { padding: 52px 20px; }
  .price-card { padding: 32px 32px; }
  .lp-footer { padding: 32px 20px 24px; }
  .lp-footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
}
