@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-darker: #14532d;
  --primary-light: #4ade80;
  --primary-soft: #f0fdf4;
  --primary-border: #bbf7d0;
  --secondary: #14532d;
  --secondary-light: #166534;
  --muted: #64748b;
  --text: #0f172a;
  --text-light: #f8fafc;
  --bg: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(20, 83, 45, 0.04);
  --shadow: 0 4px 6px -1px rgba(20, 83, 45, 0.06), 0 2px 4px -1px rgba(20, 83, 45, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(20, 83, 45, 0.12), 0 6px 12px -2px rgba(20, 83, 45, 0.06);
}

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

html {
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  color: var(--primary-darker);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--primary-border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 100px;
  width: auto;
  display: block;
}

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

.site-nav a {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
  color: #fff !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--primary-border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    width: 100%;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--primary-soft);
  border-bottom: 1px solid var(--primary-border);
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--secondary-light);
}

.breadcrumbs a {
  color: var(--primary-dark);
  font-weight: 500;
}

.breadcrumbs .sep {
  margin: 0 0.4rem;
  opacity: 0.6;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 0 4.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 35%),
              radial-gradient(circle at 20% 90%, rgba(255,255,255,0.08) 0%, transparent 30%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 800px;
}

.hero .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  opacity: 0.95;
  max-width: 680px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero .cta-btn {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}

.hero .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  color: var(--primary-darker);
}

.page-content .hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

/* Page content */
main.container {
  padding-bottom: 3rem;
}

.page-content h1:not(.hero h1) {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1.25rem;
  color: var(--secondary);
}

.page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.page-content p {
  margin-bottom: 1rem;
  color: #334155;
}

.page-content .lead {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin: 1rem 0 1.5rem 1.25rem;
}

.page-content ul li {
  margin-bottom: 0.6rem;
  color: #334155;
}

/* CTA Bar */
.cta-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.05rem;
}

.cta-bar-text strong {
  font-weight: 700;
}

.cta-bar-btn {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.15s;
}

.cta-bar-btn:hover {
  transform: translateY(-2px);
  color: var(--primary-darker);
}

@media (max-width: 640px) {
  .cta-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
  color: #fff;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--secondary);
  line-height: 1.35;
}

.card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 0.75rem;
  line-height: 1.55;
  flex-grow: 1;
}

.card .meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card .meta::before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
}

.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-cta::after {
  content: " →";
  margin-left: 0.3rem;
  transition: transform 0.15s;
}

.card:hover .card-cta::after {
  transform: translateX(3px);
}

/* Order card */
.order-card {
  background: var(--surface);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
  box-shadow: var(--shadow);
}

.order-card h2 {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
  font-size: 1.35rem !important;
}

.order-card p {
  color: #475569;
  margin-bottom: 1rem;
}

.order-card-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.order-card-meta strong {
  color: var(--secondary);
}

/* Inline CTA */
.inline-cta {
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

.inline-cta p {
  color: var(--secondary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Editorial & disclaimer */
.editorial-box {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
}

.editorial-box p {
  margin-bottom: 0.5rem;
  color: #334155;
}

.disclaimer-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* FAQs */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
}

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

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--primary-darker);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.55rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-base p {
  margin-bottom: 0.5rem;
}

/* Misc */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
