/* ============================================================
   DirectEatz — Static Marketing/Blog Stylesheet
   Contains ALL rules from landing, features, privacy, delete,
   blog listing, blog article, and about pages.
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1d1d1b;
  background-color: #faf9f7;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

/* ---------- Keyframes ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LANDING LAYOUT — Nav + Footer
   ============================================================ */
.ll-page {
  min-height: 100vh;
  background-color: #faf9f7;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1d1d1b;
  overflow-x: hidden;
}

/* Nav */
.ll-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background-color: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0eeea;
}
@media (max-width: 768px) {
  .ll-nav { padding: 1rem 1.25rem; }
}
@media (max-width: 420px) {
  .ll-nav { padding: 0.75rem 1rem; }
}
.ll-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: #1d1d1b;
}
.ll-nav-logo-image {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.ll-nav-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (max-width: 420px) {
  .ll-nav-logo-text { display: none; }
}
.ll-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .ll-nav-links { gap: 1.25rem; }
}
@media (max-width: 420px) {
  .ll-nav-links { gap: 0.75rem; }
}
.ll-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s;
}
.ll-nav-link:hover { color: #1d1d1b; }
.ll-nav-link-accent {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b8965f;
  text-decoration: none;
  transition: color 0.2s;
}
.ll-nav-link-accent:hover { color: #9e7d49; }

/* Main content area */
.ll-main {
  padding-top: 4.5rem;
}

/* Footer */
.ll-footer {
  background-color: #1d1d1b;
  color: #f5f3ef;
  padding: 4rem 2rem 2rem;
}
.ll-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .ll-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .ll-footer-inner { grid-template-columns: 1fr; }
}
.ll-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ll-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f5f3ef;
}
.ll-footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
}
.ll-footer-desc {
  font-size: 0.875rem;
  color: #a8a6a0;
  line-height: 1.7;
  max-width: 20rem;
}
.ll-footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a8a6a0;
  margin-bottom: 1.25rem;
}
.ll-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ll-footer-link {
  font-size: 0.875rem;
  color: #f5f3ef;
  text-decoration: none;
  transition: color 0.2s;
}
.ll-footer-link:hover { color: #d4c5a8; }
.ll-footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #a8a6a0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1d1d1b;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,29,27,0.85) 0%, rgba(29,29,27,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  animation: fadeIn 1s ease-out;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4c5a8;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: #f5f3ef;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .hero-headline { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
}
.hero-headline-accent {
  color: #b8965f;
}
.hero-subtitle {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: #a8a6a0;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero-subtitle { font-size: 1rem; }
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background-color: #b8965f;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s;
}
.hero-btn-primary:hover {
  background-color: #9e7d49;
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: #f5f3ef;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: border-color 0.3s, color 0.3s;
}
.hero-btn-secondary:hover {
  border-color: #f5f3ef;
}
.hero-actions-secondary {
  margin-top: 1rem;
  text-align: center;
}
.hero-text-link {
  color: #a8a6a0;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 166, 160, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-text-link:hover {
  color: #f5f3ef;
  border-color: #f5f3ef;
}

/* ============================================================
   GET STARTED SECTION
   ============================================================ */
.gs-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #faf9f7 0%, #f5f3ef 100%);
}
.gs-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.gs-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.gs-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b8965f;
  margin-bottom: 1rem;
}
.gs-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1d1d1b;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .gs-title { font-size: 2rem; }
}
.gs-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555555;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}
.gs-steps {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 768px) {
  .gs-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.gs-step {
  padding: 0 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .gs-step { padding: 0; }
}
.gs-step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #b8965f;
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
}
.gs-step-content {}
.gs-step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1d1d1b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.gs-step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #555555;
  font-weight: 400;
}
.gs-step-divider {
  width: 1px;
  height: 4rem;
  background: linear-gradient(180deg, #d4c5a8, transparent);
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .gs-step-divider { display: none; }
}
.gs-cta-row {
  text-align: center;
  margin-top: 4rem;
}
.gs-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #b8965f;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s, transform 0.2s;
}
.gs-cta-btn:hover {
  background-color: #9e7d49;
  transform: translateY(-1px);
}

