/* Move Mouse Custom Section Micro-Styles */

:root {
  --primary-accent: #2563eb;
  --secondary-accent: #1e293b;
  --card-border: #e2e8f0;
  --card-bg: #ffffff;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* Section Header Styling */
.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-header h2 {
  font-weight: 700;
  color: #0f172a;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
}

.section-header p {
  color: #64748b;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.feature-card .feature-icon {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Advantages Styling */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.advantage-card {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--card-shadow);
}

.advantage-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.advantage-card p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* How-to / Steps List */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #1e293b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* FAQ Accordion Styling */
.faq-container {
  margin: 2rem 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Trust / E-E-A-T Verification Box */
.trust-verification-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.trust-verification-box .trust-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #166534;
  font-weight: 700;
  font-size: 1.15rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  font-size: 0.9rem;
}

.trust-item {
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #dcfce7;
}

.trust-label {
  font-size: 0.8rem;
  color: #15803d;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.trust-val {
  font-family: monospace;
  font-size: 0.85rem;
  color: #1e293b;
  word-break: break-all;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  text-align: left;
}

.comparison-table th {
  background: #1e293b;
  color: #ffffff;
  padding: 1rem;
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.92rem;
  color: #334155;
}

.comparison-table tr:hover td {
  background-color: #f8fafc;
}

.check-yes {
  color: #16a34a;
  font-weight: bold;
}

.check-no {
  color: #dc2626;
  font-weight: bold;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #1e293b;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #2563eb;
}

.blog-card-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.85rem;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
}
