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

body {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #202124;
  background-color: #ffffff;
}

.app {
  min-height: 100vh;
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e8eaed;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #202124;
  font-weight: 500;
  font-size: 20px;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 120px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #5f6368;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-link:hover {
  color: #202124;
}

.nav-link.active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  text-decoration: none;
  color: #5f6368;
  font-size: 18px;
  transition: color 0.2s;
}

.social-link:hover {
  color: #202124;
}

.get-app-btn {
  background: #1a73e8;
  color: white;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 24px;
  font-weight: 500;
  transition: background 0.2s;
}

.get-app-btn:hover {
  background: #1557b0;
}

/* Hero Section - FIXED */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

/* Remove all the problematic background effects */
.hero::before,
.hero::after {
  display: none;
}

.hero-glow {
  display: none; /* Temporarily disable the glow effect */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  color: #202124;
}

.hero-subtitle {
  font-size: 20px;
  color: #5f6368;
  margin-bottom: 16px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.hero-cta {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Comparison Cards */
.comparison {
  padding: 40px 24px 80px;
  background: #f8f9fa;
}

.comparison-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-container.single-column {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.comparison-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.comparison-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.comparison-card.pro {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
}

.comparison-card.main-feature {
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.pro-badge {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 24px;
  display: inline-block;
}

.comparison-card h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
}

.card-subtitle {
  font-size: 16px;
  color: #5f6368;
  margin-bottom: 32px;
}

.comparison-card.pro .card-subtitle {
  color: rgba(255,255,255,0.8);
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e8eaed;
  position: relative;
  padding-left: 24px;
}

.comparison-card.pro .features-list li {
  border-bottom-color: rgba(255,255,255,0.2);
}

.features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34a853;
  font-weight: bold;
}

.comparison-card.pro .features-list li:before {
  color: #ffffff;
}

.learn-more {
  color: #1a73e8;
  text-decoration: none;
}

.comparison-card.pro .learn-more {
  color: #ffffff;
  text-decoration: underline;
}

/* Features Showcase */
.features-showcase {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
  color: #202124;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-image {
  width: 200px;
  height: 150px;
  margin: 0 auto 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover .feature-image {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: scale(1.05);
}

.feature-icon {
  font-size: 32px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.feature-visual {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.feature-image.customizable {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.feature-image.sharing {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.feature-image.analytics {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.feature-image.analysis {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-image.market {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-image.export {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #202124;
}

.feature-card p {
  color: #5f6368;
  font-size: 16px;
}

/* Pricing Tiers */
.pricing-tiers {
  padding: 80px 24px;
  background: #f8f9fa;
}

.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-link {
  font-size: 20px;
  font-weight: 500;
  color: #1a73e8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: #5f6368;
  font-size: 14px;
}

/* Trust Indicators - FIXED */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 24px;
  background: #f8f9fa;
  flex-wrap: wrap;
}

.trust-indicator {
  text-align: center;
  min-width: 120px;
}

.trust-number {
  font-size: 36px;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 8px;
  display: block;
}

.trust-label {
  color: #5f6368;
  font-size: 14px;
  display: block;
}

/* Testimonials Section - ENSURE PROPER STYLING */
.testimonials-section {
  padding: 80px 24px;
  background: #ffffff;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #e8eaed;
  background: white;
}

.stars {
  color: #fbbc04;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
  display: block;
}

.testimonial-text {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  min-height: 80px;
  display: block;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.testimonial-author strong {
  color: #202124;
  font-weight: 500;
  font-size: 16px;
  display: block;
}

.testimonial-author span {
  color: #5f6368;
  font-size: 14px;
  display: block;
}

/* Use Cases */
.use-cases {
  padding: 80px 24px;
  background: #f8f9fa;
}

.use-cases-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.use-case {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.use-case:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: #e8eaed;
}

.use-case h3 {
  font-size: 20px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 16px;
}

.use-case p {
  color: #5f6368;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Privacy Section */
.privacy-section {
  padding: 80px 24px;
}

.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.privacy-text h2 {
  font-size: 32px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 24px;
  line-height: 1.3;
}

.privacy-text p {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.6;
}

.privacy-illustration {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-section h2 {
  font-size: 32px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 16px;
}

.faq-subtitle {
  color: #5f6368;
  font-size: 16px;
  margin-bottom: 40px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e8eaed;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: #1a73e8;
}

.faq-answer {
  padding-bottom: 24px;
  color: #5f6368;
  line-height: 1.6;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background: #202124;
  color: #e8eaed;
  padding: 60px 24px 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-section a {
  display: block;
  color: #9aa0a6;
  text-decoration: none;
  padding: 8px 0;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #e8eaed;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid #3c4043;
  text-align: center;
  color: #9aa0a6;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 16px 24px;
  }
  
  .nav {
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-glow {
    width: 300px;
    height: 300px;
  }
  
  .comparison-container {
    grid-template-columns: 1fr;
  }
  
  .privacy-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .email-input-container {
    flex-direction: column;
  }
  
  .waitlist-button {
    width: 100%;
  }
  
  .feature-image {
    width: 150px;
    height: 120px;
  }
  
  .feature-icon {
    font-size: 24px;
    top: 15px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Waitlist Section */
.waitlist-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
}

.waitlist-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
}

.email-input-container {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.email-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  color: #202124;
}

.email-input::placeholder {
  color: #5f6368;
}

.waitlist-button {
  padding: 16px 32px;
  background: #202124;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.waitlist-button:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.waitlist-note {
  font-size: 14px;
  opacity: 0.8;
}

.waitlist-success {
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.waitlist-success h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.waitlist-success p {
  opacity: 0.9;
}

/* Analysis Card Visuals */
.feature-image.analysis {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.chart-bar {
  width: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: chartGrow 2s ease-in-out infinite alternate;
}

.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes chartGrow {
  from { transform: scaleY(0.7); }
  to { transform: scaleY(1); }
}

/* Market Card Visuals */
.feature-image.market {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.map-grid {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px),
              linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 8px 8px;
}

.map-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.map-pin:nth-child(1) { top: 30px; left: 40px; }
.map-pin:nth-child(2) { top: 50px; right: 30px; }
.map-pin:nth-child(3) { bottom: 40px; left: 30px; }

/* Export Card Visuals */
.feature-image.export {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.document-lines {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.document-lines:nth-child(1) { top: 40px; }
.document-lines:nth-child(2) { top: 50px; width: 25px; }
.document-lines:nth-child(3) { top: 60px; width: 35px; }

.excel-logo {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a73e8;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

/* Blog Preview Section */
.blog-preview {
  padding: 80px 24px;
  background: #f8f9fa;
}

.blog-preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.blog-preview-subtitle {
  font-size: 18px;
  color: #5f6368;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.view-all-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Page Placeholder Styles */
.page-placeholder {
  padding: 80px 24px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-placeholder h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #202124;
}

.page-placeholder p {
  font-size: 18px;
  color: #5f6368;
  max-width: 600px;
}

/* Blog Page Styles */
.blog-page {
  min-height: 100vh;
}

.blog-header {
  padding: 80px 24px 40px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.blog-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 600;
}

.blog-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Post Page Styles */
.blog-post-page {
  min-height: 100vh;
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.back-to-blog {
  display: inline-block;
  margin-top: 24px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.back-to-blog:hover {
  text-decoration: underline;
}

/* Fix for Links */
.nav-link.active {
  color: #1a73e8;
  font-weight: 500;
}

/* Reports Card Visuals */
.feature-image.reports {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.document-line {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.document-line:nth-child(2) { top: 40px; }
.document-line:nth-child(3) { top: 50px; width: 25px; }
.document-line:nth-child(4) { top: 60px; width: 35px; }
.document-line.short:nth-child(4) { width: 20px; }

.excel-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a73e8;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

/* Footer Container Fix */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 0 24px;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 36px;
  }
  
  .blog-header p {
    font-size: 16px;
  }
  
  .page-placeholder h1 {
    font-size: 36px;
  }
}

/* Blog Section Styles */
.blog-section {
  padding: 80px 24px;
  background: #f8f9fa;
}

.section-subtitle {
  font-size: 18px;
  color: #5f6368;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

.view-all-link {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
  margin-bottom: 60px;
}

.view-all-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.featured-posts {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.featured-post {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e8eaed;
  position: relative;
}

.featured-post:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.post-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #5f6368;
}

.post-date, .post-read-time {
  display: inline-block;
}

.post-title {
  margin-bottom: 16px;
}

.post-title a {
  color: #202124;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s;
}

.post-title a:hover {
  color: #1a73e8;
}

.post-excerpt {
  color: #5f6368;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.post-author {
  color: #5f6368;
  font-size: 14px;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-tag {
  background: #f1f3f4;
  color: #5f6368;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.read-more {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.read-more:hover {
  color: #1557b0;
  text-decoration: underline;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* Use Case Subtitle */
.use-case-subtitle {
  font-weight: 500;
  color: #1a73e8;
  margin-bottom: 8px;
}

/* Mobile responsive for blog section */
@media (max-width: 768px) {
  .featured-posts {
    grid-template-columns: 1fr;
  }
  
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
