:root {
  --ink: #06080c;
  --deep: #0d1117;
  --surface: #131920;
  --panel: rgba(19, 25, 32, 0.9);
  --border: rgba(255, 255, 255, 0.07);
  --text: #eef2f7;
  --muted: #7b8fa8;
  --soft: #a8b8cc;
  --pink: #ec4899;
  --orange: #f97316;
  --purple: #8b5cf6;
  --lilac: #c084fc;
  --green: #22c55e;
  --gold: #f59e0b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  max-width: 100vw;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pink), var(--purple));
  border-radius: 2px;
}

/* ── Progress ── */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 8, 12, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

/* ── STICKY BOTTOM ── */
#sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(6, 8, 12, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(236, 72, 153, 0.2);
  padding: 12px 24px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#sticky.show {
  transform: translateY(0);
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-weight: 700;
  font-size: 14px;
}

.sticky-sub {
  font-size: 11px;
  color: var(--muted);
}

/* ── SECTIONS & LAYOUT ── */
section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 110px) clamp(16px, 4vw, 24px);
}

.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider-no-margin {
  margin-top: 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  max-width: 700px;
  margin: 0 auto 16px;
}

.section-title-left {
  font-size: clamp(32px, 4.5vw, 60px);
  max-width: 800px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.section-subtitle-left {
  color: var(--muted);
  font-size: 17px;
  max-width: 660px;
  margin-bottom: 36px;
}

.mb-8 {
  margin-bottom: 8px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-52 {
  margin-bottom: 52px;
}
.mb-56 {
  margin-bottom: 56px;
}

.mt-2 {
  margin-top: 2px;
}
.mt-4 {
  margin-top: 4px;
}
.mt-6 {
  margin-top: 6px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-start {
  display: flex;
  align-items: flex-start;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.gap-4 {
  gap: 4px;
}
.gap-6 {
  gap: 6px;
}
.gap-8 {
  gap: 8px;
}
.gap-10 {
  gap: 10px;
}
.gap-12 {
  gap: 12px;
}
.gap-14 {
  gap: 14px;
}
.gap-16 {
  gap: 16px;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}

/* ── GRIDS ── */
.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-auto-120 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.grid-auto-130 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
.grid-auto-180 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.grid-auto-220 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.content-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── CARDS ── */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover::before {
  opacity: 1;
}
.card:hover {
  border-color: rgba(236, 72, 153, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.08);
}
.card-pd-10-12 {
  padding: 10px 12px;
}
.card-pd-16 {
  padding: 16px;
}
.card-pd-22 {
  padding: 22px;
}
.card-pd-24 {
  padding: 24px;
}
.card-pd-28 {
  padding: 28px;
}
.card-pd-32 {
  padding: 32px;
}
.card-pd-36 {
  padding: 36px;
}
.card-pd-40 {
  padding: 40px;
}
.card-pd-0 {
  padding: 0;
}

.border-pink {
  border-color: rgba(236, 72, 153, 0.2);
}
.border-pink-light {
  border-color: rgba(236, 72, 153, 0.25);
}
.border-purple {
  border-color: rgba(139, 92, 246, 0.2);
}
.border-purple-light {
  border-color: rgba(139, 92, 246, 0.25);
}
.border-green {
  border-color: rgba(34, 197, 94, 0.2);
}
.border-green-light {
  border-color: rgba(34, 197, 94, 0.25);
}
.border-orange-light {
  border-color: rgba(249, 115, 22, 0.25);
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}
.font-playfair {
  font-family: "Playfair Display", serif;
}
.font-mono {
  font-family: "DM Mono", monospace;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.font-bold {
  font-weight: 700;
}
.font-heavy {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}
.uppercase {
  text-transform: uppercase;
}
.letter-spacing-sm {
  letter-spacing: 0.06em;
}
.letter-spacing-md {
  letter-spacing: 0.08em;
}
.letter-spacing-lg {
  letter-spacing: 0.1em;
}
.line-height-tight {
  line-height: 1.1;
}
.line-height-snug {
  line-height: 1.3;
}
.line-height-normal {
  line-height: 1.5;
}
.line-height-relaxed {
  line-height: 1.6;
}
.line-height-loose {
  line-height: 1.7;
}
.white-space-nowrap {
  white-space: nowrap;
}

.text-xs {
  font-size: 10px;
}
.text-sm {
  font-size: 11px;
}
.text-md {
  font-size: 12px;
}
.text-lg {
  font-size: 13px;
}
.text-xl {
  font-size: 14px;
}
.text-2xl {
  font-size: 15px;
}
.text-3xl {
  font-size: 16px;
}
.text-4xl {
  font-size: 17px;
}
.text-5xl {
  font-size: 18px;
}
.text-6xl {
  font-size: 20px;
}
.text-7xl {
  font-size: 22px;
}
.text-8xl {
  font-size: 24px;
}
.text-9xl {
  font-size: 28px;
}
.text-huge {
  font-size: 36px;
}
.text-hero {
  font-size: 44px;
}

.text-superhero {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  font-weight: 900;
}

.text-muted {
  color: var(--muted);
}
.text-pink {
  color: var(--pink);
}
.text-orange {
  color: var(--orange);
}
.text-purple {
  color: var(--purple);
}
.text-lilac {
  color: var(--lilac);
}
.text-green {
  color: var(--green);
}
.text-gold {
  color: var(--gold);
}
.text-white {
  color: #fff;
}
.text-black {
  color: #000;
}
.text-red {
  color: #f87171;
}

.grad-brand {
  background: linear-gradient(
    135deg,
    var(--purple),
    var(--pink),
    var(--orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-green {
  background: linear-gradient(135deg, var(--green), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-purple-pink {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LABELS & TAGS ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.label-center {
  justify-content: center;
}
.label-pink {
  color: var(--pink);
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.2);
}
.label-purple {
  color: var(--lilac);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
}
.label-green {
  color: var(--green);
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--muted);
}
.tag-sm {
  font-size: 11px;
}
.tag-pink {
  border-color: rgba(236, 72, 153, 0.25);
  color: var(--pink);
  background: rgba(236, 72, 153, 0.06);
}
.tag-green {
  border-color: rgba(34, 197, 94, 0.25);
  color: var(--green);
  background: rgba(34, 197, 94, 0.06);
}
.tag-purple {
  border-color: rgba(139, 92, 246, 0.25);
  color: var(--lilac);
  background: rgba(139, 92, 246, 0.06);
}
.tag-gold {
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--gold);
  background: rgba(245, 158, 11, 0.06);
}
.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.btn-cta-large {
  font-size: 16px;
  padding: 18px 36px;
}
.btn-cta-medium {
  font-size: 15px;
  padding: 16px 24px;
}

.position-relative {
  position: relative;
}
.flex-1 {
  flex: 1;
}

.mockup-card-ugc-video-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-card-ugc-video-time {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

.bg-black-40 {
  background: rgba(0, 0, 0, 0.4);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: 80px;
  background:
    radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255, 0, 110, 0.15), transparent 50%);
}

.hero-content {
  max-width: 900px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  object-fit: cover;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    #ff006e,
    #ff6b9d,
    #ffa574,
    #ffd97d,
    #8b5cf6,
    #60a5fa
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  color: #aaa;
  margin-bottom: 2rem;
}

.hero-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 70% at 80% -10%,
      rgba(139, 92, 246, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 0% 90%,
      rgba(236, 72, 153, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 40% at 50% 110%,
      rgba(249, 115, 22, 0.08) 0%,
      transparent 60%
    );
}
.hero-grain {
  position: absolute;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 1;
}
.hero-h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── CRM MOCKUP (HERO) ── */
.crm-screen {
  background: #0a0f16;
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(139, 92, 246, 0.1),
    0 0 120px rgba(236, 72, 153, 0.05);
}
.crm-topbar {
  background: #0d1117;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.crm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.crm-topbar-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--muted);
}
.crm-live-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot-purple {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
}
.status-dot-orange {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.status-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.status-dot-pink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}
.status-text-green {
  font-size: 11px;
  color: var(--green);
}

.crm-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 14px;
}
.crm-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 14px;
}
.crm-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.crm-val {
  font-family: "DM Mono", monospace;
  font-size: 22px;
  font-weight: 500;
}

.crm-lead-list {
  padding: 0 14px 6px;
}
.crm-list-title {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0 8px;
}
.crm-lead-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  transition: background 0.2s;
}
.crm-lead-row:last-child {
  border-bottom: none;
}
.crm-lead-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.avatar-pink-purple {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
}
.avatar-orange-gold {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: white;
}
.avatar-purple-pink {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
}
.avatar-green-light {
  background: linear-gradient(135deg, var(--green), #86efac);
  color: #0d1117;
}
.avatar-pink-orange {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  margin-right: 4px;
}

.lead-info {
  flex: 1;
  min-width: 0;
}
.lead-name {
  font-size: 12px;
  font-weight: 600;
}
.lead-meta {
  font-size: 10px;
  color: var(--muted);
}

.crm-stage {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}
.stage-new {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.stage-contacted {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.stage-progress {
  background: rgba(139, 92, 246, 0.1);
  color: var(--lilac);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.stage-closed {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.crm-bottom-bar {
  margin: 8px 14px 14px;
  padding: 10px 14px;
  background: rgba(236, 72, 153, 0.07);
  border: 1px solid rgba(236, 72, 153, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-notification {
  position: absolute;
  top: -16px;
  right: -12px;
  background: rgba(13, 17, 23, 0.97);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.notif-title {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 3px;
}

.notif-main {
  font-size: 13px;
  font-weight: 600;
}

.notif-sub {
  font-size: 11px;
  color: var(--green);
}

/* ── CARRIERS & CLIENTS ── */
.carrier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 40px;
}
.carrier-logo {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--soft);
  transition: all 0.25s ease;
  text-align: center;
}
.carrier-logo:hover {
  border-color: rgba(236, 72, 153, 0.2);
  color: var(--text);
  background: rgba(236, 72, 153, 0.04);
}
.carrier-icon {
  font-size: 22px;
  margin-bottom: 4px;
}
.carrier-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.carrier-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.client-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.client-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.icon-grad-pink-purple {
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
.icon-grad-purple-pink {
  background: linear-gradient(135deg, var(--purple), var(--pink));
}
.client-meta {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.client-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
}
.client-status-tag {
  margin-left: auto;
  font-size: 10px;
}

.client-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.client-stat-box {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.stat-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
}
.stat-value {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
}

.client-note {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
}
.note-green {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.note-purple {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

/* ── CHECK ITEMS ── */
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}
.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--pink);
}
.check-icon-blue {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.3);
  color: #60a5fa;
}
.check-icon-purple {
  background: rgba(192, 132, 252, 0.12);
  border-color: rgba(192, 132, 252, 0.3);
  color: var(--lilac);
}

/* ── SISTEMA SECTION ── */
.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.icon-box-pink {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.25);
}
.icon-box-purple {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.icon-box-grad {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.15),
    rgba(249, 115, 22, 0.1)
  );
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.icon-box-green {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mockup-card-ugc {
  border-radius: 14px;
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, var(--surface), var(--deep));
  border: 1px solid rgba(236, 72, 153, 0.2);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mockup-card-static {
  border-radius: 12px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--surface), var(--deep));
  border: 1px solid rgba(139, 92, 246, 0.2);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  text-align: center;
}
.mockup-card-states {
  border-radius: 12px;
  flex: 1;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  text-align: center;
}
.mockup-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.ad-budget-box {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.08),
    rgba(245, 158, 11, 0.05)
  );
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.ad-budget-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.budget-content-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.budget-item {
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(249, 115, 22, 0.15);
  text-align: center;
}
.budget-note {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
}

/* ── RESULTADOS SECTION ── */
.metric-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 8px;
}
.metric-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}
.fill-orange-gold {
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.fill-purple-lilac {
  background: linear-gradient(90deg, var(--purple), var(--lilac));
}
.fill-green-light {
  background: linear-gradient(90deg, var(--green), #86efac);
}

.ss-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ss-img-wrap {
  position: relative;
  overflow: hidden;
}
.ss-img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
}
.ss-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--deep));
}
.ss-gradient-lg {
  height: 70px;
}

.table-responsive {
  overflow-x: auto;
  padding: 14px 16px;
}
.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 480px;
}
.results-table th {
  text-align: left;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}
.results-table th.center {
  text-align: center;
}
.results-table td {
  padding: 9px 10px;
}
.results-table td.center {
  text-align: center;
}
.center {
  text-align: center;
}
.results-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.results-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}
.results-table tfoot tr {
  border-top: 1px solid rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.04);
}
.results-table tfoot td {
  padding: 11px 10px;
}