/* ============================================================
   FEATURES SECTION (landing)
   ============================================================ */
.fs-section {
  padding: 6rem 2rem;
  background-color: #faf9f7;
}
.fs-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.fs-header {
  text-align: center;
  margin-bottom: 5rem;
}
.fs-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b8965f;
  margin-bottom: 1rem;
}
.fs-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1d1d1b;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .fs-title { font-size: 2rem; }
}
.fs-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555555;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}
.fs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .fs-grid { grid-template-columns: 1fr; }
}
.fs-card {
  background-color: #ffffff;
  border: 1px solid #f0eeea;
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.fs-card:hover {
  border-color: #d4c5a8;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .fs-card { padding: 1.75rem; }
}
.fs-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1d1d1b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.fs-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.fs-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fs-highlight-item {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1d1d1b;
  padding-left: 1.25rem;
  position: relative;
}
.fs-highlight-item::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: #b8965f;
}
.fs-cta-row {
  text-align: center;
  margin-top: 4rem;
}
.fs-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8965f;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #d4c5a8;
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}
.fs-cta-link:hover {
  color: #9e7d49;
  border-color: #9e7d49;
}
.fs-what-we-dont {
  margin-top: 5rem;
  background-color: #f5f3ef;
  padding: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .fs-what-we-dont { padding: 2rem 1.5rem; }
}
.fs-dont-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1d1b;
  margin-bottom: 1rem;
}
.fs-dont-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .fs-dont-list { flex-direction: column; gap: 1rem; }
}
.fs-dont-item {
  font-size: 0.9375rem;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fs-dont-x {
  color: #b8965f;
  font-weight: 700;
  font-size: 1.125rem;
}

/* ============================================================
   BLOG PREVIEW SECTION (landing)
   ============================================================ */
.bps-section {
  padding: 6rem 2rem;
  background-color: #f5f3ef;
}
.bps-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.bps-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .bps-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
.bps-header-left {}
.bps-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b8965f;
  margin-bottom: 0.75rem;
}
.bps-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .bps-title { font-size: 1.875rem; }
}
.bps-view-all {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #b8965f;
  text-decoration: none;
  border-bottom: 1px solid #d4c5a8;
  padding-bottom: 0.1875rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.bps-view-all:hover {
  color: #9e7d49;
  border-color: #9e7d49;
}
.bps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .bps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bps-grid { grid-template-columns: 1fr; }
}
.bps-card {
  display: block;
  background-color: #ffffff;
  border: 1px solid #f0eeea;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.bps-card:hover {
  border-color: #d4c5a8;
  transform: translateY(-3px);
}
.bps-card-image {
  display: block;
  width: 100%;
  height: 14rem;
  object-fit: cover;
  background-color: #f0eeea;
}
.bps-card-body {
  padding: 1.5rem;
}
.bps-card-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b8965f;
  margin-bottom: 0.5rem;
}
.bps-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1d1d1b;
  margin-bottom: 0.5rem;
}
.bps-card-excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 0.75rem;
}
.bps-card-meta {
  font-size: 0.8125rem;
  color: #777777;
}
.bps-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b8965f;
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  background-color: #1d1d1b;
  overflow: hidden;
  text-align: center;
}
.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,29,27,0.9) 0%, rgba(29,29,27,0.6) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4c5a8;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: #f5f3ef;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .cta-title { font-size: 2rem; }
}
.cta-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #a8a6a0;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background-color: #b8965f;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s;
}
.cta-btn-primary:hover {
  background-color: #9e7d49;
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: #f5f3ef;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: border-color 0.3s, color 0.3s;
}
.cta-btn-secondary:hover {
  border-color: #f5f3ef;
}
.cta-actions-secondary {
  margin-top: 1.25rem;
  text-align: center;
}
.cta-text-link {
  color: #a8a6a0;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 166, 160, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-text-link:hover {
  color: #f5f3ef;
  border-color: #f5f3ef;
}

/* ============================================================
   FEATURES PAGE (features.tsx)
   ============================================================ */
