/* ════════════════════════════════════════════════════════════
   ChatsPub — Premium Landing Page
   Light Theme · Animated · Gen-Z Emotional Support
   ════════════════════════════════════════════════════════════ */

/* ── KEYFRAMES ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce-dot {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes dash-move {
  to {
    stroke-dashoffset: 0;
  }
}

/* ── CUSTOM PROPERTIES ── */
:root {
  --primary: #7C4DFF;
  --primary-light: #EDE7FF;
  --primary-mid: #B39DFF;
  --accent: #00C9B1;
  --accent-light: #E0FAF7;
  --warm: #FFB347;
  --warm-light: #FFF4E0;
  --pink: #FF6B9D;
  --pink-light: #FFE8F2;
  --bg: #FAFBFF;
  --bg-card: #FFFFFF;
  --text-dark: #1A1340;
  --text-mid: #4A4570;
  --text-muted: #8B87A8;
  --border: #EAE8F5;
  --shadow-sm: 0 2px 12px rgba(124, 77, 255, 0.08);
  --shadow-md: 0 8px 32px rgba(124, 77, 255, 0.14);
  --shadow-lg: 0 20px 60px rgba(124, 77, 255, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BODY OVERRIDE ── */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body) !important;
  background: var(--bg) !important;
  color: var(--text-dark) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding: 0 !important;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--border);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-mid);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── LAYOUT ── */
.cp-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  width: 100% !important;
}

/* ── TYPOGRAPHY OVERRIDE ── */
h1,
h2,
h3,
h4,
h5,
h6,
.cp-container h1,
.cp-container h2,
.cp-container h3 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  color: var(--text-dark) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
}

/* ── ICON BADGES ── */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
}

.badge-primary {
  background: rgba(124, 77, 255, 0.12);
}

.badge-warning {
  background: rgba(255, 179, 71, 0.14);
}

.badge-success {
  background: rgba(34, 197, 94, 0.12);
}

.badge-danger {
  background: rgba(255, 107, 157, 0.12);
}

.badge-info {
  background: rgba(79, 124, 255, 0.12);
}

.badge-dark {
  background: rgba(26, 19, 64, 0.08);
}

/* ── UTILITIES ── */
.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

.flaticon-img {
  display: inline-block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

.flaticon-img-sm {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}

.icon-badge .flaticon-img {
  width: 20px;
  height: 20px;
}

.stat-item .flaticon-img {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}

.why-card-icon .flaticon-img {
  width: 40px;
  height: 40px;
}

.contact-icon .flaticon-img {
  width: 68px;
  height: 68px;
}

.nd-icon-wrap .flaticon-img,
.badge-large .flaticon-img {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 2;
}


/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.cp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: all 0.35s var(--ease);
}

.cp-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(124, 77, 255, 0.08);
  border-bottom: 1px solid var(--border);
}

.cp-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cp-header .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.cp-header .logo-link img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.cp-header .logo-text {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  letter-spacing: -0.02em;
}

/* Nav links */
.cp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cp-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  position: relative;
}

.cp-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.cp-nav a:hover {
  color: var(--primary);
}

.cp-nav a:hover::after {
  transform: scaleX(1);
}

/* Policy dropdown */
.policy-dropdown {
  position: relative;
}

.policy-trigger {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.policy-trigger:hover {
  color: var(--primary);
}

.policy-trigger .dd-arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

.policy-dropdown.open .dd-arrow {
  transform: rotate(180deg);
}

.policy-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  overflow: hidden;
  z-index: 50;
}

.policy-dropdown.open .policy-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.policy-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-mid);
  transition: background 0.2s;
}

.policy-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.policy-menu a::after {
  display: none;
}

/* Header CTA */
.header-cta-wrap {
  position: relative;
  flex-shrink: 0;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 40px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), #9C6FFF);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
  white-space: nowrap;
  border: none;
  box-shadow: var(--shadow-sm);
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-cta-btn .cta-arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

.header-cta-wrap.open .cta-arrow {
  transform: rotate(180deg);
}

/* Header download dropdown */
.header-dl-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
  z-index: 100;
}

.header-cta-wrap.open .header-dl-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dl-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.2s;
  color: var(--text-dark);
  text-decoration: none;
}

.dl-option:hover {
  background: var(--primary-light);
}

