/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep: #050508;
  --bg-card: #0d0d12;
  --bg-card2: #111118;
  --border: #1c1c28;
  --border-hover: #2a2a3a;
  --yellow: #ffca40;
  --yellow-dim: rgba(255, 202, 64, 0.12);
  --yellow-glow: rgba(255, 202, 64, 0.25);
  --yellow-text: #ffe599;
  --text: #e8e8f0;
  --text-muted: #6b6b82;
  --text-dim: #9898ae;
  --green: #2ed573;
  --red: #ff4757;
  --radius: 14px;
  --radius-sm: 8px;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 202, 64, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(236, 153, 229, 0.08);
    border: 1px solid rgba(230, 53, 247, 0.22);
    padding: 7px 20px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgb(233, 52, 233);
    margin-bottom: 30px;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--bg-card);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 .accent {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 10px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ===== USAGE COUNTER ===== */
.usage-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.usage-dots {
  display: flex;
  gap: 4px;
}

.usage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}
.usage-dot.used {
  background: var(--yellow);
}
.usage-dot.active {
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
}

/* ===== GENERATOR CARD ===== */
.generator-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1;
}

.generator-card {
  background: rgb(243, 242, 242);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.7s 0.35s ease both;
}

.card-top-bar {
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-row {
  display: flex;
  gap: 6px;
}
.dot-row span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-row .d1 {
  background: #ff4757;
}
.dot-row .d2 {
  background: #ffa502;
}
.dot-row .d3 {
  background: #2ed573;
}

.card-title-bar {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 10px;
}

.card-body {
  padding: 32px;
}

/* ===== FORM GRID ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.form-group label span {
  color: var(--yellow);
  margin-left: 3px;
}

.form-control-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--bg-card);
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.92rem;
  width: 100%;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-control-dark::placeholder {
  color: var(--text-muted);
}

.form-control-dark:focus {
  border-color: rgb(240, 185, 240);
  background: rgba(255, 202, 64, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 202, 64, 0.08);
}

select.form-control-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.optional-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .optional-row {
    grid-template-columns: 1fr;
  }
}

/* ===== GENERATE BUTTON ===== */
.btn-generate {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1a1200;
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    opacity 0.2s;
  box-shadow: 0 6px 30px rgba(255, 202, 64, 0.3);
}

.btn-generate:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 40px rgba(255, 202, 64, 0.45);
}

.btn-generate:active {
  transform: scale(0.98);
}

.btn-generate:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-generate .btn-text {
  position: relative;
  z-index: 1;
}

/* ===== AI LOADING STATE ===== */
.ai-loader {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 20px;
}

.bot-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
}

.bot-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow-dim);
  border: 2px solid rgba(255, 202, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: pulse-bot 1.8s ease-in-out infinite;
}

.bot-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--yellow);
  animation: spin 1.2s linear infinite;
}

.bot-ring2 {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(255, 202, 64, 0.4);
  animation: spin 2s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-bot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 202, 64, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 202, 64, 0.4);
  }
}

.thinking-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  min-height: 26px;
  text-align: center;
}

.thinking-dots {
  display: inline-flex;
  gap: 5px;
  margin-left: 4px;
}

.thinking-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  animation: dotBounce 1.2s ease-in-out infinite;
}

.thinking-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.thinking-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.ai-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 280px;
}

/* ===== RESULTS ===== */
.results-section {
  display: none;
}

.results-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.names-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.name-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  animation: slideIn 0.4s ease both;
}

.name-card:hover {
  border-color: rgba(255, 202, 64, 0.4);
  background: var(--yellow-dim);
  transform: translateX(4px);
}

