/* ─── AI Influencer Landing Page ─────────────────────────────────── */

.ai-influencer-page {
  background: var(--surface-raised);
  color: var(--ink);
  min-height: 100vh;
  font-family: inherit;
}

/* ── Hero ───────────────────────────────────────────────────────── */

.ai-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #ebebeb 0%, #e3e3e3 50%, #e1e1e1 100%);
}

.ai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(130, 130, 130, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(164, 70, 4, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.ai-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--scrim-soft);
  border: 1px solid rgba(130, 130, 130, 0.5);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.ai-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--ink);
}

.ai-hero h1 .accent {
  background: linear-gradient(90deg, #a44604, #bd5704, #986206);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-hero .subheadline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.ai-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #828282, #929292);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
}

.ai-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  color: var(--ink);
  text-decoration: none;
}

.ai-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: border-color 0.2s, color 0.2s;
}

.ai-hero-cta-secondary:hover {
  border-color: var(--line-strong);
  color: var(--ink);
  text-decoration: none;
}

.ai-hero-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16), 0 0 40px rgba(0, 0, 0, 0.16);
}

.ai-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ── Social Proof Bar ────────────────────────────────────────────── */

.ai-social-proof {
  background: var(--glass);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 18px 0;
}

.ai-proof-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ai-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--glass-strong);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.ai-proof-chip i {
  color: #a44604;
}

.ai-proof-chip.highlight {
  border-color: var(--line-strong);
  background: var(--glass-strong);
  color: var(--ink-soft);
}

.ai-proof-chip.highlight i {
  color: var(--ink-soft);
}

/* ── Modules Grid ────────────────────────────────────────────────── */

.ai-modules-section {
  padding: 70px 0 50px;
  background: var(--surface-raised);
}

.ai-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}

.ai-section-subtitle {
  font-size: 1rem;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 40px;
}

.ai-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.ai-module-card {
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.ai-module-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ai-module-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ai-module-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(130, 130, 130, 0.25), rgba(146, 146, 146, 0.15));
  border: 1px solid rgba(130, 130, 130, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.ai-module-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.ai-module-card p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}

.ai-module-card .module-reward {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #986206;
  background: rgba(152, 98, 6, 0.1);
  padding: 3px 10px;
  border-radius: 10px;
  margin-top: 12px;
}

/* ── How It Works ────────────────────────────────────────────────── */

.ai-how-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ebebeb 0%, #e7e7e7 100%);
}

.ai-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}

.ai-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  position: relative;
}

.ai-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #828282, #929292);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.ai-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.ai-step p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Final CTA Section ───────────────────────────────────────────── */

.ai-final-cta {
  padding: 70px 0;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(130, 130, 130, 0.18) 0%, #ebebeb 70%);
}

.ai-final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.ai-final-cta p {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ──────────────────────────────────────────────────── */

/* ── Promo Carousel ──────────────────────────────────────────────── */

.ai-promo-carousel-section {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #ebebeb 0%, #e2e2e2 100%);
}

.ai-carousel-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ai-carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16), 0 0 40px rgba(0, 0, 0, 0.15);
}

.ai-carousel-track {
  position: relative;
  width: 100%;
}

.ai-carousel-slide {
  display: none;
  width: 100%;
}

.ai-carousel-slide.active {
  display: block;
  animation: slideIn 0.45s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

.ai-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.ai-carousel-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--scrim-soft);
  border: 1px solid rgba(130, 130, 130, 0.4);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  user-select: none;
}

.ai-carousel-arrow:hover {
  background: var(--scrim);
  transform: scale(1.08);
}

/* Thumbnail strip */
.ai-carousel-thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ai-carousel-thumb {
  flex-shrink: 0;
  width: 180px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s;
  background: var(--surface-page);
}

.ai-carousel-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.ai-carousel-thumb.active {
  opacity: 1;
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
}

.ai-carousel-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.thumb-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  padding: 6px 8px;
  background: var(--veil);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dots */
.ai-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.ai-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--scrim-soft);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.ai-carousel-dot.active {
  background: var(--fill-mid);
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .ai-carousel-thumbs {
    justify-content: flex-start;
  }
  .ai-carousel-thumb {
    width: 140px;
  }
  .ai-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .ai-hero {
    padding: 50px 0 40px;
    text-align: center;
  }
  .ai-hero .subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .ai-hero-image {
    margin-top: 32px;
  }
  .ai-cta-row {
    justify-content: center;
  }
  .ai-hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Niches / Genres ─────────────────────────────────────────────── */

.ai-niches-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ebebeb 0%, #e7e7e7 100%);
}

.ai-niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.ai-niche-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ai-niche-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.ai-niche-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-niche-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 45%, rgba(243, 243, 243, 0.92) 100%);
}

.ai-niche-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--scrim-strong);
  color: var(--brand-ink);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.ai-niche-overlay p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ── Module highlight card ───────────────────────────────────────── */

.ai-module-card--highlight {
  border-color: rgba(152, 98, 6, 0.5);
  background: linear-gradient(160deg, rgba(152, 98, 6, 0.08), rgba(130, 130, 130, 0.06));
}

.ai-module-card--highlight .ai-module-icon {
  background: rgba(152, 98, 6, 0.15);
  border-color: rgba(152, 98, 6, 0.4);
  color: #af7f03;
}

/* ── Monetization Layer ──────────────────────────────────────────── */

.ai-monetize-section {
  padding: 70px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(130, 130, 130, 0.14) 0%, #ebebeb 60%);
}

