/* ============================================
   ASTRALEX v2 — ENHANCEMENT LAYER
   Tools · Trust · Credits · SEO · Conversion
   ============================================ */

/* ---- AI ASSISTANT WIDGET ---- */
#ai-bot-fab {
  position: fixed; right: 24px; bottom: 90px; z-index: 1200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(15,107,92,0.35);
  border: none; cursor: pointer; transition: transform 0.2s, background 0.2s;
}
#ai-bot-fab:hover { transform: translateY(-2px) scale(1.04); }
#ai-bot-fab.is-open { background: var(--dark); }
.ai-bot-fab-icon-chat, .ai-bot-fab-icon-close {
  position: absolute; transition: opacity 0.2s, transform 0.2s;
}
.ai-bot-fab-icon-close { opacity: 0; transform: scale(0.6) rotate(-45deg); }
#ai-bot-fab.is-open .ai-bot-fab-icon-chat { opacity: 0; transform: scale(0.6) rotate(45deg); }
#ai-bot-fab.is-open .ai-bot-fab-icon-close { opacity: 1; transform: scale(1) rotate(0deg); }
.ai-bot-panel {
  position: fixed; right: 24px; bottom: 156px; z-index: 1200;
  width: 340px; max-width: calc(100vw - 48px);
  height: 440px; max-height: calc(100vh - 220px);
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--gray-100);
  /* Collapsed by default: scaled down, invisible, and unclickable — this is
     the "collapsible" state, animated rather than an abrupt hidden/shown jump. */
  opacity: 0; transform: translateY(12px) scale(0.97);
  visibility: hidden; pointer-events: none;
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
.ai-bot-panel.is-visible {
  opacity: 1; transform: translateY(0) scale(1);
  visibility: visible; pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
.ai-bot-header {
  background: var(--dark); color: #fff; padding: 16px 18px;
  display: flex; align-items: flex-start; justify-content: space-between;
  cursor: pointer;
}
.ai-bot-title { font-size: 14.5px; font-weight: 700; }
.ai-bot-subtitle { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
#ai-bot-close {
  background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer;
  line-height: 1; width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: -6px -6px 0 0;
}
#ai-bot-close:hover { color: #fff; background: rgba(255,255,255,0.1); }
.ai-bot-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.ai-bot-msg { font-size: 13.5px; line-height: 1.55; padding: 10px 13px; border-radius: 12px; max-width: 88%; }
.ai-bot-msg-bot { background: var(--gray-50); color: var(--text-body); align-self: flex-start; border-bottom-left-radius: 4px; }
.ai-bot-msg-user { background: var(--red); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.ai-bot-cta {
  align-self: flex-start; display: inline-block; margin-top: -2px;
  background: var(--red); color: #fff; font-size: 12.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; text-decoration: none;
}
.ai-bot-quick { display: flex; gap: 8px; padding: 0 16px 10px; flex-wrap: wrap; }
.ai-bot-chip {
  font-size: 12px; font-weight: 600; color: var(--red); background: var(--red-light);
  border: none; border-radius: 100px; padding: 7px 13px; cursor: pointer;
}
.ai-bot-chip:hover { opacity: 0.85; }
.ai-bot-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--gray-100); }
.ai-bot-input-row input {
  flex: 1; border: 1px solid var(--gray-100); border-radius: 100px;
  padding: 10px 16px; font-size: 13.5px; font-family: var(--font); outline: none;
}
.ai-bot-input-row input:focus { border-color: var(--red); }
.ai-bot-input-row button {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff;
  border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
@media (max-width: 480px) {
  #ai-bot-fab { right: 16px; bottom: 84px; }
  .ai-bot-panel { right: 16px; left: 16px; width: auto; bottom: 148px; }
}

/* ---- PRACTICE AREA ACCORDION (click a card to open its detail) ---- */
.practice-list { display: flex; flex-direction: column; gap: 12px; }
.practice-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}
.practice-item[open] { border-color: var(--red); }
.practice-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.practice-item summary::-webkit-details-marker { display: none; }
.practice-item summary::marker { content: ''; }
.practice-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.practice-icon svg { width: 20px; height: 20px; }
.practice-heading { flex: 1; min-width: 0; }
.practice-title { font-size: 16px; font-weight: 700; color: var(--black); }
.practice-teaser { font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }
.practice-chevron {
  flex-shrink: 0; color: var(--gray-500); transition: transform 0.25s;
}
.practice-item[open] .practice-chevron { transform: rotate(180deg); color: var(--red); }