.dl-option.dl-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dl-option.dl-disabled:hover {
  background: transparent;
}

.dl-option i {
  font-size: 22px;
  color: var(--text-mid);
}

.dl-option-text {
  display: flex;
  flex-direction: column;
}

.dl-option-text strong {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dl-option-text small {
  font-size: 12px;
  color: var(--text-muted);
}

.badge-soon {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  background: var(--warm-light);
  color: var(--warm);
  border-radius: 6px;
}

/* Hamburger */
.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-dark);
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}

.hamburger-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile nav overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 19, 64, 0.45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #fff;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 40px rgba(124, 77, 255, 0.18);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

/* Drawer header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.mobile-nav-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.mobile-nav-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  background: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-mid);
}

.mobile-nav-inner {
  padding: 12px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  color: var(--text-mid);
  transition: all 0.2s;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-nav a i {
  width: 20px;
  text-align: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.mobile-nav a:hover i {
  color: var(--primary);
}

.mobile-nav .mobile-cta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--primary), #9C6FFF);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.mobile-nav .mobile-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.mobile-nav .mobile-cta i {
  color: #fff !important;
}

.mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}


/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background:
    url('/static/chatspub_web/img/banner.png') center center / cover no-repeat,
    linear-gradient(135deg, #FAFBFF 0%, #EDE7FF 50%, #E0FAF7 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 68px;
}

/* Floating blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.hero-blob-1 {
  width: 350px;
  height: 350px;
  background: var(--primary-light);
  top: 10%;
  left: -5%;
  animation: float 7s ease-in-out infinite;
}

.hero-blob-2 {
  width: 250px;
  height: 250px;
  background: var(--accent-light);
  top: 60%;
  right: -3%;
  animation: float 8s ease-in-out infinite 1s;
}

.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: var(--pink-light);
  bottom: 10%;
  left: 30%;
  animation: float 6s ease-in-out infinite 2s;
}

.hero-blob-4 {
  width: 180px;
  height: 180px;
  background: var(--warm-light);
  top: 20%;
  right: 20%;
  animation: float 9s ease-in-out infinite 0.5s;
}

.hero-blob-5 {
  width: 280px;
  height: 280px;
  background: var(--primary-light);
  bottom: -10%;
  right: 40%;
  animation: float 7.5s ease-in-out infinite 1.5s;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
  padding: 24px 0 40px;
}

.hero-left {
  flex: 0 0 58%;
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.4s both;
}

/* Tag pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  max-width: 100%;
}

.hero-tag i {
  font-size: 16px;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 56px) !important;
  line-height: 1.1 !important;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), #9C6FFF);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: visible;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Pulse ring */
.btn-primary-cta::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary-mid);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.btn-ghost-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  height: 54px;
  background: #fff;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-ghost-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Dropdown Button */
.btn-dropdown {
  position: relative;
  display: inline-block;
}

.btn-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), #9C6FFF);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: visible;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-dropdown-toggle:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-dropdown-toggle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary-mid);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.btn-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(124, 77, 255, 0.2);
  border: 1px solid var(--border);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

.btn-dropdown:hover .btn-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  border: none;
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.btn-dropdown-item:first-child {
  border-bottom: 1px solid var(--border);
}

.btn-dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 22px;
}

.btn-dropdown-item i {
  font-size: 18px;
  color: var(--primary);
  transition: color 0.2s var(--ease);
}

.btn-dropdown-item:hover i {
  color: var(--primary);
}

/* Trust badges */
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item i {
  font-size: 16px;
  color: var(--accent);
}

/* Illustration wrap */
.hero-illustration-wrap {
  position: relative;
  width: 100%;
  min-height: 440px;
}

/* Floating UI cards */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 28px rgba(124, 77, 255, 0.14);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero-float-card p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.3;
}