.ai-monetize-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(152, 98, 6, 0.14);
  border: 1px solid rgba(152, 98, 6, 0.4);
  color: #af7f03;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 0 auto 16px;
  letter-spacing: 0.5px;
}
.ai-monetize-section { text-align: center; }

.ai-monetize-hero {
  max-width: 900px;
  margin: 8px auto 40px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16), 0 0 40px rgba(0, 0, 0, 0.16);
}
.ai-monetize-hero img { width: 100%; height: auto; display: block; }

.ai-earn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 56px;
  text-align: left;
}

.ai-earn-card {
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform 0.2s, border-color 0.2s;
}
.ai-earn-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.ai-earn-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--scrim-soft);
  border: 1px solid rgba(130, 130, 130, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--ink-soft);
  margin-bottom: 14px;
}
.ai-earn-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ai-earn-card p { font-size: 0.85rem; color: var(--ink-muted); margin: 0; line-height: 1.55; }

/* Payout flow */
.ai-payout-flow { margin-bottom: 48px; }
.ai-payout-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800; color: var(--ink); margin-bottom: 8px;
}
.ai-payout-sub { font-size: 0.95rem; color: var(--ink-muted); margin-bottom: 26px; }

.ai-payout-graphic {
  max-width: 900px;
  margin: 0 auto 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}
.ai-payout-graphic img { width: 100%; height: auto; display: block; }

.ai-payout-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.ai-payout-step {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
}
.ai-payout-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #828282, #929292);
  color: var(--ink); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.ai-payout-step p { margin: 0; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; }
.ai-payout-step strong { color: var(--ink); }

/* Earnings chart */
.ai-earn-chart { max-width: 760px; margin: 0 auto; }
.ai-earn-chart img {
  width: 100%; height: auto; display: block;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}
.ai-earn-chart-caption {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 14px;
  font-style: italic;
}

/* ── Free Course Callout ─────────────────────────────────────────── */

.ai-course-callout {
  padding: 50px 0;
  background: var(--surface-raised);
}
.ai-course-callout-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(130, 130, 130, 0.16), rgba(152, 98, 6, 0.08));
  border: 1px solid rgba(130, 130, 130, 0.35);
  border-radius: 22px;
  padding: 32px 36px;
}
.ai-course-callout-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--scrim-soft);
  border: 1px solid rgba(130, 130, 130, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--ink-soft);
}
.ai-course-callout-text { flex: 1; min-width: 260px; }
.ai-course-callout-text h3 { font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ai-course-callout-text p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.ai-course-callout-text em { color: #af7f03; font-style: normal; font-weight: 600; }
.ai-course-callout-cta { flex-shrink: 0; }

@media (max-width: 767px) {
  .ai-course-callout-inner { text-align: center; justify-content: center; }
  .ai-course-callout-text { min-width: 0; }
}

/* ─── Positioning sections (thesis / proof / safety) ─────────────── */
.ai-eyebrow {
  display: block; text-align: center; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px;
}
.ai-proof-copy .ai-eyebrow { text-align: left; }

/* The Wall — problem section */
.ai-wall-section { padding: 70px 0 60px; background: linear-gradient(180deg, #ebebeb 0%, #e8e8e8 100%); }
.ai-wall-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px; margin-top: 36px; text-align: left;
}
.ai-wall-card {
  background: var(--glass); border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px; padding: 26px 24px; transition: transform 0.2s, border-color 0.2s;
}
.ai-wall-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.ai-wall-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #f70c0c; background: rgba(164, 70, 4, 0.12);
  border: 1px solid rgba(164, 70, 4, 0.25); margin-bottom: 16px;
}
.ai-wall-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ai-wall-card p { font-size: 0.94rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.ai-wall-solve {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin-top: 34px; padding: 18px 26px; border-radius: 14px; text-align: center;
  background: var(--scrim-soft); border: 1px solid rgba(130, 130, 130, 0.4);
  color: var(--ink); font-size: 1.05rem; font-weight: 600;
}
.ai-wall-solve i { color: var(--ink-soft); font-size: 1.4rem; }

/* Proof sections (image + copy) */
.ai-proof-section { padding: 66px 0; background: var(--surface-raised); }
.ai-proof-section--alt { background: linear-gradient(180deg, #e8e8e8 0%, #ebebeb 100%); }
.ai-proof-image {
  border-radius: 18px; overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16), 0 0 44px rgba(0, 0, 0, 0.16);
}
.ai-proof-image img { width: 100%; height: auto; display: block; }
.ai-proof-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.ai-proof-copy > p { font-size: 1.02rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.ai-check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.ai-check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }
.ai-check-list li i { color: #1d8660; margin-top: 3px; font-size: 1.05rem; }

/* Highlighted earning card */
.ai-earn-card--highlight {
  position: relative; background: linear-gradient(160deg, rgba(130, 130, 130, 0.2), rgba(164, 70, 4, 0.06));
  border-color: var(--line-strong); box-shadow: 0 0 34px rgba(0, 0, 0, 0.16);
}
.ai-earn-flag {
  position: absolute; top: -11px; left: 20px; display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(90deg, #a44604, #bd5704); color: var(--ink-inverse); font-size: 0.7rem;
  font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 11px; border-radius: 20px;
}

/* Compliance / safe section */
.ai-safe-section { padding: 66px 0; background: var(--surface-raised); }
.ai-safe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 34px; text-align: left; }
.ai-safe-card {
  background: var(--glass); border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px; padding: 24px 22px;
}
.ai-safe-card i { font-size: 1.5rem; color: #1d8660; margin-bottom: 12px; display: block; }
.ai-safe-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.ai-safe-card p { font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