/* ── HEGEMON CRM MOCKUP ── */
.hegemon-bg {
  background: #0d1117;
  font-family: "DM Sans", sans-serif;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.hegemon-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #1a2030;
  padding: 16px 20px;
  border-bottom: 1px solid #1e2840;
}
.hegemon-stat-box {
  background: #0f1623;
  border-radius: 8px;
  padding: 12px 14px;
}
.hegemon-stat-label {
  font-size: 10px;
  color: #4a6080;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.hegemon-stat-val {
  font-size: 26px;
  font-weight: 800;
  color: #e2eaf8;
}
.hegemon-stat-sub {
  font-size: 9px;
  color: #4a6080;
}

.hegemon-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #0a0f1a;
  border-bottom: 1px solid #1e2840;
}
.hegemon-filter-btn {
  padding: 5px 14px;
  background: #1a2540;
  border-radius: 6px;
  font-size: 11px;
  color: #8899aa;
  border: 1px solid #2a3a5a;
}

.hegemon-kanban {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.7fr 0.9fr 0.9fr;
  gap: 1px;
  background: #1e2840;
  min-height: 380px;
  overflow: hidden;
}
.hegemon-col {
  background: #0a0f1a;
  padding: 12px 10px;
}
.hegemon-col-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hegemon-card {
  background: #0f1a2e;
  border: 1px solid #1e2840;
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}

