/* GoStocktake — shared content-page styles */

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

:root {
  --lime: #D9E021;
  --black: #111111;
  --white: #ffffff;
  --gray-50: #F8F8F8;
  --gray-100: #F0F0F0;
  --gray-200: #E4E4E4;
  --gray-400: #AAAAAA;
  --gray-600: #666666;
  --gray-800: #333333;
  --red: #B32121;
  --font: 'Manrope', sans-serif;
  --radius: 6px;
  --radius-lg: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--gray-200);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-word { font-size: 22px; font-weight: 500; color: var(--black); letter-spacing: -0.8px; line-height: 1; }
.logo-line { width: 26px; height: 2.5px; background: var(--lime); border-radius: 2px; margin-top: 3px; }

.nav-signin {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  border: 1px solid var(--black);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: opacity 0.15s;
}
.nav-signin:hover { opacity: 0.85; }

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin-left: 36px;
  margin-right: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--black); }

/* ── SHARED BUTTONS ── */
.btn-lime {
  background: var(--lime);
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-lime:hover { opacity: 0.88; }

.btn-dark {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-dark:hover { opacity: 0.85; }

/* ── PAGE HEADER ── */
.page-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 40px 24px;
  width: 100%;
}

.page-title {
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.page-title .accent {
  position: relative;
  display: inline-block;
}
.page-title .accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--lime);
  border-radius: 2px;
}

.page-intro {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 600px;
}

.page-intro a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }

/* ── CONTENT SECTIONS ── */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 48px;
  width: 100%;
  flex: 1;
}

.section-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--black);
  margin: 56px 0 8px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--gray-200);
}

.lead {
  font-size: 17px;
  color: var(--gray-800);
  line-height: 1.7;
  margin: 24px 0;
}

.prose p {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
}

.prose p:last-child { margin-bottom: 0; }

.prose ul {
  margin: 4px 0 20px;
  padding-left: 0;
  list-style: none;
}

.prose li {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.prose li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.prose strong { font-weight: 600; color: var(--black); }

.prose a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ITEMS ── */
.faq-item {
  padding: 22px 0;
  border-bottom: 0.5px solid var(--gray-200);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-a {
  font-size: 15.5px;
  color: var(--gray-800);
  line-height: 1.65;
}

.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }

/* ── INLINE CTA BLOCK ── */
.cta-block {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin: 56px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.cta-text h3 .lime { color: var(--lime); }

.cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 380px;
}

/* ── FOOTER ── */
footer {
  border-top: 0.5px solid var(--gray-200);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo .logo-word { font-size: 16px; }
.footer-logo .logo-line { width: 20px; height: 2px; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--gray-400); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--black); }
.footer-copy { font-size: 12px; color: var(--gray-400); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  nav { padding: 0 20px; }
  .page-header { padding: 56px 24px 20px; }
  .content { padding: 0 24px 40px; }
  .cta-block { padding: 32px 28px; flex-direction: column; align-items: flex-start; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
  .nav-links { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