.fp-body {
  min-height: 100vh;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.fp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1.5rem;
  border-bottom: 1px solid #ededed;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.fp-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}
.fp-header-link {
  color: #008ec5;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.fp-header-link:hover { text-decoration: underline; }
.fp-hero {
  padding: 4rem 1.5rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}
.fp-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1d1d1b;
  margin-bottom: 0.5rem;
}
.fp-hero p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #555555;
}
.fp-layout {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  padding: 0 1.5rem 6rem;
}
@media (max-width: 768px) {
  .fp-layout { flex-direction: column; }
}
.fp-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 5rem;
  align-self: start;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  padding: 8px 0;
}
@media (max-width: 768px) {
  .fp-sidebar { display: none; }
}
.fp-sidebar-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.82rem;
  color: #1d1d1b;
  text-decoration: none;
  transition: all 0.1s;
  border-radius: 6px;
}
.fp-sidebar-item:hover {
  background: rgba(0, 142, 197, 0.08);
  color: #008ec5;
}
.fp-sidebar-item-active {
  background: rgba(0, 142, 197, 0.12);
  color: #008ec5;
  font-weight: 700;
}
.fp-content {
  flex: 1;
  min-width: 0;
}
.fp-section-block {
  margin-bottom: 48px;
}
.fp-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1d1d1b;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ededed;
}
.fp-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1d1d1b;
  padding: 12px 16px;
  background: rgba(0, 142, 197, 0.1);
  border-radius: 8px;
  border-left: 3px solid #008ec5;
  margin-bottom: 20px;
}
.fp-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d1d1b;
  margin-top: 24px;
  margin-bottom: 8px;
}
.fp-paragraph {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 12px;
}
.fp-list {
  margin: 8px 0 16px;
  padding-left: 20px;
}
.fp-list-item {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 6px;
}
.fp-note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #008ec5;
  padding: 10px 14px;
  background: rgba(0, 142, 197, 0.05);
  border-radius: 6px;
  border-left: 3px solid #008ec5;
  margin-bottom: 12px;
}
.fp-warning {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #c00;
  padding: 10px 14px;
  background: #fff0f0;
  border-radius: 6px;
  border-left: 3px solid #c00;
  margin-bottom: 12px;
}
.fp-list {
  margin: 8px 0 16px;
  padding-left: 20px;
}
.fp-list li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 6px;
}
.fp-note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #008ec5;
  padding: 10px 14px;
  background: rgba(0, 142, 197, 0.08);
  border-radius: 6px;
  border-left: 3px solid #008ec5;
  margin-bottom: 12px;
}
.fp-warning {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #c00;
  padding: 10px 14px;
  background: #fff0f0;
  border-radius: 6px;
  border-left: 3px solid #c00;
  margin-bottom: 12px;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-body {
  padding: 4rem;
  overflow: scroll;
}

/* ============================================================
   DELETE ACCOUNT PAGE
   ============================================================ */
.delete-body {
  min-height: 100vh;
  width: 90%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  height: 100vh;
}
.delete-section-container {
  overflow: scroll;
}
.delete-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================================
   BLOG LAYOUT
   ============================================================ */
.blog-page {
  min-height: 100vh;
  background-color: #ffffff;
}

/* ============================================================
   BLOG — ARTICLE CARD
   ============================================================ */
.ac-card {
  display: block;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ac-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.ac-image {
  display: block;
  width: 100%;
  height: 12rem;
  object-fit: cover;
  background-color: #e5e7eb;
}
.ac-body {
  padding: 1.25rem;
}
.ac-category {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.ac-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1d23;
  margin-bottom: 0.5rem;
}
.ac-excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.ac-meta {
  font-size: 0.8125rem;
  color: #6b7280;
}
.ac-read-more {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================================
   BLOG — ARTICLE LAYOUT
   ============================================================ */
.article-layout {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* ============================================================
   BLOG — ARTICLE HEADER
   ============================================================ */
.article-header {
  margin-bottom: 2rem;
}
.article-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1d23;
  margin-bottom: 1rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* ============================================================
   BLOG — PARAGRAPH
   ============================================================ */
.blog-paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a1d23;
  margin-bottom: 1.5rem;
}

/* ============================================================
   BLOG — SECTION HEADING (h2)
   ============================================================ */
.blog-heading-h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1d23;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* ============================================================
   BLOG — SUB HEADING (h3)
   ============================================================ */
.blog-heading-h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1d23;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* ============================================================
   BLOG — TABLE OF CONTENTS
   ============================================================ */
.blog-toc {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.blog-toc-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-toc-item {
  margin-bottom: 0.5rem;
}
.blog-toc-link {
  font-size: 1rem;
  color: #2563eb;
  text-decoration: none;
  cursor: pointer;
}
.blog-toc-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ============================================================
   BLOG — HERO IMAGE
   ============================================================ */
.blog-hero-image {
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.blog-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  background-color: #e5e7eb;
}
.blog-hero-caption {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

/* ============================================================
   BLOG — INTERNAL LINK
   ============================================================ */
.blog-internal-link {
  color: #2563eb;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.27);
  text-underline-offset: 3px;
  font-weight: 500;
  transition: text-decoration-color 0.2s;
}
.blog-internal-link:hover {
  text-decoration-color: #2563eb;
}

/* ============================================================
   BLOG — SUMMARY / CONCLUSION
   ============================================================ */
.blog-summary {
  background-color: #f9fafb;
  border-left: 4px solid #2563eb;
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.blog-summary-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.blog-summary-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a1d23;
}

/* ============================================================
   BLOG — CALLOUT / CTA
   ============================================================ */
.blog-cta {
  background-color: #2563eb;
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.blog-cta-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.blog-cta-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.blog-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #2563eb;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================================
   BLOG — DIVIDER (hr in articles)
   ============================================================ */
.blog-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2.5rem 0;
}

/* ============================================================
   BLOG LISTING PAGE (recursos/index.tsx)
   ============================================================ */
.blog-listing-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.blog-listing-header {
  margin-bottom: 3rem;
}
.blog-listing-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1d23;
  margin-bottom: 0.75rem;
}
.blog-listing-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 36rem;
}
.blog-listing-search {
  margin-top: 1.5rem;
}
.blog-listing-search-input {
  width: 100%;
  max-width: 24rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
  color: #1a1d23;
  outline: none;
  box-sizing: border-box;
}
.blog-listing-featured-section {
  margin-bottom: 4rem;
}
.blog-listing-featured-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  margin-bottom: 1rem;
}
.blog-listing-featured {
  display: block;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.blog-listing-featured:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.blog-listing-featured-image {
  display: block;
  width: 100%;
  height: 18rem;
  object-fit: cover;
  background-color: #e5e7eb;
}
.blog-listing-featured-body {
  padding: 2rem;
}
.blog-listing-featured-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1d23;
  margin-bottom: 0.75rem;
}
.blog-listing-featured-excerpt {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1rem;
}
.blog-listing-featured-meta {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.blog-listing-read-more {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.blog-listing-latest-section {
  margin-bottom: 3rem;
}
.blog-listing-latest-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1d23;
  margin-bottom: 1.5rem;
}
.blog-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-listing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   ABOUT PAGE (daniel-lauziere)
   ============================================================ */
.about-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.about-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1d23;
  margin-bottom: 0.5rem;
}
.about-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 2rem;
}
.about-body-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.25rem;
}
.about-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1d23;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.about-placeholder {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #6b7280;
  font-style: italic;
}

/* ============================================================
   TYPOGRAPHY HELPERS (from Typography component)
   ============================================================ */
.typo-h1 { font-size: 2rem; font-weight: 800; }
.typo-h2 { font-size: 1.75rem; font-weight: 700; }
.typo-h3 { font-size: 1.5rem; font-weight: 700; }
.typo-h4 { font-size: 1.25rem; font-weight: 600; }
.typo-h5 { font-size: 1.125rem; font-weight: 600; }
.typo-h6 { font-size: 1rem; font-weight: 400; }
.typo-bold { font-weight: 700; }
.typo-bolder { font-weight: 800; }
.typo-light { font-weight: 400; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .hide-mobile { display: none; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none; }
}
