@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0f1e;
  color: #e2e8f0;
  line-height: 1.6;
}

/* ===== BLOG PAGE HEADER ===== */
.blog-page-header {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1b3e 50%, #0a1628 100%);
  padding: 100px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.blog-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.blog-header-badge span {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  display: inline-block;
  animation: blog-pulse 2s infinite;
}

@keyframes blog-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.blog-page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-page-header p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* ===== BLOG MAIN WRAPPER ===== */
.blog-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

/* ===== CATEGORY FILTER BAR ===== */
.blog-filter-bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-filter-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 6px;
  white-space: nowrap;
}

.blog-filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.blog-filter-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  transform: translateY(-1px);
}

.blog-filter-btn.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* ===== BLOG POSTS GRID ===== */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.blog-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blog-card-thumbnail {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card:not(.featured) .blog-card-thumbnail {
  height: 220px;
}

.blog-card.featured .blog-card-thumbnail {
  width: 50%;
  min-height: 320px;
}

.blog-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog-card:hover .blog-card-thumbnail img {
  transform: scale(1.07);
}

.blog-card-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 15, 30, 0.7) 100%);
  pointer-events: none;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-category-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-category-tag.cat-authority { background: rgba(139, 92, 246, 0.2); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }
.blog-category-tag.cat-seo { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.blog-category-tag.cat-pr { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.blog-category-tag.cat-ai { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.blog-category-tag.cat-marketing { background: rgba(236, 72, 153, 0.2); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.3); }
.blog-category-tag.cat-publishing { background: rgba(6, 182, 212, 0.2); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.3); }

.blog-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

.blog-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card.featured .blog-card-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.blog-card:hover .blog-card-title {
  color: #93c5fd;
}

.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  gap: 12px;
  flex-wrap: wrap;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 130, 246, 0.4);
  flex-shrink: 0;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.2;
}

.blog-read-time {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #64748b;
}

.blog-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.blog-read-more-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: translateX(3px);
  color: #ffffff;
}

.blog-read-more-btn svg {
  transition: transform 0.3s ease;
}

.blog-read-more-btn:hover svg {
  transform: translateX(3px);
}

/* ===== PAGINATION ===== */
.blog-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.blog-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(59, 130, 246, 0.5);
  color: #60a5fa;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-load-more-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

.blog-load-more-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: blog-spin 0.8s linear infinite;
}

@keyframes blog-spin {
  to { transform: rotate(360deg); }
}

.blog-load-more-btn.loading .blog-load-more-spinner {
  display: inline-block;
}

.blog-posts-count {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #64748b;
  text-align: center;
  margin-top: 16px;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-sidebar-widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
}

.blog-sidebar-widget-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-sidebar-widget-title svg {
  color: #3b82f6;
}

/* Search Widget */
.blog-search-form {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #e2e8f0;
  outline: none;
}

.blog-search-input::placeholder {
  color: #64748b;
}

.blog-search-input:focus {
  background: rgba(59, 130, 246, 0.08);
}

.blog-search-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-search-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Recent Posts Widget */
.blog-recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.blog-recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-recent-post-item:hover {
  transform: translateX(4px);
}

.blog-recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.blog-recent-post-info {
  flex: 1;
}

.blog-recent-post-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.blog-recent-post-item:hover .blog-recent-post-title {
  color: #60a5fa;
}

.blog-recent-post-date {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #64748b;
}

/* Categories Widget */
.blog-categories-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.blog-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.blog-category-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.blog-category-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
}

.blog-category-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-category-item-count {
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Popular Tags Widget */
.blog-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-tag-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.blog-cta-section {
  background: linear-gradient(135deg, #0d1b3e 0%, #0a0f1e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 20px;
  text-align: center;
}

.blog-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.blog-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.blog-cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-cta-inner h2 span {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-cta-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.7;
}

.blog-cta-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.blog-cta-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.blog-cta-input::placeholder {
  color: #64748b;
}

.blog-cta-input:focus {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.07);
}

.blog-cta-submit-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.blog-cta-submit-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

.blog-cta-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #475569;
  margin-top: 14px;
}

.blog-cta-privacy a {
  color: #60a5fa;
  text-decoration: none;
}

/* ===== HIDDEN CARDS ===== */
.blog-card.blog-hidden-card {
  display: none;
}

.blog-card.blog-hidden-card.blog-card-visible {
  display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .blog-main-wrapper {
    grid-template-columns: 1fr 300px;
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  .blog-main-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    flex-direction: column;
  }

  .blog-card.featured .blog-card-thumbnail {
    width: 100%;
    min-height: 220px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-cta-form {
    flex-direction: column;
  }

  .blog-cta-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-page-header {
    padding: 80px 16px 50px;
  }

  .blog-main-wrapper {
    padding: 40px 16px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .blog-filter-bar {
    padding: 16px;
  }
}

/* ===== NO RESULTS ===== */
.blog-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.blog-no-results.visible {
  display: block;
}

.blog-no-results h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.blog-no-results p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #64748b;
}

      @keyframes blogFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }
    
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@600;700;800&display=swap');

[data-section-id="footer-360webx"] {
  width: 100%;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1b2a 50%, #0f2133 100%);
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

[data-section-id="footer-360webx"] * {
  box-sizing: border-box;
}

[data-section-id="footer-360webx"] .footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

[data-section-id="footer-360webx"] .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-section-id="footer-360webx"] .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
  display: inline-block;
}

[data-section-id="footer-360webx"] .footer-logo:hover {
  opacity: 0.85;
}

[data-section-id="footer-360webx"] .footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
  max-width: 320px;
}

[data-section-id="footer-360webx"] .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

[data-section-id="footer-360webx"] .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  color: #38bdf8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

[data-section-id="footer-360webx"] .social-link:hover {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

[data-section-id="footer-360webx"] .footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-section-id="footer-360webx"] .footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f8fafc;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(56, 189, 248, 0.3);
  position: relative;
}

[data-section-id="footer-360webx"] .footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  border-radius: 2px;
}

[data-section-id="footer-360webx"] .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

[data-section-id="footer-360webx"] .footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
  position: relative;
}

[data-section-id="footer-360webx"] .footer-links li a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  border-radius: 2px;
  transition: width 0.3s ease;
}

[data-section-id="footer-360webx"] .footer-links li a:hover {
  color: #38bdf8;
  padding-left: 14px;
}

[data-section-id="footer-360webx"] .footer-links li a:hover::before {
  width: 8px;
}

[data-section-id="footer-360webx"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 100%;
}

[data-section-id="footer-360webx"] .footer-copy {
  margin: 0;
  font-size: 0.87rem;
  color: #64748b;
}

[data-section-id="footer-360webx"] .footer-copy a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

[data-section-id="footer-360webx"] .footer-copy a:hover {
  color: #818cf8;
}

[data-section-id="footer-360webx"] .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

[data-section-id="footer-360webx"] .footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

[data-section-id="footer-360webx"] .footer-bottom-links a:hover {
  color: #38bdf8;
}

[data-section-id="footer-360webx"] .footer-divider {
  color: #334155;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  [data-section-id="footer-360webx"] .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px 32px 40px;
  }
  [data-section-id="footer-360webx"] .footer-brand {
    grid-column: 1 / -1;
  }
  [data-section-id="footer-360webx"] .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  [data-section-id="footer-360webx"] .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }
  [data-section-id="footer-360webx"] .footer-brand {
    grid-column: 1;
  }
  [data-section-id="footer-360webx"] .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }
  [data-section-id="footer-360webx"] .footer-logo {
    font-size: 1.5rem;
  }
}