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

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f9fafb;
  color: #111827;
  font-size: 16px;
  line-height: 1.5;
}

/* HOMEPAGE SPECIFIC - Don't apply flex centering to homepage */
body.homepage {
  display: block;
  height: auto;
  background-color: #f8fafc;
}

/* Auth pages centering */
body.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* App layout pages */
body.app-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

a {
  color: #4f6df5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HOMEPAGE HEADER & NAVIGATION */
.homepage-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.homepage-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.homepage-logo {
  font-size: 24px;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
}

.homepage-logo span {
  color: #1e40af;
}

.homepage-nav-links {
  display: flex;
  list-style: none;
}

.homepage-nav-links li {
  margin-left: 30px;
}

.homepage-nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: color 0.3s ease;
}

.homepage-nav-links a:hover {
  color: #3b82f6;
  text-decoration: none;
}

.homepage-nav-links .sign-in {
  color: #3b82f6;
}

.homepage-nav-links .sign-up {
  background-color: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.homepage-nav-links .sign-up:hover {
  background-color: #2563eb;
  text-decoration: none;
}

/* HOMEPAGE CONTAINER */
.homepage-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HOMEPAGE SECTIONS */
.hero {
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.homepage-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.homepage-btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: #3b82f6;
  color: white;
  border: 1px solid #3b82f6;
}

.btn-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

.btn-secondary {
  background-color: white;
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.btn-secondary:hover {
  background-color: #eff6ff;
}

/* Value Proposition Section */
.value-prop {
  padding: 80px 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.value-card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #3b82f6;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e293b;
}

.value-card p {
  color: #64748b;
  font-size: 16px;
}

/* Use Case Section */
.use-cases {
  padding: 80px 0;
  background-color: #f8fafc;
}

.use-case-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.use-case-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-image {
  height: 200px;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-image img {
  max-width: 100%;
  max-height: 100%;
}

.use-case-content {
  padding: 24px;
}

.use-case-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
}

.use-case-content p {
  color: #64748b;
  margin-bottom: 20px;
}

.use-case-content a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.use-case-content a:hover {
  text-decoration: underline;
}

.use-case-content a span {
  margin-left: 6px;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: white;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.step {
  text-align: center;
  max-width: 400px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: #3b82f6;
}

.step h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.step p {
  color: #64748b;
}

.step-arrow {
  font-size: 32px;
  color: #94a3b8;
}

/* Humor Section Styles */
.humor {
  padding: 60px 0;
  background-color: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.break-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .break-scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .break-scenarios-grid {
    grid-template-columns: 1fr;
  }
}

.break-scenario-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.break-scenario-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.scenario-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
}

.scenario-icon.coffee {
  background-color: #4f6df5;
}

.scenario-icon.tv {
  background-color: #10b981;
}

.scenario-icon.elevator {
  background-color: #f59e0b;
}

.scenario-icon.bathroom {
  background-color: #8b5cf6;
}

.scenario-image {
  height: 180px;
  overflow: hidden;
}

.scenario-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.break-scenario-card:hover .scenario-image img {
  transform: scale(1.1);
}

.scenario-content {
  padding: 20px;
  position: relative;
}

.scenario-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 10px 0;
}

.scenario-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f1f5f9;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}

.testimonial-dashboard-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content {
  position: relative;
  padding-left: 40px;
}

.testimonial-icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
  font-size: 24px;
  opacity: 0.6;
}

.testimonial-content p {
  font-size: 20px;
  line-height: 1.5;
  color: #334155;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f1f5f9;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 10px;
}

.testimonial-stats {
  display: flex;
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #3b82f6;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
}

/* Time Saving Section */
.time-saving {
  padding: 80px 0;
  background-color: white;
}

.time-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.time-card {
  flex: 1;
  max-width: 400px;
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.time-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.time-card h3 span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e11d48;
  margin-right: 12px;
  display: inline-block;
}

.time-card.after h3 span {
  background-color: #10b981;
}

.time-card p {
  color: #64748b;
  font-size: 16px;
}

.timer {
  text-align: center;
  margin: 30px 0;
}

.timer p {
  font-size: 20px;
  color: #475569;
  margin-bottom: 12px;
}

.timer .counter {
  font-size: 48px;
  font-weight: 700;
  color: #3b82f6;
}

/* Get Started Section */
.get-started {
  padding: 80px 0;
  background-color: #f8fafc;
}

.start-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
}