.float-card-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Speech bubble — lower left (near characters' phones) */
.hero-float-speech {
  bottom: 28%;
  left: 5px;
  animation: float 5s ease-in-out infinite 0.3s;
  max-width: 170px;
}

.hero-float-speech p {
  font-style: italic;
  white-space: normal;
}

/* Rating card — top right corner, above heads */
.hero-float-rating {
  top: 3%;
  right: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  animation: float 4.5s ease-in-out infinite 0.6s;
}

.float-stars {
  font-size: 14px;
  color: #FFB347;
  letter-spacing: 1px;
}

.hero-float-rating p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Users card — bottom right, at foot level */
.hero-float-users {
  bottom: 6%;
  right: 16px;
  animation: float 5.5s ease-in-out infinite 0.9s;
}

/* Floating decorative elements */
.hero-deco {
  position: absolute;
  font-size: 20px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.5;
}

.hero-deco-heart1 {
  top: 18%;
  right: 12%;
  animation: float 6s ease-in-out infinite;
  font-size: 24px;
  opacity: 0.35;
}

.hero-deco-heart2 {
  top: 40%;
  right: 5%;
  animation: float 7s ease-in-out infinite 1s;
  font-size: 18px;
  opacity: 0.3;
}

.hero-deco-heart3 {
  bottom: 25%;
  right: 18%;
  animation: float 5s ease-in-out infinite 0.5s;
  font-size: 16px;
  opacity: 0.25;
}

.hero-deco-star {
  top: 12%;
  right: 35%;
  animation: float 8s ease-in-out infinite 2s;
  font-size: 22px;
  opacity: 0.3;
}

.hero-deco-chat {
  bottom: 35%;
  right: 30%;
  animation: float 6.5s ease-in-out infinite 1.5s;
  font-size: 20px;
  opacity: 0.3;
}



/* ════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════ */
.stats-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-item i {
  font-size: 28px;
  color: var(--primary-mid);
  margin-bottom: 4px;
}

.stat-number {
  font-family: var(--font-display) !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}


/* ════════════════════════════════════════
   WHY CHATSPUB
   ════════════════════════════════════════ */
.why-section {
  background: var(--bg);
  padding: 100px 0;
}

.why-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
}

.why-card-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card-icon i {
  font-size: 24px;
  color: var(--primary);
}

.why-card h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ════════════════════════════════════════
   TOPICS
   ════════════════════════════════════════ */
.topics-section {
  background: linear-gradient(180deg, #FAFBFF, #EDE7FF);
  padding: 100px 0;
}

.topics-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.topics-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

.topic-card {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.topic-card:hover {
  transform: scale(1.04);
}

.topic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.topic-card:hover img {
  transform: scale(1.1);
}

.topic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 19, 64, 0.85) 0%, rgba(26, 19, 64, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}

.topic-card:hover .topic-overlay {
  background: linear-gradient(to top, rgba(26, 19, 64, 0.92) 0%, rgba(26, 19, 64, 0.3) 60%, transparent 100%);
}

.topic-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  transition: transform 0.3s var(--ease);
}

.topic-card:hover .topic-content {
  transform: translateY(-4px);
}

.topic-content i {
  font-size: 20px;
}

.topic-content span {
  font-size: 14px;
  font-weight: 600;
}


/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.how-section {
  background: #fff;
  padding: 100px 0;
}

.how-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.how-layout {
  display: flex !important;
  gap: 60px !important;
  align-items: center;
}

.how-left {
  flex: 0 0 55%;
}

.how-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.how-right img {
  max-height: 500px;
  width: auto;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(124, 77, 255, 0.18));
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.step-item:last-child {
  padding-bottom: 0;
}

/* Connector line */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed var(--primary-mid);
  opacity: 0.4;
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  padding-top: 4px;
}

.step-content h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ════════════════════════════════════════
   BEFORE & AFTER TRANSFORMATIONS
   ════════════════════════════════════════ */
.transform-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #FAFBFF 0%, #F4F0FF 100%);
  position: relative;
  overflow: hidden;
}

.tr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.tr-blob-1 {
  width: 440px;
  height: 440px;
  background: var(--primary-light);
  opacity: 0.5;
  top: -120px;
  left: -80px;
}

.tr-blob-2 {
  width: 320px;
  height: 320px;
  background: var(--accent-light);
  opacity: 0.45;
  bottom: -80px;
  right: -60px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.transform-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(124, 77, 255, 0.14);
}

/* ── Before panel ── */
.tr-before {
  padding: 22px 20px 18px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF0F5 100%);
}

.tr-side-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.tr-before-label {
  background: rgba(255, 107, 157, 0.13);
  color: #C63566;
}

.tr-after-label {
  background: rgba(0, 201, 177, 0.13);
  color: #007A6F;
}