.crm-bottom-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.crm-bottom-stat {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}
.crm-bottom-stat.neutral {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.crm-bottom-stat.red {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.crm-bottom-stat.orange {
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.crm-bottom-stat.green {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.crm-bottom-stat.purple {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.crm-bottom-stat.pink {
  background: rgba(236, 72, 153, 0.06);
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.photos-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.photo-aspect {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s;
}
.photo-aspect:hover .photo-img {
  transform: scale(1.05);
}
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(6, 8, 12, 0.9));
}
.photo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(6, 8, 12, 0.8);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.photo-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.photo-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.status-bg-green {
  background: rgba(34, 197, 94, 0.9);
}
.status-bg-pink {
  background: rgba(236, 72, 153, 0.9);
}
.status-bg-purple {
  background: rgba(139, 92, 246, 0.9);
}
.status-bg-orange {
  background: rgba(249, 115, 22, 0.9);
}
.photo-caption {
  font-size: 12px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}
.photo-subcaption {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.quote-card {
  padding: 30px;
  margin-top: 16px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.06),
    rgba(236, 72, 153, 0.05)
  );
  border-color: rgba(236, 72, 153, 0.2);
}

/* ── CRM ELITE ADDON ── */
.elite-promo-box {
  padding: clamp(16px, 4vw, 28px) clamp(16px, 4vw, 36px);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(236, 72, 153, 0.08)
  );
  border: 2px solid rgba(139, 92, 246, 0.35);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.elite-glow-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.15) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.elite-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.elite-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.elite-check-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}
.elite-cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 16px;
}
.elite-strike {
  text-decoration: line-through;
  opacity: 0.6;
}
.elite-check-active {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
}