.name-card .name-text {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.name-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.name-card:hover .name-copy {
  background: rgba(255, 202, 64, 0.2);
  color: var(--yellow);
}

.name-card.copied {
  border-color: rgba(46, 213, 115, 0.4);
  background: rgba(46, 213, 115, 0.06);
}

.name-card.copied .name-copy {
  background: rgba(46, 213, 115, 0.2);
  color: var(--green);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* stagger delays */
.name-card:nth-child(1) {
  animation-delay: 0.05s;
}
.name-card:nth-child(2) {
  animation-delay: 0.12s;
}
.name-card:nth-child(3) {
  animation-delay: 0.19s;
}
.name-card:nth-child(4) {
  animation-delay: 0.26s;
}
.name-card:nth-child(5) {
  animation-delay: 0.33s;
}

.regen-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-outline-yellow {
  flex: 1;
  min-width: 140px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid rgba(255, 202, 64, 0.4);
  border-radius: var(--radius-sm);
  color: var(--yellow);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.btn-outline-yellow:hover {
  background: var(--yellow-dim);
  border-color: var(--yellow);
}

.btn-outline-yellow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== LIMIT REACHED ===== */
.limit-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 14px;
}

.limit-icon {
  font-size: 2.5rem;
  animation: pulse-bot 2s ease infinite;
}

.limit-box h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.limit-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
}

.reset-time {
  font-size: 0.78rem;
  color: var(--yellow);
  background: var(--yellow-dim);
  border: 1px solid rgba(255, 202, 64, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 0 24px 60px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(255, 202, 64, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  color: black;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    opacity 0.2s;
  letter-spacing: 0.02em;
}

.cta-btn:hover {
  transform: translateY(-2px);
}
.cta-btn:active {
  transform: scale(0.97);
}

.cta-primary {
  
  color: #1a1200;
  box-shadow: 0 6px 24px rgba(255, 202, 64, 0.35);
}
.tg-feat-card {

  border: 1px solid var(--y-border);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s;

    box-shadow: 1px 10px 20px var(--color-primary-lighter-10);
    color: var(--y-bg) !important;
}
.tg-feat-card:hover {
  border-color: var(--y-border-h);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  color: var(--y-bg);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-ghost {
  color: black;
  border: 1px solid rgba(247, 173, 250, 0.35);
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 0 24px 70px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 40px;
  color: black;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 640px) {
  .steps-row {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
      border: 1px solid var(--y-border);
  border-radius: 18px;
  transition: all 0.3s;
    box-shadow: 1px 10px 20px var(--color-primary-lighter-10);
    color: var(--y-bg) !important;
}

.step-card:hover {
  border-color: rgba(255, 202, 64, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: black;
  line-height: 1;
  margin-bottom: 14px;
}

.step-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.step-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: black;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FAQ / SEO CONTENT ===== */
.faq-section {
  padding: 0 24px 80px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  padding: 20px 25px;
  background: var(--card-blue1);
    border: 1px solid var(--y-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-q {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: black;
}
.tg-faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-q::after {
  content: "+";
  font-size: 1.2rem;
  color: pink;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-q.open::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

/* ===== TOAST ===== */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== UTIL ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-msg {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: center;
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .card-body {
    padding: 20px;
  }
  .cta-inner {
    padding: 28px 20px;
  }
}

.form-select-dark {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--bg-card);
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.92rem;
  width: 100%;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}

.form-select-dark option {
  background: white;
}

.form-select-dark:focus {
  border-color: rgb(252, 175, 255);
}

/* ─────────────────────────────────────────
         OTHER AI TOOLS SECTION
      ───────────────────────────────────────── */
.tools-sec {
  padding: 80px 0;
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.tools-header {
  margin-bottom: 52px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 15px;
}
.tool-card {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px 20px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: all 0.26s;
  position: relative;
  overflow: hidden;
}
.tool-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: pink;
  transform: scaleX(0);
  transition: transform 0.26s;
}
.tool-card:hover {
  border-color: rgba(255, 202, 64, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.tool-card:hover::after {
  transform: scaleX(1);
}
.tool-card-ico {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(252, 143, 243, 0.1),
    rgba(248, 150, 248, 0.03)
  );
  border: 1px solid rgba(255, 202, 64, 0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.tool-card-name {
  font-size: 0.875rem;
  font-weight: 800;
  color: black;
  line-height: 1.35;
}
.tool-card-desc {
  font-size: 12px;
  color: rgb(8, 2, 2);
  line-height: 1.68;
  flex: 1;
  margin: 0;
}
.tool-card-cta {
  font-size: 11.5px;
  font-weight: 800;

  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.tool-card:hover .tool-card-cta {
  opacity: 1;
  transform: translateX(0);
}
/* Current page card */
.tool-card-current {
  border-color: rgba(255, 202, 64, 0.28) !important;
  background: rgba(255, 202, 64, 0.04) !important;
  pointer-events: none;
}
.tool-card-current::after {
  transform: scaleX(1) !important;
}
.tool-card-badge {
  position: absolute;
  top: 11px;
  right: 11px;
  background: rgba(255, 202, 64, 0.14);
  border: 1px solid rgba(255, 202, 64, 0.28);
  color: #ffca40;
  font-size: 8.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
         SHARED SEO SECTION UTILITIES
      ───────────────────────────────────────── */
.seo-sec {
  padding: 80px 0;
  background: #000;
}
.seo-sec-alt {
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.seo-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.seo-h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 800;
  color: black;
  line-height: 1.16;
  margin-bottom: 15px;
  letter-spacing: -0.4px;
}
.seo-h2-accent {

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-lead {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.97rem;
  line-height: 1.9;
  max-width: 660px;
  margin-bottom: 0;
}

/* ================================================================
   AFTER RESULTS CTA
================================================================ */

.tg-after-cta {
  margin-bottom: 10px;
  margin-top: 10px;
  animation: tgSlideIn 0.4s ease;
}

.tg-after-cta-inner {
  background: linear-gradient(
    145deg,
    rgba(15, 77, 60, 0.25),
    rgba(255, 202, 64, 0.05)
  );
  border: 1px solid rgba(255, 202, 64, 0.25);
  border-radius: 22px;
  padding: 42px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tg-after-cta-inner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 202, 64, 0.15) 0%,
    transparent 70%
  );
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  pointer-events: none;
}

.tg-after-badge {
  display: inline-block;
  background: rgba(255, 202, 64, 0.12);
  border: 1px solid rgba(255, 202, 64, 0.3);
  color: #ffca40;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.tg-after-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.tg-after-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.tg-after-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tg-after-btn-primary {
  background: linear-gradient(
    to right,
    #ffe550 0%,
    #f1fc59 50%,
    #fdfc47 100%
  );
  color: #000;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(255, 202, 64, 0.3);
}

.tg-after-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 202, 64, 0.45);
  color: #000;
}

.tg-after-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
}

.tg-after-btn-outline:hover {
  border-color: #ffca40;
  color: #ffca40;
}

.tg-after-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}