/* ===== Variables ===== */
:root {
  --bg: #fafaf9;
  --bg-alt: #f5f4f1;
  --bg-card: #ffffff;
  --bg-dark: #0c0c0c;
  --text: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-muted: #6b6b6b;
  --accent: #4338ca;
  --accent-light: #e0e7ff;
  --accent-dark: #312e81;
  --accent-mid: #6366f1;
  --border: #e2e2e0;
  --border-light: #eeeeec;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.04);
  --glow-accent: 0 0 30px rgba(67, 56, 202, 0.15);
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
}
.logo:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }
ul { list-style: none; }

/* ===== Layout ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

/* ===== Typography ===== */
.kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  border-radius: 2px;
  flex-shrink: 0;
}
.headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--text);
}
.headline br + em,
.headline em {
  color: var(--accent);
}
.subhead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-fill {
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  color: #fff;
  box-shadow: 0 2px 12px rgba(67, 56, 202, 0.3);
  background-size: 200% 200%;
}
.btn-fill:hover {
  background-position: 100% 50%;
  box-shadow: 0 8px 32px rgba(67, 56, 202, 0.45);
  transform: translateY(-3px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(67, 56, 202, 0.12);
}
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.4s;
}
.nav.scrolled {
  background: rgba(250, 250, 249, 0.8);
  backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(226, 226, 224, 0.5);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}
.nav.scrolled .nav-inner { padding: 14px 0; }
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.logo-mark {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  margin-right: 2px;
  transition: text-shadow 0.3s;
}
.logo:hover .logo-mark {
  text-shadow: 0 0 12px rgba(67, 56, 202, 0.5);
}
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.25s;
  position: relative;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s;
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  color: #fff !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  background: none;
  color: var(--text);
  padding: 6px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.hero-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid), #a78bfa);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease infinite;
}
@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero .subhead {
  margin-bottom: 40px;
  font-size: 1.15rem;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; z-index: 1; }