.elite-banner {
  padding: 28px 36px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.1),
    rgba(249, 115, 22, 0.07)
  );
  border: 2px solid rgba(236, 72, 153, 0.35);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.elite-banner-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.elite-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.text-title-lg {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.1;
}

.crm-why-box {
  padding: 14px 16px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.07),
    rgba(249, 115, 22, 0.05)
  );
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 10px;
}
.text-decoration-none {
  text-decoration: none;
}

/* ── PROYECCIONES ── */
.proj-stat-box {
  padding: 14px;
  border-radius: 10px;
}
.bg-pink-light {
  background: rgba(236, 72, 153, 0.07);
  border: 1px solid rgba(236, 72, 153, 0.15);
}
.bg-green-light {
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.proj-stat-val {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
}
.proj-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.proj-stat-row:last-child {
  border-bottom: none;
}

.agent-math-card {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.agent-math-card.highlight-purple {
  border-color: rgba(236, 72, 153, 0.15);
}
.agent-math-card.highlight-grad {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.08),
    rgba(249, 115, 22, 0.06)
  );
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.recruit-sys-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}
.recruit-sys-card.border-pink {
  border-color: rgba(236, 72, 153, 0.15);
}

/* ── INVERSION / PRICING ── */
.pricing-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-tier-1 {
  border-color: rgba(96, 165, 250, 0.25);
}
.pricing-tier-2 {
  border-color: rgba(192, 132, 252, 0.3);
}
.pricing-tier-3 {
  border-color: rgba(236, 72, 153, 0.4);
}