/* ---- EXPANDABLE RESOURCE ARTICLE (Resources page, per practice area) ---- */
.resource-item {
  border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden;
}
.resource-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.resource-item summary::-webkit-details-marker { display: none; }
.resource-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--red); }
.resource-title { font-size: 15px; font-weight: 700; color: var(--black); margin-top: 3px; line-height: 1.35; }
.resource-item .practice-chevron { margin-left: auto; }
.resource-item[open] .practice-chevron { transform: rotate(180deg); color: var(--red); }
.resource-body { padding: 0 22px 24px 22px; border-top: 1px solid var(--gray-50); }
.resource-body p { font-size: 14px; line-height: 1.75; color: var(--text-body); margin: 16px 0; }
.resource-byline {
  display: flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12px; color: var(--text-muted);
}
.resource-byline strong { color: var(--black); }
.practice-body {
  padding: 4px 24px 28px 84px;
  border-top: 1px solid var(--gray-50);
  margin-top: -4px;
}
.practice-body p { font-size: 14.5px; line-height: 1.7; color: var(--text-body); margin-bottom: 18px; }
.practice-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 20px; }
.practice-features .feat { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-body); }
.practice-features .feat svg { flex-shrink: 0; width: 15px; height: 15px; color: var(--red); margin-top: 2px; }
.practice-who { display: flex; flex-wrap: wrap; gap: 8px; }
.practice-who span {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  background: var(--gray-50); color: var(--text-muted);
}
.practice-ai-tools {
  margin-top: 20px; padding: 14px 16px;
  background: var(--red-light); border-radius: var(--radius-md);
  display: flex; gap: 10px; align-items: flex-start;
}
.practice-ai-tools svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--red); margin-top: 2px; }
.practice-ai-tools p { font-size: 13px; color: var(--text-body); margin: 0; }
.practice-ai-tools strong { color: var(--red); }
@media (max-width: 640px) {
  .practice-body { padding-left: 24px; }
  .practice-features { grid-template-columns: 1fr; }
}