.tr-emoji {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
}

.tr-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.tr-pain {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 14px;
}

.tr-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tr-tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(214, 69, 128, 0.09);
  color: #C63566;
  border-radius: 100px;
}

/* ── Bridge ── */
.tr-bridge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: linear-gradient(180deg, #FFF0F5 0%, #EEEAFF 100%);
  height: 52px;
}

.tr-bridge-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(198, 53, 102, 0.25), rgba(124, 77, 255, 0.25));
}

.tr-bridge-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(124, 77, 255, 0.28);
  border: 1.5px solid rgba(124, 77, 255, 0.18);
}

.tr-bridge-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tr-bridge-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── After panel ── */
.tr-after {
  padding: 18px 20px 22px;
  background: linear-gradient(135deg, #F0FBF9 0%, #EEEAFF 100%);
  flex: 1;
}

.tr-result {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 10px 0 14px;
}

.tr-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #007A6F;
}

.tr-outcome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 201, 177, 0.2);
}

/* ── CTA row ── */
.transform-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.transform-cta>p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .transform-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .transform-section {
    padding: 64px 0;
  }

  .transform-cta>p {
    font-size: 16px;
  }
}

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(135deg, #12103A 0%, #1E1255 50%, #0F2040 100%);
  padding: 80px 0;
  position: relative;
}

/* Background orbs */
.testi-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.testi-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.3), transparent 70%);
  top: -100px;
  left: -80px;
}

.testi-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.2), transparent 70%);
  bottom: -80px;
  right: 5%;
}

/* Floating decorations */
.testi-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.testi-deco-1 {
  top: 10%;
  left: 4%;
  font-size: 30px;
  animation-delay: 0s;
}

.testi-deco-2 {
  top: 18%;
  right: 5%;
  font-size: 22px;
  animation-delay: 1.5s;
}

.testi-deco-3 {
  bottom: 15%;
  left: 6%;
  font-size: 18px;
  animation-delay: 2.5s;
}

/* Colour overrides for dark bg */
.testimonials-section .section-label {
  background: rgba(0, 201, 177, 0.15);
  color: var(--accent);
}

.testimonials-section .section-title {
  color: #fff !important;
}

.testi-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Stats strip */
.testi-stats-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  width: fit-content;
  overflow: hidden;
}

.testi-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
}

.testi-strip-num {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
}

.testi-strip-stars {
  color: #FFB347;
  font-size: 13px;
  letter-spacing: 1px;
}

.testi-strip-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.testi-strip-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Two-column body layout */
.testi-body-layout {
  display: flex;
  gap: 56px;
  align-items: center;
}

/* Left column: heading + stats + slider + dots */
.testi-slider-col {
  flex: 0 0 52%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Heading block (left-aligned) */
.testi-heading {
  text-align: left;
}

.testi-heading .section-label {
  margin-bottom: 12px;
}

.testi-heading .section-title {
  margin-bottom: 8px !important;
}

/* Right column: phone */
.testi-phone-col {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.testi-phone-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.18), transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.testi-phone-wrap {
  position: relative;
  display: inline-block;
}

.testi-phone-img {
  max-height: 520px;
  width: auto;
  margin-left: 30px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 28px 70px rgba(0, 201, 177, 0.3));
  position: relative;
  z-index: 2;
  display: block;
}

/* Floating phone badges */
.testi-phone-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.testi-pbadge-top {
  top: 48px;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.testi-pbadge-bot {
  bottom: 80px;
  left: -20px;
  animation: float 5s ease-in-out infinite 1.5s;
}

.tpb-emoji {
  font-size: 20px;
  line-height: 1;
}

.tpb-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.tpb-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* Slider wrapper */
.testi-slider-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Arrow buttons */
.testi-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(8px);
  padding: 0;
}

.testi-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

/* Viewport (clips overflow) */
.testi-slider-viewport {
  flex: 1;
  overflow: hidden;
}

/* Track (slides horizontally) */
.testi-slider-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each slide — 1 visible at a time in the left column */
.testi-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px 2px;
  box-sizing: border-box;
}

/* Card */
.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(12px);
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.testi-card-active {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.2), rgba(0, 201, 177, 0.1)) !important;
  border-color: rgba(124, 77, 255, 0.5) !important;
  box-shadow: 0 16px 48px rgba(124, 77, 255, 0.22);
}