.pricing-header {
  position: relative;
  z-index: 1;
  padding: 24px 24px 20px;
  border-bottom: 1px solid;
}
.pricing-header-1 {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(96, 165, 250, 0.08)
  );
  border-bottom-color: rgba(96, 165, 250, 0.15);
}
.pricing-header-2 {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.18),
    rgba(192, 132, 252, 0.1)
  );
  border-bottom-color: rgba(192, 132, 252, 0.2);
}
.pricing-header-3 {
  padding: 36px 24px 20px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.15),
    rgba(249, 115, 22, 0.08)
  );
  border-bottom-color: rgba(236, 72, 153, 0.2);
}

.pricing-price-box {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.pricing-price-box-3 {
  background: rgba(236, 72, 153, 0.03);
}
.price-val {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  padding-bottom: 4px;
}
.price-blue {
  color: #60a5fa;
}
.price-purple {
  color: var(--lilac);
}

.pricing-features {
  padding: 20px 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.pricing-cta-box {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.pricing-cta-box-3 {
  border-top-color: rgba(236, 72, 153, 0.2);
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-pricing-1 {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.btn-pricing-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96, 165, 250, 0.4);
}
.btn-pricing-2 {
  background: linear-gradient(135deg, var(--purple), var(--lilac));
}
.btn-pricing-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}
.btn-pricing-3 {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}
.btn-pricing-3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  padding: 6px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  z-index: 2;
}

.budget-reminder-box {
  padding: 16px 22px;
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.roi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.roi-row:last-child {
  border-bottom: none;
}
.roi-header {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CTA SECTION ── */
.cta-inner {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(236, 72, 153, 0.1) 50%,
    rgba(249, 115, 22, 0.07) 100%
  );
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.12) 0%,
    rgba(139, 92, 246, 0.06) 40%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ff006e, #8b5cf6);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
  color: #fff;
}

/* ── FOOTER ── */
footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 100px;
  border-top: 1px solid var(--border);
}
.footer-top {
  text-align: center;
  margin-bottom: 40px;
}
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 36px;
  background: rgba(236, 72, 153, 0.06);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: left;
}
.footer-brand-link:hover {
  background: rgba(236, 72, 153, 0.12);
  transform: translateY(-3px);
}

/* ── ANIMATIONS ── */
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.pulse {
  animation: pulse-dot 2s ease-in-out infinite;
}
.float-anim {
  animation: float 6s ease-in-out infinite;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  background: transparent;
  z-index: 1000;
  transition:
    padding 0.3s ease,
    background 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Homepage JS Sticky State */
header.sticky {
  position: fixed;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 5%;
  animation: slideDown 0.35s ease-in-out;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Subpage Solid State */
header.header-solid {
  position: fixed;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #ff6b9d;
}

/* Services */
.services {
  padding: 6rem 5%;
}

.services h2,
.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ff006e, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact h2 {
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 110, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
  border-color: rgba(255, 0, 110, 0.5);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff6b9d;
}

.service-card p {
  color: #bbb;
}

/* About */
.about {
  padding: 6rem 5%;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffa574, #ffd97d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about p {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact {
  padding: 6rem 5%;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item h3 {
  color: #ff6b9d;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: #bbb;
  font-size: 1.1rem;
}

.contact-item a {
  color: #60a5fa;
  text-decoration: none;
}

.contact-item a:hover {
  color: #8b5cf6;
}

.contact iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
  margin-top: 60px;
}

/* =========================================
   LEGAL PAGES (Privacy / Terms)
========================================= */
.legal-main {
  padding: 150px 5% 6rem;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.1),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 0, 110, 0.1),
      transparent 40%
    );
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #ff006e, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6b9d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.legal-content p {
  color: #bbb;
  margin-bottom: 1rem;
  text-align: justify;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #bbb;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: #fff;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #ff006e,
    #ff6b9d,
    #ffa574,
    #ffd97d,
    #8b5cf6,
    #60a5fa
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════ */
/* RESPONSIVE MEDIA QUERIES */
/* ══════════════════════════════════════════ */

