/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* BRAND COLORS */
:root {
  --primary: #2FA66A;
  --primary-dark: #0F3D2E;

  --bg-main: #0B0F0D;
  --bg-soft: #141A17;

  --text-primary: #FFFFFF;
  --text-muted: #B7CFC2;
}

/* BODY */
body {
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: url("assets/hero-bg.png") center/cover no-repeat;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

/* Primary CTA */
.primary {
  background: var(--primary);
  color: var(--bg-main);
}

.primary:hover {
  background: #3bcf84;
}

/* Secondary CTA */
.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary);
}

.secondary:hover {
  background: var(--primary-dark);
}

/* SECTIONS */
.section {
  padding: 80px 40px;
  text-align: center;
}

/* Tighten first section after hero */
#yes-owner.section {
  padding-top: 15px;
  padding-bottom: 40px;
}

.section.light {
  background: var(--bg-soft);
  color: var(--text-primary);
}

.section.dark {
  background: var(--bg-main);
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.section h3 {
  font-size: 1.25rem;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.section p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--text-muted);
}

#yes-owner p {
  margin-bottom: 12px;
  line-height: 1.45;
}

#yes-owner {
  background: linear-gradient(
    180deg,
    rgba(15, 61, 46, 0.9),
    rgba(11, 15, 13, 1)
  );
}

.section ul {
  max-width: 700px;
  margin: 0 auto 25px;
  padding-left: 20px;
}

#yes-owner ul {
  margin: 10px auto 16px;
}

.section li {
  margin-bottom: 10px;
}

#yes-owner li {
  margin-bottom: 6px;
}

#yes-owner .btn.leadmagnet {
  margin-top: 10px;
}

#not-yet {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#not-yet {
  background: linear-gradient(
    180deg,
    rgba(15, 61, 46, 0.9),
    rgba(11, 15, 13, 1)
  );
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-snap-type: y mandatory;
}

.section {
  scroll-snap-align: start;
}

/* Payment Buttons */
a:focus,
a:active {
  outline: none;
  text-decoration: none;
}

a.button-link {
  display: inline-block;
}

a:focus,
a:hover {
  text-decoration: none;
}


a .cta-button {
  text-decoration: none;
}

/* Restore guide link color */
.pdf-links a {
  color: #2FA66A; /* or use #3b82f6 if you want true blue */
}

/* PDF / GUIDE LINKS */
.pdf-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.pdf-links a {
  background: var(--bg-soft);
  padding: 12px;
  border-radius: 6px;
  color: var(--text-primary);
  text-decoration: none;
  transition: 0.2s ease;
}

.pdf-links a:hover {
  background: var(--primary-dark);
}

/* FOOTER — PRESERVED STRUCTURE */
footer {
  background: #0b0d11; /* kept as-is */
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.site-footer .logo {
  height: 90px;
}

.site-footer .social_icon {
  height: 30px;
}

.footer-right a {
  margin-left: 10px;
  color: #aaa;
  text-decoration: none;
  bottom: 20px;
  right: 0;
}

.footer-right a:hover {
  color: #ffffff;
}


/* Footer legal links only */
.footer-legal a,
.footer-legal a:visited {
  color: #2FA66A; /* primary company green */
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  color: #B7CFC2; /* muted text on hover */
}

.footer-legal a:active {
  color: #0F3D2E; /* dark accent green when clicked */
}

footer img {
  max-height: 90px;
  width: auto;
}

footer .social_icon {
  max-height: 30px;
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
