/* Reset & Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: #f3fbf6; /* Unified background */
  color: #1f2937;
  line-height: 1.6;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0aa04a; /* Unified primary green */
  padding: 14px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 65px; }

/* NAV LINKS */
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 600; }

/* HAMBURGER */
.menu-toggle {
  display: none; background: none; border: none; font-size: 28px; color: #fff; cursor: pointer;
}

/* FOOTER */
footer {
  background: #0b5d2e; color: #fff; text-align: center; padding: 18px; font-size: .9rem; margin-top: 40px;
}

/* INDEX.HTML SPECIFIC */
.hero-wrapper { display: flex; justify-content: center; margin: 32px 0; }
.hero {
  width: 90%; max-width: 1000px; border-radius: 14px;
  background: linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)), url("hero-image.jpeg") center/cover no-repeat;
  padding: 48px 36px; text-align: center; color: #fff;
}
.hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.hero p { font-size: 1.05rem; max-width: 700px; margin: 0 auto 28px; }

.btn-group { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn {
  width: 260px; text-align: center; background: #ffea00; color: #000; padding: 14px 28px;
  font-weight: 800; border-radius: 6px; text-decoration: none; box-shadow: 0 6px 18px rgba(0,0,0,.3); border: none; cursor: pointer;
}

.price-sticker-wrapper { display: flex; justify-content: center; margin: 40px 0 -20px; }
.price-sticker {
  width: 90%; max-width: 1000px; background: #ffffff; border-radius: 12px; padding: 18px 30px 16px;
  text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,.12); border-top: 6px solid #0aa04a;
}
.price-sticker span { display: block; font-size: .9rem; font-weight: 600; color: #374151; }
.price-sticker strong { display: block; font-size: 2.6rem; font-weight: 800; color: #0aa04a; line-height: 1.1; }
.price-sticker .hours { display: block; font-size: .85rem; font-weight: 700; color: #0b5d2e; margin: 6px 0; }
.price-sticker small { display: block; font-size: .75rem; color: #374151; line-height: 1.4; }

.features-section, .about, .why { max-width: 1000px; margin: 70px auto; padding: 40px 20px; text-align: center; }
.features-section h2, .about h2, .why h2 { color: #0aa04a; font-size: 2.1rem; }
.features { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 30px; margin-top: 30px; }
.feature { background: #fff; padding: 30px; border-radius: 12px; border-top: 6px solid #0aa04a; box-shadow: 0 12px 25px rgba(0,0,0,.06); }
.about { background: #ffffff; border-radius: 14px; box-shadow: 0 12px 25px rgba(0,0,0,.05); }
.about p { max-width: 800px; margin: 0 auto 18px; font-size: 1.05rem; }

#contact { max-width: 700px; margin: 70px auto; padding: 0 20px; }
form { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 12px 25px rgba(0,0,0,.06); }
label { font-weight: 600; display: block; margin-bottom: 6px; }
input, textarea { width: 100%; padding: 12px; margin-bottom: 16px; border-radius: 6px; border: 1px solid #d1d5db; font-family: inherit; }

.call-now { display: none; }

@media(max-width:768px){
  .logo img { height: 55px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: #0aa04a;
    flex-direction: column; align-items: center; display: none; padding: 20px 0;
  }
  .nav-links.open { display: flex; }
  .hero h1 { font-size: 2rem; }
  .call-now {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: #0aa04a; color: #fff;
    font-weight: 800; padding: 16px; justify-content: center; text-decoration: none; box-shadow: 0 -6px 20px rgba(0,0,0,.25);
  }
  body { padding-bottom: 80px; }
}

/* AFFILIATE PAGES SHARED */
.container { max-width: 900px; margin: auto; padding: 40px 20px; }
.container.narrow { max-width: 700px; }
.container.signature { max-width: 650px; background: white; padding: 45px; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); margin-top: 40px; }

h1.page-title { text-align: center; margin-bottom: 10px; font-size: 28px; }
h2.page-subtitle { margin: 5px 0 0 0; font-weight: 500; color: #555; text-align: center; }
.intro-text { text-align: center; color: #555; margin-bottom: 40px; }

/* AFFILIATE.HTML */
.program-info { background: #ffffff; border: 1px solid #e6e6e6; padding: 20px; border-radius: 8px; margin-bottom: 30px; text-align: center; }
.program-info ul { text-align: left; display: inline-block; margin-top: 10px; color: #444; }
.form-box { background: white; padding: 35px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }

button.action-btn {
  width: 100%; padding: 14px; background: #0aa04a; color: white; border: none; border-radius: 6px;
  font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s ease;
}
button.action-btn:hover { background: #0b5d2e; }

.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 20px; }
.checkbox input { width: auto; margin-top: 4px; }
.notice { text-align: center; font-size: 14px; color: #666; margin-top: 10px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0aa04a;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: #0b5d2e;
}

/* AFFILIATE-SIGNATURE.HTML */
.radio-group { margin-top: 10px; line-height: 28px; margin-bottom: 16px; }
.radio-group input { width: auto; margin-right: 5px; }
.signature-box { border: 1px solid #ccc; border-radius: 8px; margin-top: 15px; }
canvas { width: 100%; height: 150px; display: block; }
.clear-btn { margin-top: 10px; padding: 6px 12px; border: none; background: #e8e8e8; border-radius: 6px; cursor: pointer; }
.date { margin-top: 30px; font-size: 15px; }
.company-signature { text-align: center; margin-top: 45px; }
.company-signature img { width: 200px; margin-top: 10px; }

button.submit-btn {
  margin-top: 40px; width: 100%; padding: 15px; border: none; border-radius: 8px;
  background: #0aa04a; color: white; font-size: 18px; cursor: pointer; transition: opacity 0.3s;
}
button.submit-btn:hover { opacity: .9; }

/* AFFILIATE-AGREEMENT.HTML */
.agreement-content h2 { margin-top: 30px; font-size: 20px; color: #1f2937; }
.agreement-content p { line-height: 1.7; color: #444; }