.hero-mockup {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-xl), var(--glow-accent);
  padding: 32px;
  transform: rotate(1.5deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s;
  position: relative;
}
.hero-mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(67,56,202,0.2), transparent 40%, transparent 60%, rgba(99,102,241,0.15));
  z-index: -1;
  pointer-events: none;
}
.hero-mockup:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12), 0 0 40px rgba(67,56,202,0.2);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.mockup-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
}
.mockup-meta { flex: 1; }
.mockup-name { font-weight: 700; font-size: 0.9rem; }
.mockup-role { font-size: 0.78rem; color: var(--text-muted); }
.mockup-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.mockup-body p { margin-bottom: 12px; }
.mockup-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.mockup-stats span { display: flex; align-items: center; gap: 6px; cursor: pointer; transition: color 0.2s; }
.mockup-stats span:hover { color: var(--accent); }
.mockup-stats span.liked { color: #e53e3e; }
.mockup-stats span.shared { color: #2563eb; }
.mockup-stats span.liked i,
.mockup-stats span.shared i { transform: scale(1.25); transition: transform 0.25s cubic-bezier(0.4,0,0.2,1); }
.hero-blur {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-blur-1 { background: var(--accent-light); top: 10%; right: -5%; animation: heroFloat1 8s ease-in-out infinite; }
.hero-blur-2 { background: #dbeafe; bottom: 5%; left: 20%; width: 300px; height: 300px; animation: heroFloat2 10s ease-in-out infinite; }
.hero-blur-3 { background: #ddd6fe; top: 40%; left: 50%; width: 250px; height: 250px; opacity: 0.3; animation: heroFloat1 12s ease-in-out infinite reverse; }
@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}

/* ===== Pain Section ===== */
.pain {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.pain-header { text-align: center; margin-bottom: 56px; }
.pain-header .subhead { margin: 0 auto; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--glow-accent);
  border-color: transparent;
  background: linear-gradient(135deg, #fff, var(--accent-light));
}
.pain-card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.pain-card:hover i { transform: scale(1.2) rotate(-5deg); }
.pain-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Examples / Carousel ===== */
.examples {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.examples-header { text-align: center; margin-bottom: 56px; }
.examples-header .subhead { margin: 0 auto; }
.carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}
.carousel-track-clip {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 12px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 5;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}
.carousel-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(67, 56, 202, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn:focus,
.carousel-dot:focus { outline: none; }
.carousel-btn:active { transform: translateY(-50%) scale(0.92); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot:hover {
  background: var(--accent-mid);
  transform: scale(1.2);
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(67, 56, 202, 0.5);
}
.li-post {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 800px;
  box-shadow: var(--shadow-sm);
}
.li-post:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(67,56,202,0.08);
}
.li-post-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 0;
}
.li-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.li-meta { flex: 1; min-width: 0; }
.li-name {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.li-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.li-time { font-size: 0.7rem; color: var(--text-muted); }
.li-post-body {
  padding: 16px 24px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-height: 180px;
  overflow: hidden;
  position: relative;
}
.li-post-body.truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.li-see-more {
  display: none;
  padding: 0 24px 12px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}
.li-see-more:hover { text-decoration: underline; }
.li-post-body p { margin-bottom: 10px; }
.li-post-body p:last-child { margin-bottom: 0; }
.li-post-img {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.li-post-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.li-post-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.li-post-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  cursor: pointer;
}
.li-post-footer span:hover { color: var(--accent); }
.li-post-footer span.liked { color: #e53e3e; }
.li-post-footer span.shared { color: #2563eb; }
.li-post-footer span.liked i,
.li-post-footer span.shared i { transform: scale(1.25); transition: transform 0.25s cubic-bezier(0.4,0,0.2,1); }
.li-post-footer i { font-size: 0.95rem; }
.li-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ===== Sweet Spot ===== */
.sweetspot { background: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.sweetspot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sweetspot-bars { display: flex; flex-direction: column; gap: 24px; }
.bar-item { display: flex; align-items: center; gap: 16px; }
.bar-label {
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 80px;
  text-align: right;
  color: var(--text-muted);
}
.bar-item.highlight .bar-label { color: var(--accent); }
.bar-track {
  flex: 1;
  height: 36px;
  background: var(--border-light);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--border);
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.bar-fill.animated::after {
  animation: barShimmer 2s 1.4s ease-in-out;
}
@keyframes barShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
.bar-fill.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-mid), #a78bfa);
  background-size: 200% 100%;
  animation: none;
}
.bar-fill.accent.animated {
  width: var(--target-width);
  animation: barGradient 3s ease infinite;
  box-shadow: 0 0 20px rgba(67, 56, 202, 0.3), 0 0 40px rgba(67, 56, 202, 0.1);
}
@keyframes barGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.bar-fill.warn { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.bar-fill.animated { width: var(--target-width); }
.bar-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 100px;
}
.bar-item.highlight .bar-value { color: var(--accent); font-weight: 700; }
.bar-item.highlight {
  transform: scale(1.04);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.bar-item {
  transition: transform 0.4s;
}

/* ===== Human Touch ===== */
.human-touch { background: var(--bg); }
.human-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}
.human-icon-wrap { text-align: center; padding-top: 12px; }
.human-icon-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), #ddd6fe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--accent);
  position: relative;
  animation: pulseGlow 3s ease-in-out infinite;
}
.human-icon-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid), #a78bfa, var(--accent));
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  z-index: -1;
  opacity: 0.4;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67, 56, 202, 0.2), 0 0 30px rgba(67,56,202,0.1); }
  50% { box-shadow: 0 0 0 24px rgba(67, 56, 202, 0), 0 0 50px rgba(67,56,202,0.05); }
}
.human-points { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.human-point {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.human-point:hover {
  border-color: var(--accent);
  transform: translateX(8px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(67,56,202,0.06);
  background: linear-gradient(135deg, var(--bg-alt), var(--accent-light));
}
.human-point > i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.human-point h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.human-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Process ===== */
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .subhead { margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.steps::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid), #a78bfa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.steps.line-animated::after { transform: scaleX(1); }
.step-item {
  text-align: center;
  position: relative;
  padding: 0 12px;
  z-index: 2;
}
.step-dot {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.3rem;
  color: var(--accent);
}
.step-item.visible .step-dot {
  border-color: var(--accent-light);
  box-shadow: 0 4px 15px rgba(67, 56, 202, 0.12);
}
.step-item:hover .step-dot {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(67, 56, 202, 0.4);
}
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.step-item h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== Comparison ===== */
.comparison {
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.comparison::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.15), transparent 70%);
  pointer-events: none;
}
.comparison::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
  pointer-events: none;
}
.comparison .kicker { color: #a5b4fc; }
.comparison .headline { color: #fff; }
.comparison .subhead { color: #999; }
.comp-header { text-align: center; margin-bottom: 56px; }
.comp-header .subhead { margin: 0 auto; }
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.comp-card {
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.comp-card:hover { transform: translateY(-8px); }
.comp-card.bad {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.comp-card.bad:hover { background: rgba(255, 255, 255, 0.06); }
.comp-card.good {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.08);
}
.comp-card.good:hover { box-shadow: 0 0 60px rgba(99, 102, 241, 0.15); }
.comp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding: 5px 14px;
  border-radius: 100px;
}
.comp-card.bad .comp-tag { background: rgba(239, 68, 68, 0.12); color: #f87171; }
.comp-card.good .comp-tag { background: rgba(165, 180, 252, 0.15); color: #a5b4fc; }
.comp-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}
.comp-text p { margin-bottom: 14px; }

/* ===== Pricing ===== */
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .subhead { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -100%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(67,56,202,0.03) 0%, transparent 60%);
  transition: top 0.6s;
  pointer-events: none;
}
.price-card:hover::before { top: -50%; }
.price-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl), var(--glow-accent);
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg), var(--glow-accent);
  transform: scale(1.05);
  background: linear-gradient(170deg, #fff 60%, var(--accent-light));
}
.price-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(67, 56, 202, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(67, 56, 202, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(67, 56, 202, 0.6); }
}
.price-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 2px;
  background: linear-gradient(135deg, var(--text), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card.featured .price-amount {
  background: linear-gradient(135deg, white, var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period {
  font-size: 0.82rem;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}
.price-list { flex: 1; margin-bottom: 32px; }
.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.price-list li i { color: var(--accent); font-size: 0.85rem; }
.price-card .btn { width: 100%; justify-content: center; }

/* ===== Checkout ===== */
.checkout { background: var(--bg-alt); border-top: 1px solid var(--border-light); }
.checkout-header { text-align: center; margin-bottom: 48px; }
.checkout-header .subhead { margin: 0 auto; }
.checkout-box {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text-mid);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.checkout-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  margin-top: 56px;
}
.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: all 0.25s;
}
.contact-link:hover { color: var(--accent); padding-left: 6px; }
.contact-link i { color: var(--accent); font-size: 1.1rem; width: 24px; text-align: center; }
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid), #a78bfa);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 56px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-mid), #a78bfa, transparent);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-logo:hover img {
  opacity: 1;
  transform: scale(1.03);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.84rem; color: #888; transition: color 0.25s; }
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 0.78rem;
  color: #555;
  width: 100%;
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg-dark);
  color: #fff;
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 999;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-rotate {
  opacity: 0;
  transform: translateY(30px) rotate(3deg);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-rotate.visible { opacity: 1; transform: translateY(0) rotate(0deg); }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.12s); }