/* Card top: avatar + name + stars */
.testi-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.testi-card-stars {
  margin-left: auto;
  color: #FFB347;
  font-size: 16px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* Quote text */
.testi-card-quote {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  line-height: 1.75;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid rgba(124, 77, 255, 0.55);
}

/* Dots */
.testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.testi-dot.active {
  background: var(--accent);
  width: 28px;
}


/* ════════════════════════════════════════
   NOT A DATING APP
   ════════════════════════════════════════ */
.not-dating-section {
  background: #fff;
  padding: 80px 0;
}

.not-dating-layout {
  display: flex !important;
  gap: 30px !important;
  align-items: center;
}

/* ── Shield column ── */
.nd-shield-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-shield-img {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 12px 28px rgba(124, 58, 237, 0.20));
  animation: float 4s ease-in-out infinite;
}

/* ── Content column ── */
.nd-content-col {
  flex: 1;
}

.nd-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5B6AE8;
  background: #EEF0FD;
  border: 1px solid #C5CAF8;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.nd-content-col h2 {
  font-size: clamp(22px, 2.8vw, 32px) !important;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25 !important;
}

.nd-content-col>p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}

.nd-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px 32px !important;
}

.nd-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nd-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ── Quote card column ── */
.nd-quote-col {
  flex: 0 0 210px;
}

.nd-quote-card {
  background: #F4F5FB;
  border-radius: 16px;
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 180px;
}

.nd-quote-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}

.nd-quote-heart {
  font-size: 20px;
  align-self: flex-end;
}


/* ════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════ */
.cta-banner-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ece8ff 0%, #fafbff 100%);
}

@keyframes cta-shimmer {
  0% {
    transform: translateX(-120%) skewX(-10deg);
  }

  60%,
  100% {
    transform: translateX(200%) skewX(-10deg);
  }
}

@keyframes cta-live-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 201, 177, 0.55);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(0, 201, 177, 0);
  }
}

@keyframes cta-sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1) rotate(20deg);
  }
}

.cta-banner {
  background: url('/static/chatspub_web/img/Cta.png') center right / contain no-repeat;
  border-radius: 40px;
  min-height: 65vh;
  padding: 56px 64px;
  display: flex !important;
  /*align-items: center;*/
  gap: 32px;
  position: relative;
  overflow: hidden;
  /* Glowing frame */
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0 0 6px rgba(124, 77, 255, 0.08),
    0 40px 100px rgba(108, 77, 255, 0.38),
    0 8px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Left gradient overlay — improves text contrast */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(72, 38, 190, 0.84) 0%,
      rgba(72, 38, 190, 0.58) 38%,
      rgba(0, 160, 180, 0.15) 62%,
      transparent 76%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Shimmer sweep across the whole banner */
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, rgba(255, 255, 255, 0.07) 50%, transparent 65%);
  transform: translateX(-120%) skewX(-10deg);
  animation: cta-shimmer 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

/* Floating decorative hearts */
.cta-deco {
  position: absolute;
  font-size: 20px;
  opacity: 0.5;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
  z-index: 3;
}

.cta-deco-1 {
  top: 14px;
  left: 52%;
  animation-delay: 0s;
  font-size: 16px;
}

.cta-deco-2 {
  top: 50%;
  left: 46%;
  transform: translateY(-50%);
  animation-delay: 1.5s;
  font-size: 22px;
}

.cta-deco-3 {
  bottom: 16px;
  left: 56%;
  animation-delay: 3s;
  font-size: 14px;
}

/* Extra sparkle decoratives */
.cta-spark {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  animation: cta-sparkle 3s ease-in-out infinite;
}

.cta-spark-1 {
  top: 22%;
  left: 44%;
  animation-delay: 0.4s;
  font-size: 14px;
}

.cta-spark-2 {
  bottom: 28%;
  left: 49%;
  animation-delay: 1.8s;
}

.cta-spark-3 {
  top: 65%;
  left: 42%;
  animation-delay: 3.2s;
  font-size: 12px;
}

.cta-left {
  flex: 0 0 50%;
  position: relative;
  z-index: 4;
}

/* Social proof pill */
.cta-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.cta-live-dot {
  width: 7px;
  height: 7px;
  background: #00c9b1;
  border-radius: 50%;
  flex-shrink: 0;
  animation: cta-live-pulse 2s ease-in-out infinite;
}