.start-step {
  flex: 1;
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.start-step-number {
  width: 40px;
  height: 40px;
  background-color: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
}

.start-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.start-step p {
  color: #64748b;
  margin-bottom: 20px;
}

.start-step-image {
  height: 200px;
  width: 100%;
  background-color: #e2e8f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.start-step-image img {
  max-width: 100%;
  max-height: 100%;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background-color: #1e40af;
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto 30px;
}

.final-cta .btn-primary {
  background-color: white;
  color: #1e40af;
  border: none;
  font-size: 18px;
  padding: 14px 30px;
}

.final-cta .btn-primary:hover {
  background-color: #eff6ff;
}

.time-spent {
  margin-top: 30px;
  font-size: 14px;
  color: #bfdbfe;
  font-style: italic;
}

/* Homepage Footer */
.homepage-footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 30px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-logo span {
  color: #60a5fa;
}

.footer-tagline {
  color: #cbd5e1;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-column ul a:hover {
  color: #60a5fa;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 14px;
}

.footer-user-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-box i {
  color: #60a5fa;
}

.user-box span {
  color: #cbd5e1;
  font-size: 14px;
}

/* ORIGINAL STYLES BELOW - LEAVE THESE INTACT FOR OTHER PAGES */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Login/Signup Card */
.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 450px;
  width: 100%;
}

.auth-card {
  text-align: left;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #6b7280;
}

/* Header Section */
.title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  margin-top: 0;
}

/* Buttons Section */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  border: none;
}

.btn:hover {
  text-decoration: none;
}

.btn.primary {
  background-color: #4f6df5;
  color: white;
}

.btn.primary:hover {
  background-color: #3e5bd8;
}

.btn.secondary {
  background-color: white;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn.secondary:hover {
  background-color: #f9fafb;
}

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

.btn-outline {
  background-color: transparent;
  color: #4f6df5;
  border: 1px solid currentColor;
}

.btn-outline:hover {
  background-color: rgba(79, 109, 245, 0.05);
}

/* Why Use Social AI Section */
.why-use {
  text-align: left;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.divider span {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

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

.features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.features .icon {
  font-size: 1rem;
  color: #4f6df5;
  margin-top: 3px;
}

.features p {
  font-size: 1rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

/* Form Elements */
.form {
  margin-bottom: 1.5rem;
}

.wide-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: #4f6df5;
  box-shadow: 0 0 0 3px rgba(79, 109, 245, 0.15);
}

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

.forgot-password {
  display: block;
  text-align: right;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.auth-footer {
  margin-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Application Layout */
.sidebar {
  width: 250px;
  background-color: white;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #111827;
}

.sidebar-menu {
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}

.sidebar-menu li {
  margin-bottom: 0.25rem;
}

.sidebar-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #6b7280;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.sidebar-menu a:hover {
  background-color: #f9fafb;
  color: #111827;
  text-decoration: none;
}

.sidebar-menu li.active a {
  background-color: rgba(79, 109, 245, 0.1);
  color: #4f6df5;
  border-right: 3px solid #4f6df5;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.content-header h1 {
  margin: 0;
  font-size: 1.75rem;
  color: #111827;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.card-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #111827;
}

.card-body {
  padding: 1.5rem;
}

.card-body .stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card-body p {
  color: #6b7280;
  margin: 0;
}

.card-footer {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: right;
}

.link-button {
  color: #4f6df5;
  font-weight: 500;
}

.placeholder-chart {
  height: 100px;
  background-color: #f3f4f6;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.activity-feed {
  padding: 0;
}

.activity-item {
  padding: 0.75rem 0;
  display: flex;
  border-bottom: 1px solid #f3f4f6;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-date {
  font-size: 0.875rem;
  color: #6b7280;
  width: 60px;
  flex-shrink: 0;
}

.activity-item p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Personas Grid */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.persona-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.persona-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.persona-avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  flex-shrink: 0;
}

.persona-header h3 {
  margin: 0;
  font-size: 1.125rem;
}

.persona-body {
  padding: 0 1.5rem;
  flex: 1;
}

.persona-description {
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.persona-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.persona-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
}

.add-persona {
  border: 2px dashed #e5e7eb;
  background-color: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.add-persona-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #6b7280;
}

.add-persona-content:hover {
  text-decoration: none;
  color: #4f6df5;
}

.add-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  border-radius: 30px;
  margin-bottom: 1rem;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.content-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-card-header {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
}

.content-persona {
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.content-type {
  color: #6b7280;
  font-size: 0.85rem;
}

.content-card-body {
  padding: 1.5rem;
  min-height: 120px;
}

.content-card-footer {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Responsive Styles for Homepage */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }
  
  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .value-cards {
    grid-template-columns: 1fr;
  }
  
  .time-comparison {
    flex-direction: column;
  }
  
  .start-steps {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-user-info {
    flex-direction: column;
    gap: 10px;
  }

  .homepage-nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}