/* ========================================
   GOValue Landing Page — Styles
   Brand: Great Oak VFA palette
   ======================================== */

/* --- Variables --- */
:root {
  --green-dark: #2D5F2D;
  --green-mid: #4A7C59;
  --green-light: #E8F0E8;
  --gold: #B8860B;
  --grey-dark: #2C2C2C;
  --grey-mid: #555;
  --grey-light: #f7f7f7;
  --white: #fff;
  --error: #d93025;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--green-dark);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; display: block; }

/* --- Container --- */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #9a7209;
  border-color: #9a7209;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

.btn-full { width: 100%; }

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* --- Sections --- */
.section {
  padding: 4rem 0;
}

/* --- SITE NAV --- */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  padding: 0.875rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-dark);
  text-decoration: none;
}

.site-nav-links a:hover:not(.btn) {
  color: var(--green-mid);
}

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, rgba(45,95,45,0.88) 0%, rgba(74,124,89,0.85) 100%),
              url('/govalue/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero h1 { color: var(--white); margin-bottom: 1rem; }

.hero-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.hero-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.85;
  display: block;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero-sub {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.92;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-cta-soft {
  font-size: 0.875rem;
  margin-top: 1.25rem;
  opacity: 0.9;
}

.hero-cta-soft a {
  color: var(--white);
  text-decoration: underline;
  opacity: 0.9;
}

/* --- PROBLEM / STAKES --- */
.section-problem {
  background: var(--grey-light);
}

.section-problem h2 { text-align: center; }

.section-problem .lead {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--grey-mid);
  margin-bottom: 2.5rem;
}

.problem-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.problem-point {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.problem-point strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.25rem;
}

/* --- VALUE PROPOSITION --- */
.section-value { text-align: center; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--green-light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: left;
}

.value-icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.value-card h3 { color: var(--green-dark); }
.value-card p { color: var(--grey-mid); margin-bottom: 0; font-size: 0.95rem; }

/* --- CREDIBILITY --- */
.section-credibility {
  background: var(--green-dark);
  color: var(--white);
}

.section-credibility h2 { color: var(--white); text-align: center; }

.section-credibility > .container > p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  opacity: 0.92;
}

.cred-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cred-point {
  text-align: center;
  padding: 1rem;
}

.cred-point strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cred-point span {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* --- HOW IT WORKS --- */
.section-process { text-align: center; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.step { text-align: center; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 { color: var(--green-dark); }
.step p { color: var(--grey-mid); font-size: 0.95rem; }

.cta-mid { margin-top: 2.5rem; }

/* --- USE CASES --- */
.section-usecases {
  background: var(--grey-light);
  text-align: center;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.usecase-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  border-top: 3px solid var(--green-mid);
}

.usecase-card h3 { color: var(--green-dark); }
.usecase-card p { color: var(--grey-mid); font-size: 0.95rem; margin-bottom: 0; }

/* --- FIT SECTION --- */
.section-fit {
  background: var(--white);
}

.section-fit h2 { text-align: center; }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.fit-col {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
}

.fit-yes {
  background: var(--green-light);
  border-left: 4px solid var(--green-mid);
}

.fit-no {
  background: #fdf5e6;
  border-left: 4px solid var(--gold);
}

.fit-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.fit-no h3 { color: #7a5c00; }

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-size: 0.95rem;
  color: var(--grey-dark);
  position: relative;
  line-height: 1.5;
}

.fit-yes .fit-list li::before {
  content: "✓";
  color: var(--green-mid);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.fit-no .fit-list li::before {
  content: "—";
  color: var(--gold);
  position: absolute;
  left: 0;
}

.fit-note {
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,134,11,0.25);
  line-height: 1.55;
}

/* --- PRICING --- */
.section-pricing { text-align: center; }

.pricing-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--grey-mid);
}

.pricing-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-item {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.pricing-low {
  background: var(--grey-light);
  border: 1px solid #ddd;
}
.pricing-mid {
  background: var(--green-light);
  border: 2px solid var(--green-mid);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-high {
  background: var(--grey-light);
  border: 1px solid #ddd;
}

.pricing-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.5;
}

.pricing-caveat {
  font-size: 0.8rem !important;
  opacity: 0.7;
  margin-top: 0.75rem;
  font-style: italic;
}

/* --- RESOURCES --- */
.section-resources {
  background: var(--grey-light);
  text-align: center;
}

.resources-intro {
  color: var(--grey-mid);
  max-width: 560px;
  margin: 0 auto 0.5rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.resource-card {
  display: block;
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
  color: inherit;
}

.resource-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: inherit;
}

.resource-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.resource-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.resource-card p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.resource-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-mid);
}

.resources-more {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* --- FAQ --- */
.section-faq {
  background: var(--grey-light);
}

.section-faq h2 { text-align: center; margin-bottom: 2rem; }

.faq-item {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0;
  padding-right: 1.5rem;
  position: relative;
}

.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-mid);
  line-height: 1;
}

.faq-item[open] h3::after { content: "−"; }

.faq-item p {
  color: var(--grey-mid);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.65;
  margin-top: 0.75rem;
}

.faq-item a {
  color: var(--green-mid);
  text-decoration: underline;
}

/* --- CONTACT / CTA --- */
.section-contact {
  text-align: center;
  padding-bottom: 5rem;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--grey-mid);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.lead-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

/* --- Form --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-dark);
  margin-bottom: 0.35rem;
}

.required { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--grey-dark);
  background: var(--white);
  border: 1.5px solid #ccc;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(217,48,37,0.1) !important;
}

.char-count {
  float: right;
  font-size: 0.75rem;
  color: #999;
  font-weight: 400;
}

.form-privacy {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

#submitBtn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* --- Thank You --- */
.thank-you {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.thank-you h3 {
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.thank-you p { color: var(--grey-mid); }

/* Contact Alt */
.contact-alt {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.contact-alt p {
  color: var(--grey-mid);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- FOOTER --- */
.footer {
  background: var(--grey-dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}

.footer-location {
  margin: 0.5rem 0;
  font-size: 0.85rem;
}

.footer-links {
  margin: 0.75rem 0;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
}
.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  margin: 0.5rem 0;
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
}
.footer-contact a:hover {
  color: var(--white);
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3rem 0; }

  .site-nav-links a:not(.btn) { display: none; }

  .hero { padding: 3rem 0 4rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }

  .value-grid { grid-template-columns: 1fr; }
  .cred-points { grid-template-columns: 1fr; gap: 1rem; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .usecase-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .pricing-compare { grid-template-columns: 1fr; }
  .pricing-mid { transform: none; }
  .resources-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }
  .hero { padding: 2.5rem 0 3rem; }
  .faq-item { padding: 1.25rem 1.5rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
}
