:root {
  --primary-color: #0066cc;
  --primary-hover: #0052a3;
  --success-color: #28a745;
  --background-color: #ffffff;
  --surface-color: #f8f9fa;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --border-color: #dee2e6;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 9999;
  border-radius: 4px;
  font-weight: 500;
}

.skip-link:focus {
  top: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--surface-color);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-success {
  background-color: var(--success-color);
  color: white;
  border-color: var(--success-color);
}

.btn-success:hover {
  background-color: #1f9a5a;
  border-color: #1f9a5a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  position: absolute;
  left: 1rem;
}

.logo {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* Dropdown Styles - Simplified */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
  list-style: none;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--surface-color);
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: 0.3s;
}

.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.review-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.review-text:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.trusted-by {
  padding: 4rem 0;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
}

.trusted-by .section-header {
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s;
}

.trusted-logos img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.features {
  padding: 5rem 0;
  background: var(--background-color);
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.section-footer .btn {
  margin: 0.5rem;
}

/* CTA Section specific styles */
#cta .section-footer {
  border-top: none;
  margin-top: 2rem;
}

#cta .section-footer div {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

#cta .section-footer .btn {
  margin: 0;
  min-width: 140px;
}

.pricing {
  padding: 5rem 0;
  background: var(--surface-color);
}

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

.pricing-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 500;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.25rem;
  color: var(--text-secondary);
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

.faq {
  padding: 5rem 0;
  background: var(--background-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer {
  background-color: var(--text-primary);
  color: white;
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links span {
  color: #94a3b8;
  margin-right: 1rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  color: #64748b;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-badges {
    flex-direction: column;
    gap: 1rem;
  }

  .trusted-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trusted-logos img {
    width: 120px;
    height: 60px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    order: -1;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links a {
    margin: 0;
  }

  /* Breadcrumb mobile styles */
  .breadcrumb {
    padding: 0.75rem 0;
  }

  .breadcrumb-list {
    font-size: 0.8rem;
    gap: 0.25rem;
  }

  .breadcrumb-item:not(:last-child)::after {
    margin-left: 0.25rem;
  }

  /* Mobile dropdown styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 0.5rem;
    min-width: auto;
  }

  .dropdown-toggle {
    justify-content: center;
  }

  .dropdown-menu a {
    padding: 0.5rem 1rem;
    text-align: center;
    border: none;
  }

  .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--primary-color);
  }

  /* CTA section mobile styles */
  #cta .section-footer div {
    flex-direction: column;
    align-items: center;
  }

  #cta .section-footer .btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .feature-card,
  .pricing-card {
    padding: 1.5rem;
  }

  /* Breadcrumb mobile styles */
  .breadcrumb {
    padding: 0.5rem 0;
  }

  .breadcrumb-list {
    font-size: 0.75rem;
  }
}

.feed-showcase {
  padding: 5rem 0;
  background: var(--surface-color);
}

.feed-img {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feed-image-wrapper {
  text-align: center;
}

.feed-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feed-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feed-image-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feed-image-wrapper p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Breadcrumb Styles */
.breadcrumb {
  background-color: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  margin-top: 70px; /* Account for fixed navbar */
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.breadcrumb-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.breadcrumb-current .breadcrumb-text {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== Articles Styles ===== */

/* Articles Section - Simplified */
.articles-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.articles-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.articles-hero .hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.articles-section {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.articles-header {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.article-item {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-item-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.article-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--surface-color);
}

.article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-item:hover .article-thumbnail img {
  transform: scale(1.05);
}

.article-brief {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.6em;
}

.article-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
  margin-top: auto;
}

.article-author,
.article-date,
.reading-time {
  font-weight: 500;
}

/* Individual Article Page */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
}

.article {
  background: var(--background-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.article-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.article-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.article-featured-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.article-content h1 {
  font-size: 2rem;
}
.article-content h2 {
  font-size: 1.75rem;
}
.article-content h3 {
  font-size: 1.5rem;
}
.article-content h4 {
  font-size: 1.25rem;
}
.article-content h5 {
  font-size: 1.1rem;
}
.article-content h6 {
  font-size: 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary-color);
  background-color: var(--surface-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

.article-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.article-content a:hover {
  color: var(--primary-hover);
}

.article-content code {
  background-color: var(--surface-color);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9rem;
}

.article-content pre {
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-content pre code {
  background: none;
  padding: 0;
}

/* Article Footer */
.article-footer {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--surface-color);
}

.article-share {
  margin-bottom: 2rem;
}

.article-share h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.share-button.twitter {
  background-color: #1da1f2;
  color: white;
}

.share-button.facebook {
  background-color: #1877f2;
  color: white;
}

.share-button.linkedin {
  background-color: #0077b5;
  color: white;
}

.share-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.article-navigation {
  text-align: center;
}

.back-to-articles {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.back-to-articles:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Articles CTA Section */
.articles-cta {
  padding: 4rem 0;
  background-color: var(--surface-color);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .articles-hero .hero-title {
    font-size: 2rem;
  }

  .articles-hero .hero-subtitle {
    font-size: 1rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .article-container {
    padding: 1rem;
  }

  .article-header,
  .article-content,
  .article-footer {
    padding: 1.5rem;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-content h1 {
    font-size: 1.75rem;
  }
  .article-content h2 {
    font-size: 1.5rem;
  }
  .article-content h3 {
    font-size: 1.25rem;
  }

  .share-buttons {
    justify-content: center;
  }

  .article-meta {
    gap: 0.5rem;
    font-size: 0.8rem;
  }
}

/* Social Proof Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-item {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #28a745;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Peace of Mind Promise Styles */
.promise-card {
  border-left: 4px solid #28a745;
}

.promise-guarantee {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #28a745;
  text-align: center;
  margin-top: 3rem;
}

.promise-guarantee h3 {
  color: #28a745;
  margin-bottom: 1rem;
}

.promise-guarantee p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.promise-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.promise-stats > div {
  text-align: center;
}

.promise-stats strong {
  display: block;
  font-size: 1.1rem;
}

.promise-stats small {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Customer Testimonials */
.customer-testimonial {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
}

.testimonial-quote {
  color: #28a745;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-attribution {
  font-size: 0.9rem;
  color: #6c757d;
}

/* 404 Page Styles */
.page-404 {
  text-align: center;
  padding: 8rem 0;
}

.page-404 h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-404 h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-404 p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-404 .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.popular-pages {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.popular-pages h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.popular-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.popular-page-item {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
}

.popular-page-item h4 {
  margin-bottom: 0.5rem;
}

.popular-page-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.popular-page-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Platform-specific Feature Cards */
.platform-feature-card {
  border-left: 4px solid var(--primary-color);
}

.platform-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Platform Colors - Icons only */
.google-color {
  border-color: #4285f4;
}
.bing-color {
  border-color: #00a1f1;
}
.facebook-color {
  border-color: #1877f2;
}
.tiktok-color {
  border-color: #000000;
}
.pinterest-color {
  border-color: #e60023;
}
.snapchat-color {
  border-color: #fffc00;
}

.platform-feature-icon.google-color {
  background: #4285f4;
}
.platform-feature-icon.bing-color {
  background: #00a1f1;
}
.platform-feature-icon.facebook-color {
  background: #1877f2;
}
.platform-feature-icon.tiktok-color {
  background: #000000;
}
.platform-feature-icon.pinterest-color {
  background: #e60023;
}
.platform-feature-icon.snapchat-color {
  background: #fffc00;
  color: black;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .promise-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .page-404 .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
