/* --- Reset & Variables --- */
:root {
  --font-family: "Inter", sans-serif;
  --color-text-main: #111;
  --color-text-light: #555;
  --color-dark-green: #4a6326;
  --color-cream-bg: #f0f2eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
  color: var(--color-text-main);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}
ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.bg-white {
  background-color: #fff;
}
.bg-cream {
  background-color: var(--color-cream-bg);
}

/* --- Navigation --- */
.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
  z-index: 100;
}
.nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
}
.bag-icon {
  width: 16px;
  height: 12px;
  background: #000;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  margin: 0 1px;
}
.bag-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 4px;
  background: var(--color-dark-green);
  border-radius: 50%;
}
.nav-menu {
  display: flex;
  gap: 32px;
  margin: auto 10px;
  white-space: nowrap;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
}
.login-link {
  font-weight: 600;
  font-size: 14px;
}
.btn-nav {
  background: #ffffff;
  color: var(--color-dark-green);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: #000;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- 1. Terms Hero --- */
.terms-hero {
  background: url("./assets/pricing-bg-3.png") no-repeat center/cover;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle background pattern */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 45deg at 120% 120%,
    transparent 0deg 10deg,
    rgba(75, 101, 39, 0.05) 10deg 11deg
  );
  pointer-events: none;
}
.terms-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  margin: 0;
}

/* --- 2. Legal Content --- */
.legal-content {
  padding: 60px 0 100px;
}
.content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.update-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.legal-block {
  margin-bottom: 40px;
}
.legal-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}
.legal-block h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #333;
}
.legal-block p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Lists inside legal blocks */
.legal-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.legal-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

/* Uppercase disclaimer text */
.uppercase-text {
  text-transform: uppercase;
  font-size: 14px;
  color: #555;
}

/* Contact Block */
.contact-details-box p {
  margin-bottom: 4px;
  color: #333;
}

/* --- Footer --- */
.footer-section {
  background: var(--color-cream-bg);
  padding: 80px 0 30px;
  font-size: 14px;
  color: #333;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-links-grid {
  display: flex;
  gap: 60px;
}
.footer-links-grid h4 {
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-links-grid a {
  color: #555;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.contact-details p {
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
}
.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-bottom: 0px;
}
.nl-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
  margin-right: 10px;
}
.btn-dark {
  background: var(--color-dark-green);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-links-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .terms-hero h1 {
    font-size: 32px;
  }
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .nl-form {
    width: 100%;
  }
  .nl-form input {
    width: 100%;
    margin-bottom: 10px;
  }
}