/* ---- TOOL CTA STRIP ---- */
.tool-strip {
  background: linear-gradient(135deg, #14171F 0%, #1D212B 100%);
  border-top: 1px solid rgba(15,107,92,0.25);
  border-bottom: 1px solid rgba(15,107,92,0.25);
  padding: 20px 0;
}
.tool-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.tool-strip-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tool-strip-label {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.tool-strip-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #0F6B5C; animation: pulse 2s infinite;
}
.tool-chips { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tool-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; transition: all 0.25s; cursor: pointer;
  text-decoration: none;
}
.tool-chip:hover {
  background: rgba(15,107,92,0.2); border-color: rgba(15,107,92,0.4); color: white;
}
.tool-chip svg { width: 14px; height: 14px; color: #0F6B5C; }
.tool-chip-new {
  background: #0F6B5C; color: white; padding: 2px 7px;
  border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
}

/* ---- CREDIT HINT INLINE ---- */
.credit-hint {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E3F1EE; border: 1px solid rgba(15,107,92,0.15);
  color: #0B5347; padding: 6px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.credit-hint svg { width: 13px; height: 13px; }

/* ---- FREE CREDITS BANNER ---- */
.free-credits-banner {
  background: linear-gradient(135deg, #14171F 0%, #1D212B 100%);
  border: 1px solid rgba(15,107,92,0.2); border-radius: 12px;
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.free-credits-left { display: flex; align-items: center; gap: 16px; }
.free-credits-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: rgba(15,107,92,0.15); border: 1px solid rgba(15,107,92,0.2);
  display: flex; align-items: center; justify-content: center;
}
.free-credits-icon svg { width: 24px; height: 24px; color: #B08D57; }
.free-credits-text h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.free-credits-text p { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ---- TRUST / SECURITY BADGE ROW ---- */
.trust-security-row {
  background: #F9FAFB; border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB; padding: 14px 0;
}
.trust-security-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-security-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: #444444;
}
.trust-security-item svg { width: 14px; height: 14px; color: #8A8A8A; }
.trust-ai-disclaimer {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(59,130,246,0.07); border: 1px solid rgba(59,130,246,0.15);
  color: #1d4ed8; padding: 8px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 500; line-height: 1.4;
}
.trust-ai-disclaimer svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---- RELATED TOOLS SECTION ---- */
.related-tools-section { background: #F9FAFB; border-top: 1px solid #EBEBEB; padding: 64px 0; }
.related-tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-tool-card {
  background: white; border: 1px solid #EBEBEB; border-radius: 12px;
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.25s; text-decoration: none;
}
.related-tool-card:hover {
  border-color: #0F6B5C; box-shadow: 0 4px 20px rgba(15,107,92,0.08); transform: translateY(-2px);
}
.related-tool-card-icon {
  width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
  background: #111111; display: flex; align-items: center; justify-content: center;
}
.related-tool-card-icon svg { width: 24px; height: 24px; color: #B08D57; }
.related-tool-card-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #14171F; }
.related-tool-card-body p { font-size: 13px; color: #6B6B6B; line-height: 1.55; margin-bottom: 14px; }
.related-tool-card-footer { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tool-try-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: #0F6B5C; font-size: 13px; font-weight: 700; transition: gap 0.25s;
}
.tool-try-link:hover { gap: 9px; }
.tool-try-link svg { width: 14px; height: 14px; }

/* ---- RELATED ARTICLES STRIP ---- */
.related-articles { padding: 56px 0; background: white; border-top: 1px solid #EBEBEB; }
.related-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-article-item {
  padding: 24px; border: 1px solid #EBEBEB; border-radius: 10px;
  transition: all 0.25s; display: flex; flex-direction: column; gap: 10px;
  text-decoration: none;
}
.related-article-item:hover { border-color: #CBCBCB; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.related-article-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #0F6B5C;
}
.related-article-item h4 { font-size: 15px; font-weight: 600; line-height: 1.35; color: #14171F; }
.related-article-item p { font-size: 13px; color: #6B6B6B; line-height: 1.6; flex: 1; }
.related-article-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: #0F6B5C; transition: gap 0.25s;
}
.related-article-link:hover { gap: 8px; }
.related-article-link svg { width: 12px; height: 12px; }

/* ---- TOOL CARDS (Tools Page) ---- */
.tool-card {
  background: white; border-radius: 20px; border: 1px solid #EBEBEB;
  overflow: hidden; transition: all 0.25s; display: flex; flex-direction: column;
}
.tool-card:hover { box-shadow: 0 24px 80px rgba(0,0,0,0.18); transform: translateY(-6px); border-color: transparent; }
.tool-card-header {
  padding: 36px 36px 28px;
  background: linear-gradient(135deg, #14171F 0%, #1D212B 100%);
  position: relative; overflow: hidden;
}
.tool-card-header::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,107,92,0.2) 0%, transparent 70%);
}
.tool-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(15,107,92,0.2); border: 1px solid rgba(15,107,92,0.35);
  color: #B08D57; padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.tool-card-icon-lg {
  width: 64px; height: 64px; border-radius: 12px;
  background: rgba(15,107,92,0.15); border: 1px solid rgba(15,107,92,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.tool-card-icon-lg svg { width: 32px; height: 32px; color: #B08D57; }
.tool-card-header h3 { color: white; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.tool-card-header p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }
.tool-card-body { padding: 28px 36px; flex: 1; }
.tool-feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.tool-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #2D2D2D; }
.tool-feature-dot {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: #E3F1EE; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.tool-feature-dot svg { width: 10px; height: 10px; color: #0F6B5C; }
.tool-card-footer {
  padding: 20px 36px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid #EBEBEB; flex-wrap: wrap;
}
.credit-cost { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #6B6B6B; }
.credit-cost-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: #F4F4F5; border: 1px solid #EBEBEB;
  padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 700; color: #080808;
}
.credit-cost-pill svg { width: 12px; height: 12px; color: #0F6B5C; }

/* ---- CREDITS TIER CARDS ---- */
.credits-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.credits-tier-card {
  border-radius: 20px; overflow: hidden; border: 1px solid #EBEBEB; transition: all 0.25s;
}
.credits-tier-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.14); transform: translateY(-4px); }
.credits-tier-card.featured { border-color: #0F6B5C; box-shadow: 0 0 0 1px #0F6B5C; }
.credits-tier-header { padding: 28px; background: #F9FAFB; border-bottom: 1px solid #EBEBEB; text-align: center; }
.credits-tier-card.featured .credits-tier-header { background: #0F6B5C; }
.credits-tier-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #8A8A8A; }
.credits-tier-card.featured .credits-tier-name { color: rgba(255,255,255,0.7); }
.credits-tier-price { font-size: 42px; font-weight: 900; color: #080808; line-height: 1; margin: 12px 0 4px; letter-spacing: -2px; }
.credits-tier-card.featured .credits-tier-price { color: white; }
.credits-tier-price sup { font-size: 20px; font-weight: 700; vertical-align: top; margin-top: 8px; letter-spacing: 0; }
.credits-tier-price-note { font-size: 13px; color: #8A8A8A; }
.credits-tier-card.featured .credits-tier-price-note { color: rgba(255,255,255,0.6); }
.credits-tier-body { padding: 28px; }
.credits-tier-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.credits-tier-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #2D2D2D; }
.credits-tier-feature svg { width: 16px; height: 16px; color: #0F6B5C; flex-shrink: 0; margin-top: 1px; }

/* ---- NAV UPGRADES ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid #EBEBEB; border-radius: 12px;
  padding: 8px; min-width: 200px; box-shadow: 0 12px 48px rgba(0,0,0,0.14); z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 6px; font-size: 13px; font-weight: 500; color: #2D2D2D;
  transition: background 0.25s; text-decoration: none;
}
.nav-dropdown-item:hover { background: #F9FAFB; color: #0F6B5C; }
.nav-dropdown-item svg { width: 16px; height: 16px; color: #8A8A8A; }
.nav-dropdown-item:hover svg { color: #0F6B5C; }
.nav-dropdown-divider { height: 1px; background: #EBEBEB; margin: 4px 0; }
.nav-dropdown-badge {
  margin-left: auto; background: #0F6B5C; color: white;
  font-size: 9px; font-weight: 700; padding: 2px 6px;
  border-radius: 100px; letter-spacing: 0.5px;
}
.nav-login-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 600; color: #444444;
  border: 1.5px solid #EBEBEB; transition: all 0.25s; white-space: nowrap;
  text-decoration: none;
}
.nav-login-btn:hover { border-color: #080808; color: #080808; }
.nav-login-btn svg { width: 14px; height: 14px; }

/* ---- UPLOAD ZONE ---- */
.upload-zone {
  border: 2px dashed #CBCBCB; border-radius: 20px; padding: 48px;
  text-align: center; cursor: pointer; transition: all 0.25s; background: #F9FAFB;
}
.upload-zone:hover { border-color: #0F6B5C; background: #E3F1EE; }
.upload-zone-icon {
  width: 64px; height: 64px; border-radius: 12px; background: white;
  border: 1px solid #EBEBEB; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; transition: all 0.25s;
}
.upload-zone:hover .upload-zone-icon { border-color: #0F6B5C; background: #E3F1EE; }
.upload-zone:hover .upload-zone-icon svg { color: #0F6B5C; }
.upload-zone-icon svg { width: 28px; height: 28px; color: #8A8A8A; }
.upload-zone h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.upload-zone p { font-size: 14px; color: #6B6B6B; margin-bottom: 20px; }
.upload-zone-formats { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.upload-format-tag {
  background: white; border: 1px solid #EBEBEB; padding: 4px 10px;
  border-radius: 6px; font-size: 11px; font-weight: 600; color: #8A8A8A; letter-spacing: 0.5px;
}

/* ---- SECURITY STRIP ---- */
.security-strip { background: #14171F; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.security-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.security-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; }
.security-item svg { width: 14px; height: 14px; color: rgba(255,255,255,0.25); }

/* ---- LOGIN GATE ---- */
.login-gate {
  background: white; border: 1px solid #EBEBEB; border-radius: 20px;
  padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.login-gate::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,107,92,0.02) 0%, transparent 60%);
}
.login-gate-icon {
  width: 72px; height: 72px; border-radius: 50%; background: #E3F1EE;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.login-gate-icon svg { width: 34px; height: 34px; color: #0F6B5C; }
.login-gate h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; position: relative; }
.login-gate p { color: #6B6B6B; font-size: 16px; margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; position: relative; }
.login-gate-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .related-tools-grid { grid-template-columns: 1fr; }
  .related-articles-grid { grid-template-columns: 1fr; }
  .credits-tier-grid { grid-template-columns: 1fr; }
  .tool-strip-inner { flex-direction: column; align-items: flex-start; }
  .free-credits-banner { flex-direction: column; align-items: flex-start; }
  .trust-security-inner, .security-strip-inner { gap: 16px; }
  .tool-card-header, .tool-card-body, .tool-card-footer { padding-left: 24px; padding-right: 24px; }
}
