/* lemonade.legal — Main Stylesheet */
:root {
  --lemon: #F5C518;
  --lemon-light: #FFF8DC;
  --lemon-bg: #FFFEF5;
  --navy: #1B2A4A;
  --navy-light: #2C3E50;
  --accent: #2E86AB;
  --warm-white: #FEFCF3;
  --text: #2C3E50;
  --text-light: #5D6D7E;
  --green: #27AE60;
  --red: #E74C3C;
  --border: #E8E4D9;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 30px rgba(0,0,0,0.1);
  --radius: 12px;
  --max-w: 1100px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  font-size: 17px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.logo span { color: var(--lemon); }
.logo em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-light);
  font-size: 14px;
  margin-left: 4px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
nav ul li a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
nav ul li a:hover { color: var(--accent); text-decoration: none; }
.nav-cta {
  background: var(--lemon);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #E5B216;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* ─── HERO ─── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, white 0%, var(--lemon-bg) 100%);
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .highlight {
  color: var(--lemon);
  position: relative;
}
.hero .subtitle {
  font-size: 21px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--lemon);
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.2s;
  border: 2px solid var(--lemon);
}
.btn-primary:hover {
  background: #E5B216;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--navy);
  text-decoration: none;
}
.hero .credibility {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-light);
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--navy);
  padding: 32px 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  color: white;
}
.stat .number {
  font-size: 32px;
  font-weight: 800;
  color: var(--lemon);
}
.stat .label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 4px;
}

/* ─── SECTIONS ─── */
section { padding: 80px 0; }
section:nth-child(even) { background: white; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── WHAT'S INSIDE ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.feature-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── CATEGORIES ─── */
.categories-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  transition: all 0.2s;
}
.category-item:hover {
  border-color: var(--lemon);
  box-shadow: var(--shadow);
}
.category-item .cat-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.category-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.category-item .count {
  font-size: 13px;
  color: var(--text-light);
}

/* ─── HOW IT WORKS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  text-align: center;
}
.step .step-num {
  width: 48px;
  height: 48px;
  background: var(--lemon);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--text-light);
}

/* ─── PRICING ─── */
.pricing-card {
  background: white;
  border: 2px solid var(--lemon);
  border-radius: 16px;
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing-card .price {
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
}
.pricing-card .price-note {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card ul li {
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.blog-card .card-body { padding: 24px; }
.blog-card .tag {
  display: inline-block;
  background: var(--lemon-light);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── BLOG POST ─── */
.post { padding: 60px 0; }
.post-header { margin-bottom: 40px; }
.post-header h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.post-meta {
  font-size: 14px;
  color: var(--text-light);
}
.post-content {
  max-width: 720px;
}
.post-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
}
.post-content p {
  margin-bottom: 20px;
}
.post-content .callout {
  background: var(--lemon-light);
  border-left: 4px solid var(--lemon);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.post-content .cta-box {
  background: var(--navy);
  color: white;
  padding: 32px;
  border-radius: var(--radius);
  margin: 40px 0;
  text-align: center;
}
.post-content .cta-box h3 {
  color: var(--lemon);
  font-size: 22px;
  margin-bottom: 12px;
}
.post-content .cta-box p {
  color: #ccc;
  margin-bottom: 20px;
}

/* ─── TOOLKIT ─── */
.toolkit-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--lemon-light) 0%, var(--warm-white) 100%);
}
.toolkit-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.toolkit-features {
  text-align: left;
  max-width: 560px;
  margin: 32px auto;
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.toolkit-features li {
  padding: 8px 0;
  font-size: 16px;
  list-style: none;
}
.toolkit-features li::before {
  content: "🍋 ";
}
.email-form {
  max-width: 480px;
  margin: 32px auto 0;
  display: flex;
  gap: 8px;
}
.email-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}
.email-form input:focus { border-color: var(--lemon); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: white;
  padding: 60px 0 32px;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}
footer .footer-brand .logo { color: white; }
footer .footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 8px;
  max-width: 300px;
}
footer .footer-links h4 {
  color: var(--lemon);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
footer .footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  padding: 4px 0;
}
footer .footer-links a:hover { color: white; }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero .subtitle { font-size: 18px; }
  .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .categories-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .stats-bar .container { gap: 32px; }
  nav ul { gap: 16px; }
  nav ul li:not(:last-child) { display: none; }
  .hero .cta-group { flex-direction: column; align-items: center; }
  .email-form { flex-direction: column; }
  footer .footer-top { flex-direction: column; }
}
