/* =========================================
   HELLOSEO BLOG POST SPECIFIKUS STÍLUSOK
   ========================================= */

/* 1. VISSZA LINK */
.post-back-link {
    padding: 1.5rem 0 0;
}
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.back-to-blog:hover {
    gap: 0.75rem;
    color: var(--color-orange-dark);
}
.back-to-blog svg {
    transition: transform 0.2s ease;
}
.back-to-blog:hover svg {
    transform: translateX(-4px);
}

/* 2. HERO / CÍM */
.post-hero {
    padding: 2rem 0 3rem;
    border-bottom: 1px solid var(--color-light-gray);
    margin-bottom: 3rem;
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}
.post-category {
    background: rgba(255, 127, 0, 0.1);
    color: var(--color-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}
.post-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--color-anthracite);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
}
.post-lead {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    max-width: 750px;
    margin: 0;
}

/* 3. TARTALOM & SZERZŐ */
.author-box {
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-orange);
    flex-shrink: 0;
}
.author-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-anthracite);
    margin: 0 0 0.25rem;
}
.author-role {
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.author-info p {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.5;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    max-width: 800px;
}
.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-anthracite);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}
.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-anthracite);
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}
.article-body p {
    margin-bottom: 1.5rem;
}
.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}
.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.article-body a {
    color: var(--color-orange);
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 127, 0, 0.3);
    transition: var(--transition);
}
.article-body a:hover {
    border-bottom-color: var(--color-orange);
}
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.article-body blockquote {
    border-left: 4px solid var(--color-orange);
    padding: 1.25rem 1.5rem;
    background: var(--color-off-white);
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-text-dark);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-anthracite);
    font-size: 0.95rem;
}
.article-body .highlight {
    background: linear-gradient(120deg, rgba(255,127,0,0.15) 0%, rgba(255,127,0,0) 100%);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-weight: 600;
    color: var(--color-anthracite);
}

/* 4. ZÁRÓ CTA */
.post-cta-section {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--color-light-gray);
    margin-top: 4rem;
}
.cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.cta-microcopy {
    color: var(--color-text-dark);
    font-size: 0.9rem;
    margin: 0;
}

/* 5. RESZPONZÍV */
@media (max-width: 768px) {
    .post-hero { padding: 1.5rem 0 2rem; margin-bottom: 2rem; }
    .post-title { font-size: 1.8rem; }
    .post-lead { font-size: 1.05rem; }
    .author-box { flex-direction: column; text-align: center; align-items: center; }
    .cta-wrapper { flex-direction: column; align-items: center; }
    .cta-wrapper .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* =========================================
   11. ZÁRÓ CTA (Final Call-to-Action)
   ========================================= */
.final-cta-section {
  background-color: var(--color-anthracite);
  text-align: center;
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-section h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-text {
  color: #CBD5E0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

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

.cta-microcopy {
  color: #718096;
  font-size: 0.85rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
/* =========================================
   5. LÁBLÉC (Footer)
   ========================================= */
.site-footer {
  background-color: var(--color-anthracite-dark);
  color: #A0AEC0;
  padding: 4rem 0 2rem;
  margin-top: 0rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-orange);
}

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

.footer-links a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

.footer-intro {
  margin-top: 20px;
  font-size: 0.95rem;
}

/* Footer Logo */
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
}

.footer-logo-text .hello { color: #FFFFFF; }
.footer-logo-text .seo { color: var(--color-orange); }

/* Footer Kontakt */
address { font-style: normal; }

.contact-list {
  font-style: normal;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--color-orange);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-anthracite);
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.icon-box svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
}

.icon-box:hover {
  transform: rotateY(180deg);
  background-color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.4;
  opacity: 0.85;
}

.tech-badge {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  white-space: nowrap;
}
/* =========================================
   17. RESPONZÍV SZABÁLYOK (Media Queries)
   ========================================= */
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .timeline {
    flex-direction: row;
    justify-content: space-between;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--color-anthracite);
    z-index: 0;
    opacity: 0.3;
  }
}

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

@media (max-width: 992px) {
  .process-flow { flex-direction: column; }
  .process-arrow {
    display: flex;
    transform: rotate(90deg);
    margin: -0.5rem 0;
  }
  .step-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 39px;
    width: 2px;
    background-color: var(--color-anthracite);
    opacity: 0.3;
    z-index: 0;
  }
  .timeline-card {
    padding-left: 4.5rem;
    padding-top: 1.5rem;
  }
  .step-number {
    left: 20px;
    top: 1.5rem;
  }
  .usp-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { height: 300px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .maintenance-grid { grid-template-columns: repeat(2, 1fr); }
  .maintenance-card.featured {
    grid-column: 1 / -1;
    order: -1;
  }
  .human-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { height: 120px; }
  .logo-icon { width: 50px; height: 50px; }
  .logo-text { font-size: 1.25rem; }
  .logo-subtitle { font-size: 0.7rem; }
  body { padding-top: 100px; }
  
  .target-section,
  .process-section,
  .workflow-section,
  .pricing-section,
  .usp-section,
  .final-cta-section,
  .maintenance-section,
  .faq-pricing-section {
    padding: 4rem 0;
  }
  
  .section-header { margin-bottom: 2.5rem; }
  
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .card-icon-wrapper {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  .icon-orange { width: 24px; height: 24px; }
  .bento-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
  .bento-card p {
    font-size: 0.9rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    order: -1;
    transform: none;
  }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .pricing-maintenance-note {
    flex-direction: column;
    text-align: center;
  }
  .pricing-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-action {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-lg, .btn-outline-white {
    width: 100%;
    max-width: 320px;
  }
  
  .services-hero { padding: 3rem 0; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .integrity-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .category-btn { flex-shrink: 0; }
  .posts-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  .contact-card-icon { margin-right: 1rem; }
  .form-card { padding: 2rem 1.5rem; }
  
  .value-grid,
  .team-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .maintenance-grid { grid-template-columns: 1fr; }
  .maintenance-card.featured { order: -1; }
  .maintenance-info-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .trust-badges { flex-direction: column; }
  .badge { width: 100%; justify-content: center; }
  .process-card h3 { font-size: 1.25rem; }
  .process-card p { font-size: 0.95rem; }
  .feature-list li { font-size: 0.9rem; }
  
  .timeline-card { padding: 1.5rem; padding-left: 4rem; }
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    left: 18px;
  }
  .step-content h3 { font-size: 1.15rem; }
  .step-icon-wrapper { width: 48px; height: 48px; }
  
  .pricing-card { padding: 2rem 1.5rem; }
  .price-block .amount { font-size: 1.8rem; }
  
  .hero-content h1 { font-size: 1.8rem; }
}
/* Trust Badges - FEHÉR DOBOZBAN */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem; /* Ha kell, állíthatod */
}

.badge {
  background: rgba(255, 255, 255, 0.95) !important; /* Fehér háttér, majdnem teljesen opak */
  border: 1px solid var(--color-light-gray, #EDF2F7) !important;
  padding: 0.6rem 1rem !important;
  border-radius: var(--radius-sm, 4px);
  font-size: 0.9rem;
  color: var(--color-anthracite, #2D3748);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Finom árnyék a jobb láthatóságért */
}

.badge .check {
  color: var(--color-orange, #FF7F00);
  font-weight: 700;
  }