/* ===== Floating shapes ===== */
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.06;
}
.float-1 {
  width: 300px; height: 300px;
  background: var(--accent);
  top: 60%; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.float-2 {
  width: 200px; height: 200px;
  background: var(--accent-mid);
  bottom: 10%; right: -60px;
  animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ===== Number counter ===== */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  text-align: center;
}
.metric-num {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.metrics > div {
  padding: 24px;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.metrics > div:hover {
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ===== Hero text entrance ===== */
.hero-text .hero-tag {
  animation: fadeSlideUp 0.6s 0.1s both cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-text h1 {
  animation: fadeSlideUp 0.7s 0.25s both cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-text .subhead {
  animation: fadeSlideUp 0.7s 0.4s both cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-buttons {
  animation: fadeSlideUp 0.7s 0.55s both cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Gradient animated border on featured card ===== */
.price-card.featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--accent), var(--accent-mid), #a78bfa, var(--accent));
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  z-index: -1;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== Magnetic hover for buttons ===== */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* ===== Smooth section divider shapes ===== */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: calc(100% + 1px);
  height: 60px;
}

/* ===== Image hover zoom ===== */
.li-post-img-inner {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.li-post-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.li-post:hover .li-post-img-inner {
  transform: scale(1.08);
}
.li-post { cursor: pointer; }

/* ===== Post Modal ===== */
.post-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.post-modal.open {
  opacity: 1;
  visibility: visible;
}
.post-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}
.post-modal-content {
  position: relative;
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: thin;
}
.post-modal.open .post-modal-content {
  transform: scale(1) translateY(0);
}
.post-modal-close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text);
  z-index: 10;
  transition: all 0.2s;
}
.post-modal-close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.post-modal-inner .li-post {
  max-width: 100%;
  width: 100%;
  border: none;
  border-radius: 0;
  cursor: default;
}
.post-modal-inner .li-post:hover {
  transform: none;
  box-shadow: none;
}
.post-modal-inner .li-post-img {
  aspect-ratio: auto;
}
.post-modal-inner .li-post-img-inner {
  aspect-ratio: auto;
  height: auto;
}
.post-modal-inner .li-post-img-inner img {
  height: auto;
  object-fit: contain;
}
.post-modal-inner .li-post-body {
  white-space: pre-line;
  font-size: 0.92rem;
  line-height: 1.7;
  max-height: none;
  display: block;
  overflow: visible;
}
.post-modal-inner .li-post-body.truncated::after { display: none; }
.post-modal-inner .li-see-more { display: none !important; }

/* ===== Pulse ring on step dots ===== */
.step-item:hover .step-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseRing 0.8s ease-out;
  pointer-events: none;
}
@keyframes pulseRing {
  from { transform: scale(0.8); opacity: 1; }
  to { transform: scale(1.3); opacity: 0; }
}

/* ===== Active nav link glow ===== */
.nav-menu a.active { color: var(--accent); }
.nav-menu a.active::after { width: 100%; }

/* ===== Particles ===== */
.particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== Cursor glow ===== */
.glow-cursor {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.06), rgba(99, 102, 241, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1), top 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-mockup { transform: rotate(0); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before {
    top: 0; bottom: 0; left: 36px; right: auto;
    width: 2px; height: 100%;
  }
  .steps::after {
    top: 0; bottom: 0; left: 36px; right: auto;
    width: 2px; height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }
  .steps.line-animated::after { transform: scaleY(1); }
  .step-item {
    text-align: left;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 16px;
    padding: 0;
  }
  .step-dot { margin: 0; }
  .step-num { grid-column: 2; }
  .step-item h3 { grid-column: 2; }
  .step-item p { grid-column: 2; }
  .comp-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .contact-grid { grid-template-columns: 1fr; }
  .carousel-wrap { padding: 0 50px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }
  .sweetspot-grid { grid-template-columns: 1fr; gap: 40px; }
  .human-grid { grid-template-columns: 1fr; gap: 32px; }
  .human-icon-wrap { text-align: left; }
}
@media (max-width: 600px) {
  .logo img {
    height: 30px;
  }
  .section { padding: 80px 0; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250, 250, 249, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 90;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.2rem; }
  .hamburger { display: block; z-index: 101; }
  .hero h1 { font-size: 2.2rem; letter-spacing: -1.5px; }
  .pain-grid { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .toast { white-space: normal; left: 16px; right: 16px; transform: translateX(0) translateY(120px); text-align: center; }
  .toast.show { transform: translateX(0) translateY(0); }
  .metric-num { font-size: 2rem; }
  .carousel-wrap { padding: 0 44px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.9rem; }
  .glow-cursor { display: none; }
}

/* ==========================================
   CONECTAR LINKEDIN SECTION
   ========================================== */

.conectar-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.conectar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.conectar-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.conectar-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.conectar-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #818cf8;
}

.conectar-step h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.conectar-step p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.conectar-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.conectar-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(10, 102, 194, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.conectar-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.conectar-box > p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  max-width: 320px;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #0A66C2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.btn-linkedin:hover {
  background: #004182;
  transform: translateY(-2px);
}

.btn-linkedin:active {
  transform: translateY(0);
}

.conectar-trust {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.conectar-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}

.conectar-trust i {
  font-size: 14px;
  color: #4ade80;
}

@media (max-width: 768px) {
  .conectar-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .conectar-box {
    padding: 28px 20px;
  }

  .conectar-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}