.cta-left h2 {
  font-size: clamp(26px, 3.2vw, 44px) !important;
  color: #fff !important;
  margin-bottom: 12px;
  line-height: 1.18 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}

/* Subtitle under heading */
.cta-sub {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 380px;
}

/* Row of CTA buttons */
.cta-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Primary "Download App" button */
.btn-cta-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}

.btn-cta-download:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.badge-white {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* Official store image badges */
.btn-store-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.28s var(--ease);
  flex-shrink: 0;
}

.btn-store-badge img {
  height: 40px;
  width: auto;
  display: block;
}

.btn-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.cta-right {
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cta-right img {
  max-height: 280px;
  width: auto;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 32px rgba(255, 255, 255, 0.15));
  margin-bottom: -44px;
}


/* ════════════════════════════════════════
   CONTACT STRIP
   ════════════════════════════════════════ */
.contact-section {
  background: var(--bg);
  padding: 80px 0;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s var(--ease);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
}

.contact-icon {
  width: 76px;
  height: 76px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-icon i {
  font-size: 22px;
  color: var(--primary);
}

.contact-card h4 {
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
  font-size: 13px;
  color: var(--text-muted);
  word-break: break-all;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--primary);
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.cp-footer {
  background: #1A1340;
  padding: 56px 0 0;
  color: #fff;
}

.footer-top {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 40px !important;
  padding-bottom: 40px;
}

.footer-brand .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo-wrap img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-brand .footer-logo-name {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.footer-brand>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary-mid);
}

.footer-col-title {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff !important;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
  text-align: center;
  padding: 0 24px 20px;
}

.footer-disclaimer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 600px;
  margin: 0 auto;
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
/* ════════════════════════════════════════
   SECURITY SECTION
   ════════════════════════════════════════ */
.security-section {
  background: linear-gradient(135deg, #0d0b28 0%, #12103A 50%, #0f1e3a 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.sec-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.sec-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.22), transparent 70%);
  top: -140px;
  left: -100px;
}

.sec-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.18), transparent 70%);
  bottom: -80px;
  right: -80px;
}

.sec-orb-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.12), transparent 70%);
  top: 40%;
  right: 18%;
}

/* Header */
.sec-header {
  text-align: center;
  margin-bottom: 56px;
}

.security-section .section-label {
  background: rgba(124, 77, 255, 0.14);
  border: 1px solid rgba(124, 77, 255, 0.3);
  color: rgba(255, 255, 255, 0.82) !important;
}

.security-section .section-title {
  color: #fff !important;
  margin-top: 12px;
}

.sec-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6) !important;
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* Bento grid — 3 columns */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Base card */
.sec-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s, border-color 0.32s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.sec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 77, 255, 0.35);
  box-shadow: 0 20px 64px rgba(124, 77, 255, 0.18);
}

.sec-card:hover::before {
  opacity: 1;
}

/* Large card — spans first 2 columns */
.sec-card-large {
  grid-column: 1 / 3;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.13), rgba(0, 201, 177, 0.06));
  border-color: rgba(124, 77, 255, 0.2);
}

.sec-card-large:hover {
  border-color: rgba(124, 77, 255, 0.48);
  box-shadow: 0 24px 80px rgba(124, 77, 255, 0.22);
}

/* Icon */
.sec-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.sec-card-large .sec-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
}

.sec-icon-purple {
  background: rgba(124, 77, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(124, 77, 255, 0.28);
}

.sec-icon-teal {
  background: rgba(0, 201, 177, 0.14);
  box-shadow: 0 0 0 1px rgba(0, 201, 177, 0.24);
}

.sec-icon-pink {
  background: rgba(255, 107, 157, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 107, 157, 0.22);
}

.sec-icon-warm {
  background: rgba(255, 179, 71, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.22);
}

.sec-icon-blue {
  background: rgba(66, 133, 244, 0.14);
  box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.22);
}

/* Card text */
.sec-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.sec-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sec-card-large h3 {
  font-size: 22px !important;
  margin-bottom: 10px;
}

.sec-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62) !important;
  line-height: 1.7;
  margin: 0;
}

.sec-card-large p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65) !important;
}

/* "Unique Feature" badge */
.sec-unique-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