/* ══ MOBILE ≤ 768px ══ */
@media (max-width: 768px) {
  /* Nav & Sticky */
  .nav-links {
    display: none;
  }
  .nav-inner {
    padding: 0 14px;
    height: 54px;
  }
  .nav-cta {
    font-size: 12px !important;
    padding: 8px 14px !important;
  }
  #sticky {
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    flex-wrap: nowrap;
    gap: 10px;
  }
  #sticky > div {
    flex: 1;
    min-width: 0;
  }
  .sticky-title {
    font-size: 12px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-sub {
    display: none;
  }
  #sticky a {
    font-size: 12px !important;
    padding: 9px 14px !important;
    white-space: nowrap;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 70px 16px 40px;
  }
  .hero-h1 {
    font-size: clamp(36px, 10vw, 52px);
  }
  .hero-sub {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .crm-wrap {
    display: none;
  }
  .hero-wrap {
    min-height: auto;
    padding-bottom: 0;
  }

  /* Sections */
  section {
    padding: 40px 16px;
  }
  .section-title,
  .section-title-left {
    font-size: clamp(26px, 7vw, 38px) !important;
  }

  /* Grids Collapse */
  .grid-cols-2,
  .grid-cols-3,
  .content-split-grid,
  .pricing-grid,
  .recruit-sys-grid,
  .photos-grid-2,
  .mockup-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .carrier-grid,
  .crm-bottom-stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
  .grid-auto-180,
  .grid-auto-220 {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .grid-auto-130,
  .grid-auto-120 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  /* Hegemon CRM overrides */
  .hegemon-stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .hegemon-kanban {
    display: flex !important;
    flex-direction: column !important;
  }

  /* ROI Table */
  .roi-row {
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    padding: 10px 12px !important;
    gap: 6px !important;
    font-size: 13px !important;
  }
  .roi-header {
    display: none !important;
  }

  /* Cards Padding Reduction */
  .card-pd-40,
  .card-pd-36,
  .card-pd-32,
  .card-pd-28,
  .card-pd-24 {
    padding: 16px !important;
  }
  .elite-promo-box {
    padding: 20px 16px !important;
  }

  /* Typography & Pricing */
  .stat-value {
    font-size: 32px !important;
  }
  .price-val {
    font-size: clamp(52px, 14vw, 80px) !important;
  }
  .pricing-card {
    min-height: auto !important;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-cta-large,
  .btn-cta-medium {
    width: 100% !important;
    justify-content: center !important;
    font-size: 14px !important;
    padding: 14px 20px !important;
  }
  .hero-actions,
  .cta-inner .flex-wrap {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  /* Overflows & Utilities */
  img {
    max-width: 100%;
    height: auto;
  }
  .table-responsive {
    -webkit-overflow-scrolling: touch;
  }
  .ss-header {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .content-header,
  .elite-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .budget-content-wrap {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .budget-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* CTA Box */
  .cta-inner {
    padding: 30px 16px !important;
    border-radius: 18px !important;
  }
  .cta-inner h2 {
    font-size: clamp(34px, 9vw, 52px) !important;
  }

  /* Footer */
  footer {
    padding: 36px 16px 100px !important;
  }
  .footer-brand-link {
    padding: 16px 20px !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }
}

/* ══ VERY SMALL ≤ 390px ══ */
@media (max-width: 390px) {
  .hero-h1 {
    font-size: 34px !important;
  }
  .nav-cta {
    font-size: 11px !important;
    padding: 7px 10px !important;
  }
  .grid-auto-180,
  .grid-auto-220 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .grid-auto-130,
  .grid-auto-120 {
    grid-template-columns: 1fr 1fr !important;
  }
  .carrier-grid,
  .crm-bottom-stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .price-val {
    font-size: 52px !important;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  nav ul {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .legal-container h1 {
    font-size: 2.5rem;
  }
}

/* ══ TABLET 769–1024px ══ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
    padding: 90px 24px 60px;
  }
  .hero-h1 {
    font-size: clamp(44px, 5vw, 60px);
  }
  section {
    padding: 60px 24px;
  }
  .grid-cols-2 {
    gap: 20px !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    align-items: stretch;
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 20px !important;
  }
}