/* Checklist inside large card */
.sec-check-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sec-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72) !important;
}

.sec-check-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(0, 201, 177, 0.15);
  border: 1px solid rgba(0, 201, 177, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
}

/* Small card inner layout */
.sec-card:not(.sec-card-large) .sec-icon {
  margin-bottom: 2px;
}

.sec-card:not(.sec-card-large) h3 {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .sec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sec-card-large {
    grid-column: 1 / 3;
  }
}

@media (max-width: 640px) {
  .sec-grid {
    grid-template-columns: 1fr;
  }

  .sec-card-large {
    grid-column: 1;
    flex-direction: column;
  }

  .security-section {
    padding: 64px 0;
  }

  .sec-header {
    margin-bottom: 36px;
  }

  .sec-card {
    padding: 24px;
  }
}

@media (max-width: 1024px) {
  .cp-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-overlay {
    display: block;
  }

  .header-cta-btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 0 0;
  }

  .hero-left {
    flex: none;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-illustration-wrap {
    min-height: 320px;
  }

  .hero-float-card {
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero-float-speech {
    left: 0;
  }

  .hero-float-rating {
    right: 10px;
  }

  .hero-float-users {
    right: 10px;
  }

  .hero-deco {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .how-layout {
    flex-direction: column !important;
  }

  .how-left {
    flex: none;
  }

  .how-right img {
    max-height: 360px;
  }

  .testi-body-layout {
    flex-direction: column !important;
    gap: 32px;
  }

  .testi-slider-col {
    flex: none !important;
    width: 100%;
  }

  .testi-phone-col {
    flex: none;
    width: 100%;
    min-height: auto;
  }

  .testi-phone-img {
    max-height: 320px;
  }

  .testi-pbadge-top,
  .testi-pbadge-bot {
    display: none;
  }

  .testi-stats-strip {
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .testi-strip-sep {
    display: none;
  }

  .testi-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .not-dating-layout {
    flex-direction: column !important;
  }

  .nd-shield-col {
    flex: none;
  }

  .nd-quote-col {
    flex: none;
    width: 100%;
  }

  .cta-banner {
    flex-direction: column !important;
    padding: 48px 28px;
    text-align: center;
    border-radius: 28px;
    min-height: 0;
    background: linear-gradient(135deg, #4826be 0%, #7c4dff 55%, #00b8d9 100%);
  }

  .cta-banner::before {
    background: none;
  }

  .cta-left {
    flex: none !important;
    width: 100%;
  }

  .cta-left h2 {
    font-size: clamp(22px, 6vw, 32px) !important;
  }

  .cta-social-proof {
    justify-content: center;
  }

  .cta-sub {
    display: block;
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-btn-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cta-right {
    display: none;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .cp-container {
    padding: 0 16px !important;
  }

  .cp-header .header-inner {
    padding: 0 16px;
  }

  /* Hero — gradient only on mobile, no background image */
  .hero {
    background: linear-gradient(135deg, #FAFBFF 0%, #EDE7FF 50%, #E0FAF7 100%);
  }

  .cta-banner {
    min-height: 0;
  }

  .cta-banner-section {
    padding: 40px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-right {
    display: none;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 42px) !important;
  }

  .hero-float-card {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .stat-number {
    font-size: 28px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Section padding reduction */
  .why-section,
  .topics-section,
  .how-section {
    padding: 64px 0;
  }

  .not-dating-section {
    padding: 56px 0;
  }

  /* Section header spacing */
  .why-section .section-header,
  .topics-section .section-header,
  .how-section .section-header {
    margin-bottom: 36px;
  }

  /* How layout */
  .how-layout {
    gap: 32px !important;
  }

  .how-right img {
    max-height: 280px;
  }

  /* Testimonial stats strip — 2×2 grid on mobile */
  .testi-stats-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    border-radius: 16px !important;
  }

  .testi-strip-item {
    justify-content: center;
    padding: 16px 12px;
  }

  .testi-strip-sep {
    display: none;
  }

  /* Testimonial card */
  .testi-card {
    padding: 24px;
  }

  /* Contact strip */
  .contact-section {
    padding: 56px 0;
  }

  .contact-section .section-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .cp-header {
    height: 60px;
  }

  .cp-header .header-inner {
    padding: 0 16px;
  }

  .header-cta-btn {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-cta,
  .btn-ghost-cta {
    justify-content: center;
  }

  .topics-grid {
    grid-template-columns: 1fr !important;
  }

  .topic-card {
    height: 160px;
  }

  .nd-columns {
    grid-template-columns: 1fr 1fr !important;
  }

  .nd-quote-col {
    width: 100%;
  }

  .cta-banner {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .cta-left h2 {
    font-size: clamp(20px, 7vw, 28px) !important;
  }

  .cta-btn-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-store-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .btn-store-badge img {
    height: 44px;
    width: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Section padding */
  .why-section,
  .topics-section,
  .how-section {
    padding: 48px 0;
  }

  .not-dating-section {
    padding: 40px 0;
  }

  .testimonials-section {
    padding: 56px 0;
  }

  .stats-bar {
    padding: 24px 0;
  }

  /* Testi card */
  .testi-card {
    padding: 20px;
  }

  .testi-card-quote {
    font-size: 14px;
  }

  /* Testi card-top — fix squish on narrow cards */
  .testi-card-top {
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .testi-avatar {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .testi-name {
    font-size: 13px;
  }

  .testi-role {
    font-size: 11px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .testi-card-stars {
    font-size: 13px;
    letter-spacing: 1px;
  }

  /* Testi arrows — smaller on mobile */
  .testi-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .testi-slider-section {
    gap: 8px;
  }

  /* How right image */
  .how-right img {
    max-height: 200px;
  }

  /* ND columns gap */
  .nd-columns {
    gap: 8px 16px !important;
  }

  /* Contact strip */
  .contact-section {
    padding: 40px 0;
  }
}

/* ════════════════════════════════════════════════════════════
   ChatsPub — ADDED SECTIONS (from 2026 content doc)
   Append this to the end of your existing stylesheet.
   Reuses existing design tokens & class conventions only —
   no UI changes to existing sections.
   ════════════════════════════════════════════════════════════ */

/* ── WHY GEN-Z: closing tagline ── */
.genz-closing {
  text-align: center;
  margin-top: 48px;
}

.genz-closing p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}


/* ════════════════════════════════════════
   CLEAR BOUNDARIES / WHAT CHATSPUB IS NOT
   ════════════════════════════════════════ */
.boundaries-section {
  background: linear-gradient(180deg, #EDE7FF, #FAFBFF);
  padding: 100px 0;
}

.boundaries-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.boundaries-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
}

.boundary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.35s var(--ease);
}

.boundary-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
}

.boundary-card h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 18px;
}

.boundary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.boundary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* "is NOT" — pink cross markers */
.boundary-item.is-not::before {
  content: '\2715';
  width: 24px;
  height: 24px;
  background: var(--pink-light);
  color: var(--pink);
  border: 1px solid rgba(255, 107, 157, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* "focus" — green check markers */
.boundary-item.is-yes::before {
  content: '\2713';
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(0, 201, 177, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Micro-copy chips */
.boundary-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.boundary-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--primary-mid);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}


/* ════════════════════════════════════════
   SAFETY FIRST (Platform Measures + Promise)
   ════════════════════════════════════════ */
.safety-section {
  background: #fff;
  padding: 100px 0;
}

.safety-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.safety-layout {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 32px !important;
  align-items: stretch;
}

/* Platform safety measures — checklist */
.safety-measures {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.safety-measures h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 22px;
}

.safety-measure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.safety-measure-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.safety-measure-item::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Safety promise card */
.safety-promise {
  background: linear-gradient(135deg, var(--primary), #9C6FFF);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.safety-promise .sp-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.safety-promise h3 {
  color: #fff !important;
  font-size: 22px !important;
  margin-bottom: 20px;
}

.safety-promise-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.safety-promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
}

.safety-promise-item::before {
  content: '\2713';
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}


/* ── RESPONSIVE (added sections) ── */
@media (max-width: 1024px) {
  .safety-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .boundaries-grid {
    grid-template-columns: 1fr !important;
  }

  .safety-measure-grid {
    grid-template-columns: 1fr;
  }

  .boundaries-section,
  .safety-section {
    padding: 64px 0;
  }

  .boundaries-section .section-header,
  .safety-section .section-header {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {

  .boundaries-section,
  .safety-section {
    padding: 48px 0;
  }
}